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 @@ - ![enter image description here](https://media.giphy.com/media/KZBdm9gbGGRBlRZV1t/giphy.gif) - - ## 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.

+ ++++ + +
ConstantValueDescription
wrap_content0
+ */ + 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.

+ ++++ + + + + + + + + + +
ConstantValueDescription
none-1
fitXY0
fitStart1
fitCenter2
fitEnd3
center4
centerInside5
centerCrop6
focusCrop7
+ */ + 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.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ */ + 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.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ */ + 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.

+ ++++ + + + +
ConstantValueDescription
any-1
back99
front98
+ */ + 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.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ */ + 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.

+ ++++ + + + + + + + +
ConstantValueDescription
none0
useLogo0x1
showHome0x2
homeAsUp0x4
showTitle0x8
showCustom0x10
disableHome0x20
+ */ + 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.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ */ + 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.

+ ++++ + + +
ConstantValueDescription
normal0
mini1
+ */ + 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.

+ ++++ + + + + + + + + + +
ConstantValueDescription
none-1
fitXY0
fitStart1
fitCenter2
fitEnd3
center4
centerInside5
centerCrop6
focusCrop7
+ */ + 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.

+ ++++ + + + + + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
fill_horizontal0x07
center0x11
fill0x77
clip_vertical0x80
clip_horizontal0x08
start0x00800003
end0x00800005
+ */ + 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.

+ ++++ + + + +
ConstantValueDescription
none0
pin1
parallax2
+ */ + 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.

+ ++++ + + + + + +
ConstantValueDescription
scroll0x1
exitUntilCollapsed0x2
enterAlways0x4
enterAlwaysCollapsed0x8
snap0x10
+ */ + 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.

+ ++++ + + + +
ConstantValueDescription
normal0
listMode1
tabMode2
+ */ + 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.

+ ++++ + + + + + + + + + +
ConstantValueDescription
none-1
fitXY0
fitStart1
fitCenter2
fitEnd3
center4
centerInside5
centerCrop6
focusCrop7
+ */ + 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.

+ ++++ + + + + + + + + + +
ConstantValueDescription
none-1
fitXY0
fitStart1
fitCenter2
fitEnd3
center4
centerInside5
centerCrop6
focusCrop7
+ */ + 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.

+ ++++ + + + + + + + + + +
ConstantValueDescription
none-1
fitXY0
fitStart1
fitCenter2
fitEnd3
center4
centerInside5
centerCrop6
focusCrop7
+ */ + 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.

+ ++++ + + + + + +
ConstantValueDescription
never0
ifRoom1
always2
withText4
collapseActionView8
+ */ + public static final int showAsAction=0x7f0100e1; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
none0
beginning1
middle2
end4
+ */ + 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.

+ ++++ + + +
ConstantValueDescription
fill0
center1
+ */ + 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.

+ ++++ + + +
ConstantValueDescription
scrollable0
fixed1
+ */ + 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. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #ActionBar_background com.documentscanner.test:background}
{@link #ActionBar_backgroundSplit com.documentscanner.test:backgroundSplit}
{@link #ActionBar_backgroundStacked com.documentscanner.test:backgroundStacked}
{@link #ActionBar_contentInsetEnd com.documentscanner.test:contentInsetEnd}
{@link #ActionBar_contentInsetLeft com.documentscanner.test:contentInsetLeft}
{@link #ActionBar_contentInsetRight com.documentscanner.test:contentInsetRight}
{@link #ActionBar_contentInsetStart com.documentscanner.test:contentInsetStart}
{@link #ActionBar_customNavigationLayout com.documentscanner.test:customNavigationLayout}
{@link #ActionBar_displayOptions com.documentscanner.test:displayOptions}
{@link #ActionBar_divider com.documentscanner.test:divider}
{@link #ActionBar_elevation com.documentscanner.test:elevation}
{@link #ActionBar_height com.documentscanner.test:height}
{@link #ActionBar_hideOnContentScroll com.documentscanner.test:hideOnContentScroll}
{@link #ActionBar_homeAsUpIndicator com.documentscanner.test:homeAsUpIndicator}
{@link #ActionBar_homeLayout com.documentscanner.test:homeLayout}
{@link #ActionBar_icon com.documentscanner.test:icon}
{@link #ActionBar_indeterminateProgressStyle com.documentscanner.test:indeterminateProgressStyle}
{@link #ActionBar_itemPadding com.documentscanner.test:itemPadding}
{@link #ActionBar_logo com.documentscanner.test:logo}
{@link #ActionBar_navigationMode com.documentscanner.test:navigationMode}
{@link #ActionBar_popupTheme com.documentscanner.test:popupTheme}
{@link #ActionBar_progressBarPadding com.documentscanner.test:progressBarPadding}
{@link #ActionBar_progressBarStyle com.documentscanner.test:progressBarStyle}
{@link #ActionBar_subtitle com.documentscanner.test:subtitle}
{@link #ActionBar_subtitleTextStyle com.documentscanner.test:subtitleTextStyle}
{@link #ActionBar_title com.documentscanner.test:title}
{@link #ActionBar_titleTextStyle com.documentscanner.test:titleTextStyle}
+ @see #ActionBar_background + @see #ActionBar_backgroundSplit + @see #ActionBar_backgroundStacked + @see #ActionBar_contentInsetEnd + @see #ActionBar_contentInsetLeft + @see #ActionBar_contentInsetRight + @see #ActionBar_contentInsetStart + @see #ActionBar_customNavigationLayout + @see #ActionBar_displayOptions + @see #ActionBar_divider + @see #ActionBar_elevation + @see #ActionBar_height + @see #ActionBar_hideOnContentScroll + @see #ActionBar_homeAsUpIndicator + @see #ActionBar_homeLayout + @see #ActionBar_icon + @see #ActionBar_indeterminateProgressStyle + @see #ActionBar_itemPadding + @see #ActionBar_logo + @see #ActionBar_navigationMode + @see #ActionBar_popupTheme + @see #ActionBar_progressBarPadding + @see #ActionBar_progressBarStyle + @see #ActionBar_subtitle + @see #ActionBar_subtitleTextStyle + @see #ActionBar_title + @see #ActionBar_titleTextStyle + */ + 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 + }; + /** +

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.

+ ++++ + + + + + + + +
ConstantValueDescription
none0
useLogo0x1
showHome0x2
homeAsUp0x4
showTitle0x8
showCustom0x10
disableHome0x20
+ @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.

+ ++++ + + + +
ConstantValueDescription
normal0
listMode1
tabMode2
+ @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. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ActionBarLayout_android_layout_gravity android:layout_gravity}
+ @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. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ActionMenuItemView_android_minWidth android:minWidth}
+ @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. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #ActionMode_background com.documentscanner.test:background}
{@link #ActionMode_backgroundSplit com.documentscanner.test:backgroundSplit}
{@link #ActionMode_closeItemLayout com.documentscanner.test:closeItemLayout}
{@link #ActionMode_height com.documentscanner.test:height}
{@link #ActionMode_subtitleTextStyle com.documentscanner.test:subtitleTextStyle}
{@link #ActionMode_titleTextStyle com.documentscanner.test:titleTextStyle}
+ @see #ActionMode_background + @see #ActionMode_backgroundSplit + @see #ActionMode_closeItemLayout + @see #ActionMode_height + @see #ActionMode_subtitleTextStyle + @see #ActionMode_titleTextStyle + */ + public static final int[] ActionMode = { + 0x7f010001, 0x7f010007, 0x7f010008, 0x7f01000c, + 0x7f01000e, 0x7f01001c + }; + /** +

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. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #ActivityChooserView_expandActivityOverflowButtonDrawable com.documentscanner.test:expandActivityOverflowButtonDrawable}
{@link #ActivityChooserView_initialActivityCount com.documentscanner.test:initialActivityCount}
+ @see #ActivityChooserView_expandActivityOverflowButtonDrawable + @see #ActivityChooserView_initialActivityCount + */ + public static final int[] ActivityChooserView = { + 0x7f01001d, 0x7f01001e + }; + /** +

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. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #AlertDialog_android_layout android:layout}
{@link #AlertDialog_buttonPanelSideLayout com.documentscanner.test:buttonPanelSideLayout}
{@link #AlertDialog_listItemLayout com.documentscanner.test:listItemLayout}
{@link #AlertDialog_listLayout com.documentscanner.test:listLayout}
{@link #AlertDialog_multiChoiceItemLayout com.documentscanner.test:multiChoiceItemLayout}
{@link #AlertDialog_singleChoiceItemLayout com.documentscanner.test:singleChoiceItemLayout}
+ @see #AlertDialog_android_layout + @see #AlertDialog_buttonPanelSideLayout + @see #AlertDialog_listItemLayout + @see #AlertDialog_listLayout + @see #AlertDialog_multiChoiceItemLayout + @see #AlertDialog_singleChoiceItemLayout + */ + public static final int[] AlertDialog = { + 0x010100f2, 0x7f01001f, 0x7f010020, 0x7f010021, + 0x7f010022, 0x7f010023 + }; + /** +

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. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #AppBarLayout_android_background android:background}
{@link #AppBarLayout_elevation com.documentscanner.test:elevation}
{@link #AppBarLayout_expanded com.documentscanner.test:expanded}
+ @see #AppBarLayout_android_background + @see #AppBarLayout_elevation + @see #AppBarLayout_expanded + */ + public static final int[] AppBarLayout = { + 0x010100d4, 0x7f01001a, 0x7f010024 + }; + /** +

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. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #AppBarLayout_LayoutParams_layout_scrollFlags com.documentscanner.test:layout_scrollFlags}
{@link #AppBarLayout_LayoutParams_layout_scrollInterpolator com.documentscanner.test:layout_scrollInterpolator}
+ @see #AppBarLayout_LayoutParams_layout_scrollFlags + @see #AppBarLayout_LayoutParams_layout_scrollInterpolator + */ + public static final int[] AppBarLayout_LayoutParams = { + 0x7f010025, 0x7f010026 + }; + /** +

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.

+ ++++ + + + + + +
ConstantValueDescription
scroll0x1
exitUntilCollapsed0x2
enterAlways0x4
enterAlwaysCollapsed0x8
snap0x10
+ @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. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #AppCompatImageView_android_src android:src}
{@link #AppCompatImageView_srcCompat com.documentscanner.test:srcCompat}
+ @see #AppCompatImageView_android_src + @see #AppCompatImageView_srcCompat + */ + public static final int[] AppCompatImageView = { + 0x01010119, 0x7f010027 + }; + /** +

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. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #AppCompatTextView_android_textAppearance android:textAppearance}
{@link #AppCompatTextView_textAllCaps com.documentscanner.test:textAllCaps}
+ @see #AppCompatTextView_android_textAppearance + @see #AppCompatTextView_textAllCaps + */ + public static final int[] AppCompatTextView = { + 0x01010034, 0x7f010028 + }; + /** +

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. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #AppCompatTheme_actionBarDivider com.documentscanner.test:actionBarDivider}
{@link #AppCompatTheme_actionBarItemBackground com.documentscanner.test:actionBarItemBackground}
{@link #AppCompatTheme_actionBarPopupTheme com.documentscanner.test:actionBarPopupTheme}
{@link #AppCompatTheme_actionBarSize com.documentscanner.test:actionBarSize}
{@link #AppCompatTheme_actionBarSplitStyle com.documentscanner.test:actionBarSplitStyle}
{@link #AppCompatTheme_actionBarStyle com.documentscanner.test:actionBarStyle}
{@link #AppCompatTheme_actionBarTabBarStyle com.documentscanner.test:actionBarTabBarStyle}
{@link #AppCompatTheme_actionBarTabStyle com.documentscanner.test:actionBarTabStyle}
{@link #AppCompatTheme_actionBarTabTextStyle com.documentscanner.test:actionBarTabTextStyle}
{@link #AppCompatTheme_actionBarTheme com.documentscanner.test:actionBarTheme}
{@link #AppCompatTheme_actionBarWidgetTheme com.documentscanner.test:actionBarWidgetTheme}
{@link #AppCompatTheme_actionButtonStyle com.documentscanner.test:actionButtonStyle}
{@link #AppCompatTheme_actionDropDownStyle com.documentscanner.test:actionDropDownStyle}
{@link #AppCompatTheme_actionMenuTextAppearance com.documentscanner.test:actionMenuTextAppearance}
{@link #AppCompatTheme_actionMenuTextColor com.documentscanner.test:actionMenuTextColor}
{@link #AppCompatTheme_actionModeBackground com.documentscanner.test:actionModeBackground}
{@link #AppCompatTheme_actionModeCloseButtonStyle com.documentscanner.test:actionModeCloseButtonStyle}
{@link #AppCompatTheme_actionModeCloseDrawable com.documentscanner.test:actionModeCloseDrawable}
{@link #AppCompatTheme_actionModeCopyDrawable com.documentscanner.test:actionModeCopyDrawable}
{@link #AppCompatTheme_actionModeCutDrawable com.documentscanner.test:actionModeCutDrawable}
{@link #AppCompatTheme_actionModeFindDrawable com.documentscanner.test:actionModeFindDrawable}
{@link #AppCompatTheme_actionModePasteDrawable com.documentscanner.test:actionModePasteDrawable}
{@link #AppCompatTheme_actionModePopupWindowStyle com.documentscanner.test:actionModePopupWindowStyle}
{@link #AppCompatTheme_actionModeSelectAllDrawable com.documentscanner.test:actionModeSelectAllDrawable}
{@link #AppCompatTheme_actionModeShareDrawable com.documentscanner.test:actionModeShareDrawable}
{@link #AppCompatTheme_actionModeSplitBackground com.documentscanner.test:actionModeSplitBackground}
{@link #AppCompatTheme_actionModeStyle com.documentscanner.test:actionModeStyle}
{@link #AppCompatTheme_actionModeWebSearchDrawable com.documentscanner.test:actionModeWebSearchDrawable}
{@link #AppCompatTheme_actionOverflowButtonStyle com.documentscanner.test:actionOverflowButtonStyle}
{@link #AppCompatTheme_actionOverflowMenuStyle com.documentscanner.test:actionOverflowMenuStyle}
{@link #AppCompatTheme_activityChooserViewStyle com.documentscanner.test:activityChooserViewStyle}
{@link #AppCompatTheme_alertDialogButtonGroupStyle com.documentscanner.test:alertDialogButtonGroupStyle}
{@link #AppCompatTheme_alertDialogCenterButtons com.documentscanner.test:alertDialogCenterButtons}
{@link #AppCompatTheme_alertDialogStyle com.documentscanner.test:alertDialogStyle}
{@link #AppCompatTheme_alertDialogTheme com.documentscanner.test:alertDialogTheme}
{@link #AppCompatTheme_android_windowAnimationStyle android:windowAnimationStyle}
{@link #AppCompatTheme_android_windowIsFloating android:windowIsFloating}
{@link #AppCompatTheme_autoCompleteTextViewStyle com.documentscanner.test:autoCompleteTextViewStyle}
{@link #AppCompatTheme_borderlessButtonStyle com.documentscanner.test:borderlessButtonStyle}
{@link #AppCompatTheme_buttonBarButtonStyle com.documentscanner.test:buttonBarButtonStyle}
{@link #AppCompatTheme_buttonBarNegativeButtonStyle com.documentscanner.test:buttonBarNegativeButtonStyle}
{@link #AppCompatTheme_buttonBarNeutralButtonStyle com.documentscanner.test:buttonBarNeutralButtonStyle}
{@link #AppCompatTheme_buttonBarPositiveButtonStyle com.documentscanner.test:buttonBarPositiveButtonStyle}
{@link #AppCompatTheme_buttonBarStyle com.documentscanner.test:buttonBarStyle}
{@link #AppCompatTheme_buttonStyle com.documentscanner.test:buttonStyle}
{@link #AppCompatTheme_buttonStyleSmall com.documentscanner.test:buttonStyleSmall}
{@link #AppCompatTheme_checkboxStyle com.documentscanner.test:checkboxStyle}
{@link #AppCompatTheme_checkedTextViewStyle com.documentscanner.test:checkedTextViewStyle}
{@link #AppCompatTheme_colorAccent com.documentscanner.test:colorAccent}
{@link #AppCompatTheme_colorButtonNormal com.documentscanner.test:colorButtonNormal}
{@link #AppCompatTheme_colorControlActivated com.documentscanner.test:colorControlActivated}
{@link #AppCompatTheme_colorControlHighlight com.documentscanner.test:colorControlHighlight}
{@link #AppCompatTheme_colorControlNormal com.documentscanner.test:colorControlNormal}
{@link #AppCompatTheme_colorPrimary com.documentscanner.test:colorPrimary}
{@link #AppCompatTheme_colorPrimaryDark com.documentscanner.test:colorPrimaryDark}
{@link #AppCompatTheme_colorSwitchThumbNormal com.documentscanner.test:colorSwitchThumbNormal}
{@link #AppCompatTheme_controlBackground com.documentscanner.test:controlBackground}
{@link #AppCompatTheme_dialogPreferredPadding com.documentscanner.test:dialogPreferredPadding}
{@link #AppCompatTheme_dialogTheme com.documentscanner.test:dialogTheme}
{@link #AppCompatTheme_dividerHorizontal com.documentscanner.test:dividerHorizontal}
{@link #AppCompatTheme_dividerVertical com.documentscanner.test:dividerVertical}
{@link #AppCompatTheme_dropDownListViewStyle com.documentscanner.test:dropDownListViewStyle}
{@link #AppCompatTheme_dropdownListPreferredItemHeight com.documentscanner.test:dropdownListPreferredItemHeight}
{@link #AppCompatTheme_editTextBackground com.documentscanner.test:editTextBackground}
{@link #AppCompatTheme_editTextColor com.documentscanner.test:editTextColor}
{@link #AppCompatTheme_editTextStyle com.documentscanner.test:editTextStyle}
{@link #AppCompatTheme_homeAsUpIndicator com.documentscanner.test:homeAsUpIndicator}
{@link #AppCompatTheme_imageButtonStyle com.documentscanner.test:imageButtonStyle}
{@link #AppCompatTheme_listChoiceBackgroundIndicator com.documentscanner.test:listChoiceBackgroundIndicator}
{@link #AppCompatTheme_listDividerAlertDialog com.documentscanner.test:listDividerAlertDialog}
{@link #AppCompatTheme_listPopupWindowStyle com.documentscanner.test:listPopupWindowStyle}
{@link #AppCompatTheme_listPreferredItemHeight com.documentscanner.test:listPreferredItemHeight}
{@link #AppCompatTheme_listPreferredItemHeightLarge com.documentscanner.test:listPreferredItemHeightLarge}
{@link #AppCompatTheme_listPreferredItemHeightSmall com.documentscanner.test:listPreferredItemHeightSmall}
{@link #AppCompatTheme_listPreferredItemPaddingLeft com.documentscanner.test:listPreferredItemPaddingLeft}
{@link #AppCompatTheme_listPreferredItemPaddingRight com.documentscanner.test:listPreferredItemPaddingRight}
{@link #AppCompatTheme_panelBackground com.documentscanner.test:panelBackground}
{@link #AppCompatTheme_panelMenuListTheme com.documentscanner.test:panelMenuListTheme}
{@link #AppCompatTheme_panelMenuListWidth com.documentscanner.test:panelMenuListWidth}
{@link #AppCompatTheme_popupMenuStyle com.documentscanner.test:popupMenuStyle}
{@link #AppCompatTheme_popupWindowStyle com.documentscanner.test:popupWindowStyle}
{@link #AppCompatTheme_radioButtonStyle com.documentscanner.test:radioButtonStyle}
{@link #AppCompatTheme_ratingBarStyle com.documentscanner.test:ratingBarStyle}
{@link #AppCompatTheme_ratingBarStyleIndicator com.documentscanner.test:ratingBarStyleIndicator}
{@link #AppCompatTheme_ratingBarStyleSmall com.documentscanner.test:ratingBarStyleSmall}
{@link #AppCompatTheme_searchViewStyle com.documentscanner.test:searchViewStyle}
{@link #AppCompatTheme_seekBarStyle com.documentscanner.test:seekBarStyle}
{@link #AppCompatTheme_selectableItemBackground com.documentscanner.test:selectableItemBackground}
{@link #AppCompatTheme_selectableItemBackgroundBorderless com.documentscanner.test:selectableItemBackgroundBorderless}
{@link #AppCompatTheme_spinnerDropDownItemStyle com.documentscanner.test:spinnerDropDownItemStyle}
{@link #AppCompatTheme_spinnerStyle com.documentscanner.test:spinnerStyle}
{@link #AppCompatTheme_switchStyle com.documentscanner.test:switchStyle}
{@link #AppCompatTheme_textAppearanceLargePopupMenu com.documentscanner.test:textAppearanceLargePopupMenu}
{@link #AppCompatTheme_textAppearanceListItem com.documentscanner.test:textAppearanceListItem}
{@link #AppCompatTheme_textAppearanceListItemSmall com.documentscanner.test:textAppearanceListItemSmall}
{@link #AppCompatTheme_textAppearanceSearchResultSubtitle com.documentscanner.test:textAppearanceSearchResultSubtitle}
{@link #AppCompatTheme_textAppearanceSearchResultTitle com.documentscanner.test:textAppearanceSearchResultTitle}
{@link #AppCompatTheme_textAppearanceSmallPopupMenu com.documentscanner.test:textAppearanceSmallPopupMenu}
{@link #AppCompatTheme_textColorAlertDialogListItem com.documentscanner.test:textColorAlertDialogListItem}
{@link #AppCompatTheme_textColorSearchUrl com.documentscanner.test:textColorSearchUrl}
{@link #AppCompatTheme_toolbarNavigationButtonStyle com.documentscanner.test:toolbarNavigationButtonStyle}
{@link #AppCompatTheme_toolbarStyle com.documentscanner.test:toolbarStyle}
{@link #AppCompatTheme_windowActionBar com.documentscanner.test:windowActionBar}
{@link #AppCompatTheme_windowActionBarOverlay com.documentscanner.test:windowActionBarOverlay}
{@link #AppCompatTheme_windowActionModeOverlay com.documentscanner.test:windowActionModeOverlay}
{@link #AppCompatTheme_windowFixedHeightMajor com.documentscanner.test:windowFixedHeightMajor}
{@link #AppCompatTheme_windowFixedHeightMinor com.documentscanner.test:windowFixedHeightMinor}
{@link #AppCompatTheme_windowFixedWidthMajor com.documentscanner.test:windowFixedWidthMajor}
{@link #AppCompatTheme_windowFixedWidthMinor com.documentscanner.test:windowFixedWidthMinor}
{@link #AppCompatTheme_windowMinWidthMajor com.documentscanner.test:windowMinWidthMajor}
{@link #AppCompatTheme_windowMinWidthMinor com.documentscanner.test:windowMinWidthMinor}
{@link #AppCompatTheme_windowNoTitle com.documentscanner.test:windowNoTitle}
+ @see #AppCompatTheme_actionBarDivider + @see #AppCompatTheme_actionBarItemBackground + @see #AppCompatTheme_actionBarPopupTheme + @see #AppCompatTheme_actionBarSize + @see #AppCompatTheme_actionBarSplitStyle + @see #AppCompatTheme_actionBarStyle + @see #AppCompatTheme_actionBarTabBarStyle + @see #AppCompatTheme_actionBarTabStyle + @see #AppCompatTheme_actionBarTabTextStyle + @see #AppCompatTheme_actionBarTheme + @see #AppCompatTheme_actionBarWidgetTheme + @see #AppCompatTheme_actionButtonStyle + @see #AppCompatTheme_actionDropDownStyle + @see #AppCompatTheme_actionMenuTextAppearance + @see #AppCompatTheme_actionMenuTextColor + @see #AppCompatTheme_actionModeBackground + @see #AppCompatTheme_actionModeCloseButtonStyle + @see #AppCompatTheme_actionModeCloseDrawable + @see #AppCompatTheme_actionModeCopyDrawable + @see #AppCompatTheme_actionModeCutDrawable + @see #AppCompatTheme_actionModeFindDrawable + @see #AppCompatTheme_actionModePasteDrawable + @see #AppCompatTheme_actionModePopupWindowStyle + @see #AppCompatTheme_actionModeSelectAllDrawable + @see #AppCompatTheme_actionModeShareDrawable + @see #AppCompatTheme_actionModeSplitBackground + @see #AppCompatTheme_actionModeStyle + @see #AppCompatTheme_actionModeWebSearchDrawable + @see #AppCompatTheme_actionOverflowButtonStyle + @see #AppCompatTheme_actionOverflowMenuStyle + @see #AppCompatTheme_activityChooserViewStyle + @see #AppCompatTheme_alertDialogButtonGroupStyle + @see #AppCompatTheme_alertDialogCenterButtons + @see #AppCompatTheme_alertDialogStyle + @see #AppCompatTheme_alertDialogTheme + @see #AppCompatTheme_android_windowAnimationStyle + @see #AppCompatTheme_android_windowIsFloating + @see #AppCompatTheme_autoCompleteTextViewStyle + @see #AppCompatTheme_borderlessButtonStyle + @see #AppCompatTheme_buttonBarButtonStyle + @see #AppCompatTheme_buttonBarNegativeButtonStyle + @see #AppCompatTheme_buttonBarNeutralButtonStyle + @see #AppCompatTheme_buttonBarPositiveButtonStyle + @see #AppCompatTheme_buttonBarStyle + @see #AppCompatTheme_buttonStyle + @see #AppCompatTheme_buttonStyleSmall + @see #AppCompatTheme_checkboxStyle + @see #AppCompatTheme_checkedTextViewStyle + @see #AppCompatTheme_colorAccent + @see #AppCompatTheme_colorButtonNormal + @see #AppCompatTheme_colorControlActivated + @see #AppCompatTheme_colorControlHighlight + @see #AppCompatTheme_colorControlNormal + @see #AppCompatTheme_colorPrimary + @see #AppCompatTheme_colorPrimaryDark + @see #AppCompatTheme_colorSwitchThumbNormal + @see #AppCompatTheme_controlBackground + @see #AppCompatTheme_dialogPreferredPadding + @see #AppCompatTheme_dialogTheme + @see #AppCompatTheme_dividerHorizontal + @see #AppCompatTheme_dividerVertical + @see #AppCompatTheme_dropDownListViewStyle + @see #AppCompatTheme_dropdownListPreferredItemHeight + @see #AppCompatTheme_editTextBackground + @see #AppCompatTheme_editTextColor + @see #AppCompatTheme_editTextStyle + @see #AppCompatTheme_homeAsUpIndicator + @see #AppCompatTheme_imageButtonStyle + @see #AppCompatTheme_listChoiceBackgroundIndicator + @see #AppCompatTheme_listDividerAlertDialog + @see #AppCompatTheme_listPopupWindowStyle + @see #AppCompatTheme_listPreferredItemHeight + @see #AppCompatTheme_listPreferredItemHeightLarge + @see #AppCompatTheme_listPreferredItemHeightSmall + @see #AppCompatTheme_listPreferredItemPaddingLeft + @see #AppCompatTheme_listPreferredItemPaddingRight + @see #AppCompatTheme_panelBackground + @see #AppCompatTheme_panelMenuListTheme + @see #AppCompatTheme_panelMenuListWidth + @see #AppCompatTheme_popupMenuStyle + @see #AppCompatTheme_popupWindowStyle + @see #AppCompatTheme_radioButtonStyle + @see #AppCompatTheme_ratingBarStyle + @see #AppCompatTheme_ratingBarStyleIndicator + @see #AppCompatTheme_ratingBarStyleSmall + @see #AppCompatTheme_searchViewStyle + @see #AppCompatTheme_seekBarStyle + @see #AppCompatTheme_selectableItemBackground + @see #AppCompatTheme_selectableItemBackgroundBorderless + @see #AppCompatTheme_spinnerDropDownItemStyle + @see #AppCompatTheme_spinnerStyle + @see #AppCompatTheme_switchStyle + @see #AppCompatTheme_textAppearanceLargePopupMenu + @see #AppCompatTheme_textAppearanceListItem + @see #AppCompatTheme_textAppearanceListItemSmall + @see #AppCompatTheme_textAppearanceSearchResultSubtitle + @see #AppCompatTheme_textAppearanceSearchResultTitle + @see #AppCompatTheme_textAppearanceSmallPopupMenu + @see #AppCompatTheme_textColorAlertDialogListItem + @see #AppCompatTheme_textColorSearchUrl + @see #AppCompatTheme_toolbarNavigationButtonStyle + @see #AppCompatTheme_toolbarStyle + @see #AppCompatTheme_windowActionBar + @see #AppCompatTheme_windowActionBarOverlay + @see #AppCompatTheme_windowActionModeOverlay + @see #AppCompatTheme_windowFixedHeightMajor + @see #AppCompatTheme_windowFixedHeightMinor + @see #AppCompatTheme_windowFixedWidthMajor + @see #AppCompatTheme_windowFixedWidthMinor + @see #AppCompatTheme_windowMinWidthMajor + @see #AppCompatTheme_windowMinWidthMinor + @see #AppCompatTheme_windowNoTitle + */ + 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 + }; + /** +

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.

+ ++++ + +
ConstantValueDescription
wrap_content0
+ @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. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #BottomSheetBehavior_Params_behavior_hideable com.documentscanner.test:behavior_hideable}
{@link #BottomSheetBehavior_Params_behavior_peekHeight com.documentscanner.test:behavior_peekHeight}
+ @see #BottomSheetBehavior_Params_behavior_hideable + @see #BottomSheetBehavior_Params_behavior_peekHeight + */ + public static final int[] BottomSheetBehavior_Params = { + 0x7f010097, 0x7f010098 + }; + /** +

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. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #ButtonBarContainerTheme_metaButtonBarButtonStyle com.documentscanner.test:metaButtonBarButtonStyle}
{@link #ButtonBarContainerTheme_metaButtonBarStyle com.documentscanner.test:metaButtonBarStyle}
+ @see #ButtonBarContainerTheme_metaButtonBarButtonStyle + @see #ButtonBarContainerTheme_metaButtonBarStyle + */ + public static final int[] ButtonBarContainerTheme = { + 0x7f010099, 0x7f01009a + }; + /** +

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. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ButtonBarLayout_allowStacking com.documentscanner.test:allowStacking}
+ @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. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #CameraBridgeViewBase_camera_id com.documentscanner.test:camera_id}
{@link #CameraBridgeViewBase_show_fps com.documentscanner.test:show_fps}
+ @see #CameraBridgeViewBase_camera_id + @see #CameraBridgeViewBase_show_fps + */ + public static final int[] CameraBridgeViewBase = { + 0x7f01009c, 0x7f01009d + }; + /** +

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.

+ ++++ + + + +
ConstantValueDescription
any-1
back99
front98
+ @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. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #CollapsingAppBarLayout_LayoutParams_layout_collapseMode com.documentscanner.test:layout_collapseMode}
{@link #CollapsingAppBarLayout_LayoutParams_layout_collapseParallaxMultiplier com.documentscanner.test:layout_collapseParallaxMultiplier}
+ @see #CollapsingAppBarLayout_LayoutParams_layout_collapseMode + @see #CollapsingAppBarLayout_LayoutParams_layout_collapseParallaxMultiplier + */ + public static final int[] CollapsingAppBarLayout_LayoutParams = { + 0x7f01009e, 0x7f01009f + }; + /** +

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.

+ ++++ + + + +
ConstantValueDescription
none0
pin1
parallax2
+ @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. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #CollapsingToolbarLayout_collapsedTitleGravity com.documentscanner.test:collapsedTitleGravity}
{@link #CollapsingToolbarLayout_collapsedTitleTextAppearance com.documentscanner.test:collapsedTitleTextAppearance}
{@link #CollapsingToolbarLayout_contentScrim com.documentscanner.test:contentScrim}
{@link #CollapsingToolbarLayout_expandedTitleGravity com.documentscanner.test:expandedTitleGravity}
{@link #CollapsingToolbarLayout_expandedTitleMargin com.documentscanner.test:expandedTitleMargin}
{@link #CollapsingToolbarLayout_expandedTitleMarginBottom com.documentscanner.test:expandedTitleMarginBottom}
{@link #CollapsingToolbarLayout_expandedTitleMarginEnd com.documentscanner.test:expandedTitleMarginEnd}
{@link #CollapsingToolbarLayout_expandedTitleMarginStart com.documentscanner.test:expandedTitleMarginStart}
{@link #CollapsingToolbarLayout_expandedTitleMarginTop com.documentscanner.test:expandedTitleMarginTop}
{@link #CollapsingToolbarLayout_expandedTitleTextAppearance com.documentscanner.test:expandedTitleTextAppearance}
{@link #CollapsingToolbarLayout_statusBarScrim com.documentscanner.test:statusBarScrim}
{@link #CollapsingToolbarLayout_title com.documentscanner.test:title}
{@link #CollapsingToolbarLayout_titleEnabled com.documentscanner.test:titleEnabled}
{@link #CollapsingToolbarLayout_toolbarId com.documentscanner.test:toolbarId}
+ @see #CollapsingToolbarLayout_collapsedTitleGravity + @see #CollapsingToolbarLayout_collapsedTitleTextAppearance + @see #CollapsingToolbarLayout_contentScrim + @see #CollapsingToolbarLayout_expandedTitleGravity + @see #CollapsingToolbarLayout_expandedTitleMargin + @see #CollapsingToolbarLayout_expandedTitleMarginBottom + @see #CollapsingToolbarLayout_expandedTitleMarginEnd + @see #CollapsingToolbarLayout_expandedTitleMarginStart + @see #CollapsingToolbarLayout_expandedTitleMarginTop + @see #CollapsingToolbarLayout_expandedTitleTextAppearance + @see #CollapsingToolbarLayout_statusBarScrim + @see #CollapsingToolbarLayout_title + @see #CollapsingToolbarLayout_titleEnabled + @see #CollapsingToolbarLayout_toolbarId + */ + public static final int[] CollapsingToolbarLayout = { + 0x7f010003, 0x7f0100a0, 0x7f0100a1, 0x7f0100a2, + 0x7f0100a3, 0x7f0100a4, 0x7f0100a5, 0x7f0100a6, + 0x7f0100a7, 0x7f0100a8, 0x7f0100a9, 0x7f0100aa, + 0x7f0100ab, 0x7f0100ac + }; + /** +

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.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ @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.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ @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. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #CompoundButton_android_button android:button}
{@link #CompoundButton_buttonTint com.documentscanner.test:buttonTint}
{@link #CompoundButton_buttonTintMode com.documentscanner.test:buttonTintMode}
+ @see #CompoundButton_android_button + @see #CompoundButton_buttonTint + @see #CompoundButton_buttonTintMode + */ + public static final int[] CompoundButton = { + 0x01010107, 0x7f0100ad, 0x7f0100ae + }; + /** +

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.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name com.documentscanner.test:buttonTintMode + */ + public static final int CompoundButton_buttonTintMode = 2; + /** Attributes that can be used with a CoordinatorLayout. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #CoordinatorLayout_keylines com.documentscanner.test:keylines}
{@link #CoordinatorLayout_statusBarBackground com.documentscanner.test:statusBarBackground}
+ @see #CoordinatorLayout_keylines + @see #CoordinatorLayout_statusBarBackground + */ + public static final int[] CoordinatorLayout = { + 0x7f0100af, 0x7f0100b0 + }; + /** +

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. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #CoordinatorLayout_LayoutParams_android_layout_gravity android:layout_gravity}
{@link #CoordinatorLayout_LayoutParams_layout_anchor com.documentscanner.test:layout_anchor}
{@link #CoordinatorLayout_LayoutParams_layout_anchorGravity com.documentscanner.test:layout_anchorGravity}
{@link #CoordinatorLayout_LayoutParams_layout_behavior com.documentscanner.test:layout_behavior}
{@link #CoordinatorLayout_LayoutParams_layout_keyline com.documentscanner.test:layout_keyline}
+ @see #CoordinatorLayout_LayoutParams_android_layout_gravity + @see #CoordinatorLayout_LayoutParams_layout_anchor + @see #CoordinatorLayout_LayoutParams_layout_anchorGravity + @see #CoordinatorLayout_LayoutParams_layout_behavior + @see #CoordinatorLayout_LayoutParams_layout_keyline + */ + public static final int[] CoordinatorLayout_LayoutParams = { + 0x010100b3, 0x7f0100b1, 0x7f0100b2, 0x7f0100b3, + 0x7f0100b4 + }; + /** +

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.

+ ++++ + + + + + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
fill_horizontal0x07
center0x11
fill0x77
clip_vertical0x80
clip_horizontal0x08
start0x00800003
end0x00800005
+ @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. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #DesignTheme_bottomSheetDialogTheme com.documentscanner.test:bottomSheetDialogTheme}
{@link #DesignTheme_bottomSheetStyle com.documentscanner.test:bottomSheetStyle}
{@link #DesignTheme_textColorError com.documentscanner.test:textColorError}
+ @see #DesignTheme_bottomSheetDialogTheme + @see #DesignTheme_bottomSheetStyle + @see #DesignTheme_textColorError + */ + public static final int[] DesignTheme = { + 0x7f0100b5, 0x7f0100b6, 0x7f0100b7 + }; + /** +

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. +

Includes the following attributes:

+ + + + + + + + + + + + +
AttributeDescription
{@link #DrawerArrowToggle_arrowHeadLength com.documentscanner.test:arrowHeadLength}
{@link #DrawerArrowToggle_arrowShaftLength com.documentscanner.test:arrowShaftLength}
{@link #DrawerArrowToggle_barLength com.documentscanner.test:barLength}
{@link #DrawerArrowToggle_color com.documentscanner.test:color}
{@link #DrawerArrowToggle_drawableSize com.documentscanner.test:drawableSize}
{@link #DrawerArrowToggle_gapBetweenBars com.documentscanner.test:gapBetweenBars}
{@link #DrawerArrowToggle_spinBars com.documentscanner.test:spinBars}
{@link #DrawerArrowToggle_thickness com.documentscanner.test:thickness}
+ @see #DrawerArrowToggle_arrowHeadLength + @see #DrawerArrowToggle_arrowShaftLength + @see #DrawerArrowToggle_barLength + @see #DrawerArrowToggle_color + @see #DrawerArrowToggle_drawableSize + @see #DrawerArrowToggle_gapBetweenBars + @see #DrawerArrowToggle_spinBars + @see #DrawerArrowToggle_thickness + */ + public static final int[] DrawerArrowToggle = { + 0x7f0100b8, 0x7f0100b9, 0x7f0100ba, 0x7f0100bb, + 0x7f0100bc, 0x7f0100bd, 0x7f0100be, 0x7f0100bf + }; + /** +

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. +

Includes the following attributes:

+ + + + + + + + + + + + +
AttributeDescription
{@link #FloatingActionButton_backgroundTint com.documentscanner.test:backgroundTint}
{@link #FloatingActionButton_backgroundTintMode com.documentscanner.test:backgroundTintMode}
{@link #FloatingActionButton_borderWidth com.documentscanner.test:borderWidth}
{@link #FloatingActionButton_elevation com.documentscanner.test:elevation}
{@link #FloatingActionButton_fabSize com.documentscanner.test:fabSize}
{@link #FloatingActionButton_pressedTranslationZ com.documentscanner.test:pressedTranslationZ}
{@link #FloatingActionButton_rippleColor com.documentscanner.test:rippleColor}
{@link #FloatingActionButton_useCompatPadding com.documentscanner.test:useCompatPadding}
+ @see #FloatingActionButton_backgroundTint + @see #FloatingActionButton_backgroundTintMode + @see #FloatingActionButton_borderWidth + @see #FloatingActionButton_elevation + @see #FloatingActionButton_fabSize + @see #FloatingActionButton_pressedTranslationZ + @see #FloatingActionButton_rippleColor + @see #FloatingActionButton_useCompatPadding + */ + public static final int[] FloatingActionButton = { + 0x7f01001a, 0x7f0100c0, 0x7f0100c1, 0x7f0100c2, + 0x7f0100c3, 0x7f0100c4, 0x7f010134, 0x7f010135 + }; + /** +

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.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @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.

+ ++++ + + +
ConstantValueDescription
normal0
mini1
+ @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. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ForegroundLinearLayout_android_foreground android:foreground}
{@link #ForegroundLinearLayout_android_foregroundGravity android:foregroundGravity}
{@link #ForegroundLinearLayout_foregroundInsidePadding com.documentscanner.test:foregroundInsidePadding}
+ @see #ForegroundLinearLayout_android_foreground + @see #ForegroundLinearLayout_android_foregroundGravity + @see #ForegroundLinearLayout_foregroundInsidePadding + */ + public static final int[] ForegroundLinearLayout = { + 0x01010109, 0x01010200, 0x7f0100c5 + }; + /** +

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. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #GenericDraweeView_actualImageScaleType com.documentscanner.test:actualImageScaleType}
{@link #GenericDraweeView_backgroundImage com.documentscanner.test:backgroundImage}
{@link #GenericDraweeView_fadeDuration com.documentscanner.test:fadeDuration}
{@link #GenericDraweeView_failureImage com.documentscanner.test:failureImage}
{@link #GenericDraweeView_failureImageScaleType com.documentscanner.test:failureImageScaleType}
{@link #GenericDraweeView_overlayImage com.documentscanner.test:overlayImage}
{@link #GenericDraweeView_placeholderImage com.documentscanner.test:placeholderImage}
{@link #GenericDraweeView_placeholderImageScaleType com.documentscanner.test:placeholderImageScaleType}
{@link #GenericDraweeView_pressedStateOverlayImage com.documentscanner.test:pressedStateOverlayImage}
{@link #GenericDraweeView_progressBarAutoRotateInterval com.documentscanner.test:progressBarAutoRotateInterval}
{@link #GenericDraweeView_progressBarImage com.documentscanner.test:progressBarImage}
{@link #GenericDraweeView_progressBarImageScaleType com.documentscanner.test:progressBarImageScaleType}
{@link #GenericDraweeView_retryImage com.documentscanner.test:retryImage}
{@link #GenericDraweeView_retryImageScaleType com.documentscanner.test:retryImageScaleType}
{@link #GenericDraweeView_roundAsCircle com.documentscanner.test:roundAsCircle}
{@link #GenericDraweeView_roundBottomLeft com.documentscanner.test:roundBottomLeft}
{@link #GenericDraweeView_roundBottomRight com.documentscanner.test:roundBottomRight}
{@link #GenericDraweeView_roundTopLeft com.documentscanner.test:roundTopLeft}
{@link #GenericDraweeView_roundTopRight com.documentscanner.test:roundTopRight}
{@link #GenericDraweeView_roundWithOverlayColor com.documentscanner.test:roundWithOverlayColor}
{@link #GenericDraweeView_roundedCornerRadius com.documentscanner.test:roundedCornerRadius}
{@link #GenericDraweeView_roundingBorderColor com.documentscanner.test:roundingBorderColor}
{@link #GenericDraweeView_roundingBorderWidth com.documentscanner.test:roundingBorderWidth}
{@link #GenericDraweeView_viewAspectRatio com.documentscanner.test:viewAspectRatio}
+ @see #GenericDraweeView_actualImageScaleType + @see #GenericDraweeView_backgroundImage + @see #GenericDraweeView_fadeDuration + @see #GenericDraweeView_failureImage + @see #GenericDraweeView_failureImageScaleType + @see #GenericDraweeView_overlayImage + @see #GenericDraweeView_placeholderImage + @see #GenericDraweeView_placeholderImageScaleType + @see #GenericDraweeView_pressedStateOverlayImage + @see #GenericDraweeView_progressBarAutoRotateInterval + @see #GenericDraweeView_progressBarImage + @see #GenericDraweeView_progressBarImageScaleType + @see #GenericDraweeView_retryImage + @see #GenericDraweeView_retryImageScaleType + @see #GenericDraweeView_roundAsCircle + @see #GenericDraweeView_roundBottomLeft + @see #GenericDraweeView_roundBottomRight + @see #GenericDraweeView_roundTopLeft + @see #GenericDraweeView_roundTopRight + @see #GenericDraweeView_roundWithOverlayColor + @see #GenericDraweeView_roundedCornerRadius + @see #GenericDraweeView_roundingBorderColor + @see #GenericDraweeView_roundingBorderWidth + @see #GenericDraweeView_viewAspectRatio + */ + 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 + }; + /** +

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.

+ ++++ + + + + + + + + + +
ConstantValueDescription
none-1
fitXY0
fitStart1
fitCenter2
fitEnd3
center4
centerInside5
centerCrop6
focusCrop7
+ @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.

+ ++++ + + + + + + + + + +
ConstantValueDescription
none-1
fitXY0
fitStart1
fitCenter2
fitEnd3
center4
centerInside5
centerCrop6
focusCrop7
+ @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.

+ ++++ + + + + + + + + + +
ConstantValueDescription
none-1
fitXY0
fitStart1
fitCenter2
fitEnd3
center4
centerInside5
centerCrop6
focusCrop7
+ @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.

+ ++++ + + + + + + + + + +
ConstantValueDescription
none-1
fitXY0
fitStart1
fitCenter2
fitEnd3
center4
centerInside5
centerCrop6
focusCrop7
+ @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.

+ ++++ + + + + + + + + + +
ConstantValueDescription
none-1
fitXY0
fitStart1
fitCenter2
fitEnd3
center4
centerInside5
centerCrop6
focusCrop7
+ @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. +

Includes the following attributes:

+ + + + + + + + + + + + + +
AttributeDescription
{@link #LinearLayoutCompat_android_baselineAligned android:baselineAligned}
{@link #LinearLayoutCompat_android_baselineAlignedChildIndex android:baselineAlignedChildIndex}
{@link #LinearLayoutCompat_android_gravity android:gravity}
{@link #LinearLayoutCompat_android_orientation android:orientation}
{@link #LinearLayoutCompat_android_weightSum android:weightSum}
{@link #LinearLayoutCompat_divider com.documentscanner.test:divider}
{@link #LinearLayoutCompat_dividerPadding com.documentscanner.test:dividerPadding}
{@link #LinearLayoutCompat_measureWithLargestChild com.documentscanner.test:measureWithLargestChild}
{@link #LinearLayoutCompat_showDividers com.documentscanner.test:showDividers}
+ @see #LinearLayoutCompat_android_baselineAligned + @see #LinearLayoutCompat_android_baselineAlignedChildIndex + @see #LinearLayoutCompat_android_gravity + @see #LinearLayoutCompat_android_orientation + @see #LinearLayoutCompat_android_weightSum + @see #LinearLayoutCompat_divider + @see #LinearLayoutCompat_dividerPadding + @see #LinearLayoutCompat_measureWithLargestChild + @see #LinearLayoutCompat_showDividers + */ + public static final int[] LinearLayoutCompat = { + 0x010100af, 0x010100c4, 0x01010126, 0x01010127, + 0x01010128, 0x7f01000b, 0x7f0100de, 0x7f0100df, + 0x7f0100e0 + }; + /** +

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.

+ ++++ + + + + +
ConstantValueDescription
none0
beginning1
middle2
end4
+ @attr name com.documentscanner.test:showDividers + */ + public static final int LinearLayoutCompat_showDividers = 7; + /** Attributes that can be used with a LinearLayoutCompat_Layout. +

Includes the following attributes:

+ + + + + + + + +
AttributeDescription
{@link #LinearLayoutCompat_Layout_android_layout_gravity android:layout_gravity}
{@link #LinearLayoutCompat_Layout_android_layout_height android:layout_height}
{@link #LinearLayoutCompat_Layout_android_layout_weight android:layout_weight}
{@link #LinearLayoutCompat_Layout_android_layout_width android:layout_width}
+ @see #LinearLayoutCompat_Layout_android_layout_gravity + @see #LinearLayoutCompat_Layout_android_layout_height + @see #LinearLayoutCompat_Layout_android_layout_weight + @see #LinearLayoutCompat_Layout_android_layout_width + */ + public static final int[] LinearLayoutCompat_Layout = { + 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 + }; + /** +

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. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #ListPopupWindow_android_dropDownHorizontalOffset android:dropDownHorizontalOffset}
{@link #ListPopupWindow_android_dropDownVerticalOffset android:dropDownVerticalOffset}
+ @see #ListPopupWindow_android_dropDownHorizontalOffset + @see #ListPopupWindow_android_dropDownVerticalOffset + */ + public static final int[] ListPopupWindow = { + 0x010102ac, 0x010102ad + }; + /** +

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. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #MenuGroup_android_checkableBehavior android:checkableBehavior}
{@link #MenuGroup_android_enabled android:enabled}
{@link #MenuGroup_android_id android:id}
{@link #MenuGroup_android_menuCategory android:menuCategory}
{@link #MenuGroup_android_orderInCategory android:orderInCategory}
{@link #MenuGroup_android_visible android:visible}
+ @see #MenuGroup_android_checkableBehavior + @see #MenuGroup_android_enabled + @see #MenuGroup_android_id + @see #MenuGroup_android_menuCategory + @see #MenuGroup_android_orderInCategory + @see #MenuGroup_android_visible + */ + public static final int[] MenuGroup = { + 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, + 0x010101df, 0x010101e0 + }; + /** +

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. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #MenuItem_actionLayout com.documentscanner.test:actionLayout}
{@link #MenuItem_actionProviderClass com.documentscanner.test:actionProviderClass}
{@link #MenuItem_actionViewClass com.documentscanner.test:actionViewClass}
{@link #MenuItem_android_alphabeticShortcut android:alphabeticShortcut}
{@link #MenuItem_android_checkable android:checkable}
{@link #MenuItem_android_checked android:checked}
{@link #MenuItem_android_enabled android:enabled}
{@link #MenuItem_android_icon android:icon}
{@link #MenuItem_android_id android:id}
{@link #MenuItem_android_menuCategory android:menuCategory}
{@link #MenuItem_android_numericShortcut android:numericShortcut}
{@link #MenuItem_android_onClick android:onClick}
{@link #MenuItem_android_orderInCategory android:orderInCategory}
{@link #MenuItem_android_title android:title}
{@link #MenuItem_android_titleCondensed android:titleCondensed}
{@link #MenuItem_android_visible android:visible}
{@link #MenuItem_showAsAction com.documentscanner.test:showAsAction}
+ @see #MenuItem_actionLayout + @see #MenuItem_actionProviderClass + @see #MenuItem_actionViewClass + @see #MenuItem_android_alphabeticShortcut + @see #MenuItem_android_checkable + @see #MenuItem_android_checked + @see #MenuItem_android_enabled + @see #MenuItem_android_icon + @see #MenuItem_android_id + @see #MenuItem_android_menuCategory + @see #MenuItem_android_numericShortcut + @see #MenuItem_android_onClick + @see #MenuItem_android_orderInCategory + @see #MenuItem_android_title + @see #MenuItem_android_titleCondensed + @see #MenuItem_android_visible + @see #MenuItem_showAsAction + */ + public static final int[] MenuItem = { + 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, + 0x01010194, 0x010101de, 0x010101df, 0x010101e1, + 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, + 0x0101026f, 0x7f0100e1, 0x7f0100e2, 0x7f0100e3, + 0x7f0100e4 + }; + /** +

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.

+ ++++ + + + + + +
ConstantValueDescription
never0
ifRoom1
always2
withText4
collapseActionView8
+ @attr name com.documentscanner.test:showAsAction + */ + public static final int MenuItem_showAsAction = 13; + /** Attributes that can be used with a MenuView. +

Includes the following attributes:

+ + + + + + + + + + + + +
AttributeDescription
{@link #MenuView_android_headerBackground android:headerBackground}
{@link #MenuView_android_horizontalDivider android:horizontalDivider}
{@link #MenuView_android_itemBackground android:itemBackground}
{@link #MenuView_android_itemIconDisabledAlpha android:itemIconDisabledAlpha}
{@link #MenuView_android_itemTextAppearance android:itemTextAppearance}
{@link #MenuView_android_verticalDivider android:verticalDivider}
{@link #MenuView_android_windowAnimationStyle android:windowAnimationStyle}
{@link #MenuView_preserveIconSpacing com.documentscanner.test:preserveIconSpacing}
+ @see #MenuView_android_headerBackground + @see #MenuView_android_horizontalDivider + @see #MenuView_android_itemBackground + @see #MenuView_android_itemIconDisabledAlpha + @see #MenuView_android_itemTextAppearance + @see #MenuView_android_verticalDivider + @see #MenuView_android_windowAnimationStyle + @see #MenuView_preserveIconSpacing + */ + public static final int[] MenuView = { + 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, + 0x0101012f, 0x01010130, 0x01010131, 0x7f0100e5 + }; + /** +

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. +

Includes the following attributes:

+ + + + + + + + + + + + + + +
AttributeDescription
{@link #NavigationView_android_background android:background}
{@link #NavigationView_android_fitsSystemWindows android:fitsSystemWindows}
{@link #NavigationView_android_maxWidth android:maxWidth}
{@link #NavigationView_elevation com.documentscanner.test:elevation}
{@link #NavigationView_headerLayout com.documentscanner.test:headerLayout}
{@link #NavigationView_itemBackground com.documentscanner.test:itemBackground}
{@link #NavigationView_itemIconTint com.documentscanner.test:itemIconTint}
{@link #NavigationView_itemTextAppearance com.documentscanner.test:itemTextAppearance}
{@link #NavigationView_itemTextColor com.documentscanner.test:itemTextColor}
{@link #NavigationView_menu com.documentscanner.test:menu}
+ @see #NavigationView_android_background + @see #NavigationView_android_fitsSystemWindows + @see #NavigationView_android_maxWidth + @see #NavigationView_elevation + @see #NavigationView_headerLayout + @see #NavigationView_itemBackground + @see #NavigationView_itemIconTint + @see #NavigationView_itemTextAppearance + @see #NavigationView_itemTextColor + @see #NavigationView_menu + */ + public static final int[] NavigationView = { + 0x010100d4, 0x010100dd, 0x0101011f, 0x7f01001a, + 0x7f0100e6, 0x7f0100e7, 0x7f0100e8, 0x7f0100e9, + 0x7f0100ea, 0x7f0100eb + }; + /** +

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. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #PopupWindow_android_popupBackground android:popupBackground}
{@link #PopupWindow_overlapAnchor com.documentscanner.test:overlapAnchor}
+ @see #PopupWindow_android_popupBackground + @see #PopupWindow_overlapAnchor + */ + public static final int[] PopupWindow = { + 0x01010176, 0x7f0100ec + }; + /** +

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. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #PopupWindowBackgroundState_state_above_anchor com.documentscanner.test:state_above_anchor}
+ @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. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #RecyclerView_android_orientation android:orientation}
{@link #RecyclerView_layoutManager com.documentscanner.test:layoutManager}
{@link #RecyclerView_reverseLayout com.documentscanner.test:reverseLayout}
{@link #RecyclerView_spanCount com.documentscanner.test:spanCount}
{@link #RecyclerView_stackFromEnd com.documentscanner.test:stackFromEnd}
+ @see #RecyclerView_android_orientation + @see #RecyclerView_layoutManager + @see #RecyclerView_reverseLayout + @see #RecyclerView_spanCount + @see #RecyclerView_stackFromEnd + */ + public static final int[] RecyclerView = { + 0x010100c4, 0x7f0100ee, 0x7f0100ef, 0x7f0100f0, + 0x7f0100f1 + }; + /** +

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. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ScrimInsetsFrameLayout_insetForeground com.documentscanner.test:insetForeground}
+ @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. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ScrollingViewBehavior_Params_behavior_overlapTop com.documentscanner.test:behavior_overlapTop}
+ @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. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #SearchView_android_focusable android:focusable}
{@link #SearchView_android_imeOptions android:imeOptions}
{@link #SearchView_android_inputType android:inputType}
{@link #SearchView_android_maxWidth android:maxWidth}
{@link #SearchView_closeIcon com.documentscanner.test:closeIcon}
{@link #SearchView_commitIcon com.documentscanner.test:commitIcon}
{@link #SearchView_defaultQueryHint com.documentscanner.test:defaultQueryHint}
{@link #SearchView_goIcon com.documentscanner.test:goIcon}
{@link #SearchView_iconifiedByDefault com.documentscanner.test:iconifiedByDefault}
{@link #SearchView_layout com.documentscanner.test:layout}
{@link #SearchView_queryBackground com.documentscanner.test:queryBackground}
{@link #SearchView_queryHint com.documentscanner.test:queryHint}
{@link #SearchView_searchHintIcon com.documentscanner.test:searchHintIcon}
{@link #SearchView_searchIcon com.documentscanner.test:searchIcon}
{@link #SearchView_submitBackground com.documentscanner.test:submitBackground}
{@link #SearchView_suggestionRowLayout com.documentscanner.test:suggestionRowLayout}
{@link #SearchView_voiceIcon com.documentscanner.test:voiceIcon}
+ @see #SearchView_android_focusable + @see #SearchView_android_imeOptions + @see #SearchView_android_inputType + @see #SearchView_android_maxWidth + @see #SearchView_closeIcon + @see #SearchView_commitIcon + @see #SearchView_defaultQueryHint + @see #SearchView_goIcon + @see #SearchView_iconifiedByDefault + @see #SearchView_layout + @see #SearchView_queryBackground + @see #SearchView_queryHint + @see #SearchView_searchHintIcon + @see #SearchView_searchIcon + @see #SearchView_submitBackground + @see #SearchView_suggestionRowLayout + @see #SearchView_voiceIcon + */ + public static final int[] SearchView = { + 0x010100da, 0x0101011f, 0x01010220, 0x01010264, + 0x7f0100f4, 0x7f0100f5, 0x7f0100f6, 0x7f0100f7, + 0x7f0100f8, 0x7f0100f9, 0x7f0100fa, 0x7f0100fb, + 0x7f0100fc, 0x7f0100fd, 0x7f0100fe, 0x7f0100ff, + 0x7f010100 + }; + /** +

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. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #SnackbarLayout_android_maxWidth android:maxWidth}
{@link #SnackbarLayout_elevation com.documentscanner.test:elevation}
{@link #SnackbarLayout_maxActionInlineWidth com.documentscanner.test:maxActionInlineWidth}
+ @see #SnackbarLayout_android_maxWidth + @see #SnackbarLayout_elevation + @see #SnackbarLayout_maxActionInlineWidth + */ + public static final int[] SnackbarLayout = { + 0x0101011f, 0x7f01001a, 0x7f010101 + }; + /** +

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. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #Spinner_android_dropDownWidth android:dropDownWidth}
{@link #Spinner_android_entries android:entries}
{@link #Spinner_android_popupBackground android:popupBackground}
{@link #Spinner_android_prompt android:prompt}
{@link #Spinner_popupTheme com.documentscanner.test:popupTheme}
+ @see #Spinner_android_dropDownWidth + @see #Spinner_android_entries + @see #Spinner_android_popupBackground + @see #Spinner_android_prompt + @see #Spinner_popupTheme + */ + public static final int[] Spinner = { + 0x010100b2, 0x01010176, 0x0101017b, 0x01010262, + 0x7f01001b + }; + /** +

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. +

Includes the following attributes:

+ + + + + + + + + + + + + + +
AttributeDescription
{@link #SwitchCompat_android_textOff android:textOff}
{@link #SwitchCompat_android_textOn android:textOn}
{@link #SwitchCompat_android_thumb android:thumb}
{@link #SwitchCompat_showText com.documentscanner.test:showText}
{@link #SwitchCompat_splitTrack com.documentscanner.test:splitTrack}
{@link #SwitchCompat_switchMinWidth com.documentscanner.test:switchMinWidth}
{@link #SwitchCompat_switchPadding com.documentscanner.test:switchPadding}
{@link #SwitchCompat_switchTextAppearance com.documentscanner.test:switchTextAppearance}
{@link #SwitchCompat_thumbTextPadding com.documentscanner.test:thumbTextPadding}
{@link #SwitchCompat_track com.documentscanner.test:track}
+ @see #SwitchCompat_android_textOff + @see #SwitchCompat_android_textOn + @see #SwitchCompat_android_thumb + @see #SwitchCompat_showText + @see #SwitchCompat_splitTrack + @see #SwitchCompat_switchMinWidth + @see #SwitchCompat_switchPadding + @see #SwitchCompat_switchTextAppearance + @see #SwitchCompat_thumbTextPadding + @see #SwitchCompat_track + */ + public static final int[] SwitchCompat = { + 0x01010124, 0x01010125, 0x01010142, 0x7f010102, + 0x7f010103, 0x7f010104, 0x7f010105, 0x7f010106, + 0x7f010107, 0x7f010108 + }; + /** +

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. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #TabItem_android_icon android:icon}
{@link #TabItem_android_layout android:layout}
{@link #TabItem_android_text android:text}
+ @see #TabItem_android_icon + @see #TabItem_android_layout + @see #TabItem_android_text + */ + public static final int[] TabItem = { + 0x01010002, 0x010100f2, 0x0101014f + }; + /** +

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. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #TabLayout_tabBackground com.documentscanner.test:tabBackground}
{@link #TabLayout_tabContentStart com.documentscanner.test:tabContentStart}
{@link #TabLayout_tabGravity com.documentscanner.test:tabGravity}
{@link #TabLayout_tabIndicatorColor com.documentscanner.test:tabIndicatorColor}
{@link #TabLayout_tabIndicatorHeight com.documentscanner.test:tabIndicatorHeight}
{@link #TabLayout_tabMaxWidth com.documentscanner.test:tabMaxWidth}
{@link #TabLayout_tabMinWidth com.documentscanner.test:tabMinWidth}
{@link #TabLayout_tabMode com.documentscanner.test:tabMode}
{@link #TabLayout_tabPadding com.documentscanner.test:tabPadding}
{@link #TabLayout_tabPaddingBottom com.documentscanner.test:tabPaddingBottom}
{@link #TabLayout_tabPaddingEnd com.documentscanner.test:tabPaddingEnd}
{@link #TabLayout_tabPaddingStart com.documentscanner.test:tabPaddingStart}
{@link #TabLayout_tabPaddingTop com.documentscanner.test:tabPaddingTop}
{@link #TabLayout_tabSelectedTextColor com.documentscanner.test:tabSelectedTextColor}
{@link #TabLayout_tabTextAppearance com.documentscanner.test:tabTextAppearance}
{@link #TabLayout_tabTextColor com.documentscanner.test:tabTextColor}
+ @see #TabLayout_tabBackground + @see #TabLayout_tabContentStart + @see #TabLayout_tabGravity + @see #TabLayout_tabIndicatorColor + @see #TabLayout_tabIndicatorHeight + @see #TabLayout_tabMaxWidth + @see #TabLayout_tabMinWidth + @see #TabLayout_tabMode + @see #TabLayout_tabPadding + @see #TabLayout_tabPaddingBottom + @see #TabLayout_tabPaddingEnd + @see #TabLayout_tabPaddingStart + @see #TabLayout_tabPaddingTop + @see #TabLayout_tabSelectedTextColor + @see #TabLayout_tabTextAppearance + @see #TabLayout_tabTextColor + */ + public static final int[] TabLayout = { + 0x7f010109, 0x7f01010a, 0x7f01010b, 0x7f01010c, + 0x7f01010d, 0x7f01010e, 0x7f01010f, 0x7f010110, + 0x7f010111, 0x7f010112, 0x7f010113, 0x7f010114, + 0x7f010115, 0x7f010116, 0x7f010117, 0x7f010118 + }; + /** +

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.

+ ++++ + + +
ConstantValueDescription
fill0
center1
+ @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.

+ ++++ + + +
ConstantValueDescription
scrollable0
fixed1
+ @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. +

Includes the following attributes:

+ + + + + + + + + + + + + +
AttributeDescription
{@link #TextAppearance_android_shadowColor android:shadowColor}
{@link #TextAppearance_android_shadowDx android:shadowDx}
{@link #TextAppearance_android_shadowDy android:shadowDy}
{@link #TextAppearance_android_shadowRadius android:shadowRadius}
{@link #TextAppearance_android_textColor android:textColor}
{@link #TextAppearance_android_textSize android:textSize}
{@link #TextAppearance_android_textStyle android:textStyle}
{@link #TextAppearance_android_typeface android:typeface}
{@link #TextAppearance_textAllCaps com.documentscanner.test:textAllCaps}
+ @see #TextAppearance_android_shadowColor + @see #TextAppearance_android_shadowDx + @see #TextAppearance_android_shadowDy + @see #TextAppearance_android_shadowRadius + @see #TextAppearance_android_textColor + @see #TextAppearance_android_textSize + @see #TextAppearance_android_textStyle + @see #TextAppearance_android_typeface + @see #TextAppearance_textAllCaps + */ + public static final int[] TextAppearance = { + 0x01010095, 0x01010096, 0x01010097, 0x01010098, + 0x01010161, 0x01010162, 0x01010163, 0x01010164, + 0x7f010028 + }; + /** +

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. +

Includes the following attributes:

+ + + + + + + + + + + + + + + +
AttributeDescription
{@link #TextInputLayout_android_hint android:hint}
{@link #TextInputLayout_android_textColorHint android:textColorHint}
{@link #TextInputLayout_counterEnabled com.documentscanner.test:counterEnabled}
{@link #TextInputLayout_counterMaxLength com.documentscanner.test:counterMaxLength}
{@link #TextInputLayout_counterOverflowTextAppearance com.documentscanner.test:counterOverflowTextAppearance}
{@link #TextInputLayout_counterTextAppearance com.documentscanner.test:counterTextAppearance}
{@link #TextInputLayout_errorEnabled com.documentscanner.test:errorEnabled}
{@link #TextInputLayout_errorTextAppearance com.documentscanner.test:errorTextAppearance}
{@link #TextInputLayout_hintAnimationEnabled com.documentscanner.test:hintAnimationEnabled}
{@link #TextInputLayout_hintEnabled com.documentscanner.test:hintEnabled}
{@link #TextInputLayout_hintTextAppearance com.documentscanner.test:hintTextAppearance}
+ @see #TextInputLayout_android_hint + @see #TextInputLayout_android_textColorHint + @see #TextInputLayout_counterEnabled + @see #TextInputLayout_counterMaxLength + @see #TextInputLayout_counterOverflowTextAppearance + @see #TextInputLayout_counterTextAppearance + @see #TextInputLayout_errorEnabled + @see #TextInputLayout_errorTextAppearance + @see #TextInputLayout_hintAnimationEnabled + @see #TextInputLayout_hintEnabled + @see #TextInputLayout_hintTextAppearance + */ + public static final int[] TextInputLayout = { + 0x0101009a, 0x01010150, 0x7f010119, 0x7f01011a, + 0x7f01011b, 0x7f01011c, 0x7f01011d, 0x7f01011e, + 0x7f01011f, 0x7f010120, 0x7f010121 + }; + /** +

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. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #Toolbar_android_gravity android:gravity}
{@link #Toolbar_android_minHeight android:minHeight}
{@link #Toolbar_collapseContentDescription com.documentscanner.test:collapseContentDescription}
{@link #Toolbar_collapseIcon com.documentscanner.test:collapseIcon}
{@link #Toolbar_contentInsetEnd com.documentscanner.test:contentInsetEnd}
{@link #Toolbar_contentInsetLeft com.documentscanner.test:contentInsetLeft}
{@link #Toolbar_contentInsetRight com.documentscanner.test:contentInsetRight}
{@link #Toolbar_contentInsetStart com.documentscanner.test:contentInsetStart}
{@link #Toolbar_logo com.documentscanner.test:logo}
{@link #Toolbar_logoDescription com.documentscanner.test:logoDescription}
{@link #Toolbar_maxButtonHeight com.documentscanner.test:maxButtonHeight}
{@link #Toolbar_navigationContentDescription com.documentscanner.test:navigationContentDescription}
{@link #Toolbar_navigationIcon com.documentscanner.test:navigationIcon}
{@link #Toolbar_popupTheme com.documentscanner.test:popupTheme}
{@link #Toolbar_subtitle com.documentscanner.test:subtitle}
{@link #Toolbar_subtitleTextAppearance com.documentscanner.test:subtitleTextAppearance}
{@link #Toolbar_subtitleTextColor com.documentscanner.test:subtitleTextColor}
{@link #Toolbar_title com.documentscanner.test:title}
{@link #Toolbar_titleMarginBottom com.documentscanner.test:titleMarginBottom}
{@link #Toolbar_titleMarginEnd com.documentscanner.test:titleMarginEnd}
{@link #Toolbar_titleMarginStart com.documentscanner.test:titleMarginStart}
{@link #Toolbar_titleMarginTop com.documentscanner.test:titleMarginTop}
{@link #Toolbar_titleMargins com.documentscanner.test:titleMargins}
{@link #Toolbar_titleTextAppearance com.documentscanner.test:titleTextAppearance}
{@link #Toolbar_titleTextColor com.documentscanner.test:titleTextColor}
+ @see #Toolbar_android_gravity + @see #Toolbar_android_minHeight + @see #Toolbar_collapseContentDescription + @see #Toolbar_collapseIcon + @see #Toolbar_contentInsetEnd + @see #Toolbar_contentInsetLeft + @see #Toolbar_contentInsetRight + @see #Toolbar_contentInsetStart + @see #Toolbar_logo + @see #Toolbar_logoDescription + @see #Toolbar_maxButtonHeight + @see #Toolbar_navigationContentDescription + @see #Toolbar_navigationIcon + @see #Toolbar_popupTheme + @see #Toolbar_subtitle + @see #Toolbar_subtitleTextAppearance + @see #Toolbar_subtitleTextColor + @see #Toolbar_title + @see #Toolbar_titleMarginBottom + @see #Toolbar_titleMarginEnd + @see #Toolbar_titleMarginStart + @see #Toolbar_titleMarginTop + @see #Toolbar_titleMargins + @see #Toolbar_titleTextAppearance + @see #Toolbar_titleTextColor + */ + 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 + }; + /** +

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. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #View_android_focusable android:focusable}
{@link #View_android_theme android:theme}
{@link #View_paddingEnd com.documentscanner.test:paddingEnd}
{@link #View_paddingStart com.documentscanner.test:paddingStart}
{@link #View_theme com.documentscanner.test:theme}
+ @see #View_android_focusable + @see #View_android_theme + @see #View_paddingEnd + @see #View_paddingStart + @see #View_theme + */ + public static final int[] View = { + 0x01010000, 0x010100da, 0x7f010131, 0x7f010132, + 0x7f010133 + }; + /** +

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. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ViewBackgroundHelper_android_background android:background}
{@link #ViewBackgroundHelper_backgroundTint com.documentscanner.test:backgroundTint}
{@link #ViewBackgroundHelper_backgroundTintMode com.documentscanner.test:backgroundTintMode}
+ @see #ViewBackgroundHelper_android_background + @see #ViewBackgroundHelper_backgroundTint + @see #ViewBackgroundHelper_backgroundTintMode + */ + public static final int[] ViewBackgroundHelper = { + 0x010100d4, 0x7f010134, 0x7f010135 + }; + /** +

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.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name com.documentscanner.test:backgroundTintMode + */ + public static final int ViewBackgroundHelper_backgroundTintMode = 2; + /** Attributes that can be used with a ViewStubCompat. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ViewStubCompat_android_id android:id}
{@link #ViewStubCompat_android_inflatedId android:inflatedId}
{@link #ViewStubCompat_android_layout android:layout}
+ @see #ViewStubCompat_android_id + @see #ViewStubCompat_android_inflatedId + @see #ViewStubCompat_android_layout + */ + public static final int[] ViewStubCompat = { + 0x010100d0, 0x010100f2, 0x010100f3 + }; + /** +

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.

+ ++++ + +
ConstantValueDescription
wrap_content0
+ */ + 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.

+ ++++ + + + + + + + + + +
ConstantValueDescription
none-1
fitXY0
fitStart1
fitCenter2
fitEnd3
center4
centerInside5
centerCrop6
focusCrop7
+ */ + 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.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ */ + 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.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ */ + 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.

+ ++++ + + + +
ConstantValueDescription
any-1
back99
front98
+ */ + 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.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ */ + 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.

+ ++++ + + + + + + + +
ConstantValueDescription
none0
useLogo0x1
showHome0x2
homeAsUp0x4
showTitle0x8
showCustom0x10
disableHome0x20
+ */ + 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.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ */ + 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.

+ ++++ + + +
ConstantValueDescription
normal0
mini1
+ */ + 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.

+ ++++ + + + + + + + + + +
ConstantValueDescription
none-1
fitXY0
fitStart1
fitCenter2
fitEnd3
center4
centerInside5
centerCrop6
focusCrop7
+ */ + 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.

+ ++++ + + + + + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
fill_horizontal0x07
center0x11
fill0x77
clip_vertical0x80
clip_horizontal0x08
start0x00800003
end0x00800005
+ */ + 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.

+ ++++ + + + +
ConstantValueDescription
none0
pin1
parallax2
+ */ + 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.

+ ++++ + + + + + +
ConstantValueDescription
scroll0x1
exitUntilCollapsed0x2
enterAlways0x4
enterAlwaysCollapsed0x8
snap0x10
+ */ + 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.

+ ++++ + + + +
ConstantValueDescription
normal0
listMode1
tabMode2
+ */ + 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.

+ ++++ + + + + + + + + + +
ConstantValueDescription
none-1
fitXY0
fitStart1
fitCenter2
fitEnd3
center4
centerInside5
centerCrop6
focusCrop7
+ */ + 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.

+ ++++ + + + + + + + + + +
ConstantValueDescription
none-1
fitXY0
fitStart1
fitCenter2
fitEnd3
center4
centerInside5
centerCrop6
focusCrop7
+ */ + 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.

+ ++++ + + + + + + + + + +
ConstantValueDescription
none-1
fitXY0
fitStart1
fitCenter2
fitEnd3
center4
centerInside5
centerCrop6
focusCrop7
+ */ + 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.

+ ++++ + + + + + +
ConstantValueDescription
never0
ifRoom1
always2
withText4
collapseActionView8
+ */ + public static int showAsAction=0x7f0100e1; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
none0
beginning1
middle2
end4
+ */ + 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.

+ ++++ + + +
ConstantValueDescription
fill0
center1
+ */ + 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.

+ ++++ + + +
ConstantValueDescription
scrollable0
fixed1
+ */ + 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. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #ActionBar_background com.documentscanner:background}
{@link #ActionBar_backgroundSplit com.documentscanner:backgroundSplit}
{@link #ActionBar_backgroundStacked com.documentscanner:backgroundStacked}
{@link #ActionBar_contentInsetEnd com.documentscanner:contentInsetEnd}
{@link #ActionBar_contentInsetLeft com.documentscanner:contentInsetLeft}
{@link #ActionBar_contentInsetRight com.documentscanner:contentInsetRight}
{@link #ActionBar_contentInsetStart com.documentscanner:contentInsetStart}
{@link #ActionBar_customNavigationLayout com.documentscanner:customNavigationLayout}
{@link #ActionBar_displayOptions com.documentscanner:displayOptions}
{@link #ActionBar_divider com.documentscanner:divider}
{@link #ActionBar_elevation com.documentscanner:elevation}
{@link #ActionBar_height com.documentscanner:height}
{@link #ActionBar_hideOnContentScroll com.documentscanner:hideOnContentScroll}
{@link #ActionBar_homeAsUpIndicator com.documentscanner:homeAsUpIndicator}
{@link #ActionBar_homeLayout com.documentscanner:homeLayout}
{@link #ActionBar_icon com.documentscanner:icon}
{@link #ActionBar_indeterminateProgressStyle com.documentscanner:indeterminateProgressStyle}
{@link #ActionBar_itemPadding com.documentscanner:itemPadding}
{@link #ActionBar_logo com.documentscanner:logo}
{@link #ActionBar_navigationMode com.documentscanner:navigationMode}
{@link #ActionBar_popupTheme com.documentscanner:popupTheme}
{@link #ActionBar_progressBarPadding com.documentscanner:progressBarPadding}
{@link #ActionBar_progressBarStyle com.documentscanner:progressBarStyle}
{@link #ActionBar_subtitle com.documentscanner:subtitle}
{@link #ActionBar_subtitleTextStyle com.documentscanner:subtitleTextStyle}
{@link #ActionBar_title com.documentscanner:title}
{@link #ActionBar_titleTextStyle com.documentscanner:titleTextStyle}
+ @see #ActionBar_background + @see #ActionBar_backgroundSplit + @see #ActionBar_backgroundStacked + @see #ActionBar_contentInsetEnd + @see #ActionBar_contentInsetLeft + @see #ActionBar_contentInsetRight + @see #ActionBar_contentInsetStart + @see #ActionBar_customNavigationLayout + @see #ActionBar_displayOptions + @see #ActionBar_divider + @see #ActionBar_elevation + @see #ActionBar_height + @see #ActionBar_hideOnContentScroll + @see #ActionBar_homeAsUpIndicator + @see #ActionBar_homeLayout + @see #ActionBar_icon + @see #ActionBar_indeterminateProgressStyle + @see #ActionBar_itemPadding + @see #ActionBar_logo + @see #ActionBar_navigationMode + @see #ActionBar_popupTheme + @see #ActionBar_progressBarPadding + @see #ActionBar_progressBarStyle + @see #ActionBar_subtitle + @see #ActionBar_subtitleTextStyle + @see #ActionBar_title + @see #ActionBar_titleTextStyle + */ + 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 + }; + /** +

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.

+ ++++ + + + + + + + +
ConstantValueDescription
none0
useLogo0x1
showHome0x2
homeAsUp0x4
showTitle0x8
showCustom0x10
disableHome0x20
+ @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.

+ ++++ + + + +
ConstantValueDescription
normal0
listMode1
tabMode2
+ @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. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ActionBarLayout_android_layout_gravity android:layout_gravity}
+ @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. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ActionMenuItemView_android_minWidth android:minWidth}
+ @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. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #ActionMode_background com.documentscanner:background}
{@link #ActionMode_backgroundSplit com.documentscanner:backgroundSplit}
{@link #ActionMode_closeItemLayout com.documentscanner:closeItemLayout}
{@link #ActionMode_height com.documentscanner:height}
{@link #ActionMode_subtitleTextStyle com.documentscanner:subtitleTextStyle}
{@link #ActionMode_titleTextStyle com.documentscanner:titleTextStyle}
+ @see #ActionMode_background + @see #ActionMode_backgroundSplit + @see #ActionMode_closeItemLayout + @see #ActionMode_height + @see #ActionMode_subtitleTextStyle + @see #ActionMode_titleTextStyle + */ + public static final int[] ActionMode = { + 0x7f010001, 0x7f010007, 0x7f010008, 0x7f01000c, + 0x7f01000e, 0x7f01001c + }; + /** +

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. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #ActivityChooserView_expandActivityOverflowButtonDrawable com.documentscanner:expandActivityOverflowButtonDrawable}
{@link #ActivityChooserView_initialActivityCount com.documentscanner:initialActivityCount}
+ @see #ActivityChooserView_expandActivityOverflowButtonDrawable + @see #ActivityChooserView_initialActivityCount + */ + public static final int[] ActivityChooserView = { + 0x7f01001d, 0x7f01001e + }; + /** +

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. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #AlertDialog_android_layout android:layout}
{@link #AlertDialog_buttonPanelSideLayout com.documentscanner:buttonPanelSideLayout}
{@link #AlertDialog_listItemLayout com.documentscanner:listItemLayout}
{@link #AlertDialog_listLayout com.documentscanner:listLayout}
{@link #AlertDialog_multiChoiceItemLayout com.documentscanner:multiChoiceItemLayout}
{@link #AlertDialog_singleChoiceItemLayout com.documentscanner:singleChoiceItemLayout}
+ @see #AlertDialog_android_layout + @see #AlertDialog_buttonPanelSideLayout + @see #AlertDialog_listItemLayout + @see #AlertDialog_listLayout + @see #AlertDialog_multiChoiceItemLayout + @see #AlertDialog_singleChoiceItemLayout + */ + public static final int[] AlertDialog = { + 0x010100f2, 0x7f01001f, 0x7f010020, 0x7f010021, + 0x7f010022, 0x7f010023 + }; + /** +

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. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #AppBarLayout_android_background android:background}
{@link #AppBarLayout_elevation com.documentscanner:elevation}
{@link #AppBarLayout_expanded com.documentscanner:expanded}
+ @see #AppBarLayout_android_background + @see #AppBarLayout_elevation + @see #AppBarLayout_expanded + */ + public static final int[] AppBarLayout = { + 0x010100d4, 0x7f01001a, 0x7f010024 + }; + /** +

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. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #AppBarLayout_LayoutParams_layout_scrollFlags com.documentscanner:layout_scrollFlags}
{@link #AppBarLayout_LayoutParams_layout_scrollInterpolator com.documentscanner:layout_scrollInterpolator}
+ @see #AppBarLayout_LayoutParams_layout_scrollFlags + @see #AppBarLayout_LayoutParams_layout_scrollInterpolator + */ + public static final int[] AppBarLayout_LayoutParams = { + 0x7f010025, 0x7f010026 + }; + /** +

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.

+ ++++ + + + + + +
ConstantValueDescription
scroll0x1
exitUntilCollapsed0x2
enterAlways0x4
enterAlwaysCollapsed0x8
snap0x10
+ @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. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #AppCompatImageView_android_src android:src}
{@link #AppCompatImageView_srcCompat com.documentscanner:srcCompat}
+ @see #AppCompatImageView_android_src + @see #AppCompatImageView_srcCompat + */ + public static final int[] AppCompatImageView = { + 0x01010119, 0x7f010027 + }; + /** +

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. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #AppCompatTextView_android_textAppearance android:textAppearance}
{@link #AppCompatTextView_textAllCaps com.documentscanner:textAllCaps}
+ @see #AppCompatTextView_android_textAppearance + @see #AppCompatTextView_textAllCaps + */ + public static final int[] AppCompatTextView = { + 0x01010034, 0x7f010028 + }; + /** +

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. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #AppCompatTheme_actionBarDivider com.documentscanner:actionBarDivider}
{@link #AppCompatTheme_actionBarItemBackground com.documentscanner:actionBarItemBackground}
{@link #AppCompatTheme_actionBarPopupTheme com.documentscanner:actionBarPopupTheme}
{@link #AppCompatTheme_actionBarSize com.documentscanner:actionBarSize}
{@link #AppCompatTheme_actionBarSplitStyle com.documentscanner:actionBarSplitStyle}
{@link #AppCompatTheme_actionBarStyle com.documentscanner:actionBarStyle}
{@link #AppCompatTheme_actionBarTabBarStyle com.documentscanner:actionBarTabBarStyle}
{@link #AppCompatTheme_actionBarTabStyle com.documentscanner:actionBarTabStyle}
{@link #AppCompatTheme_actionBarTabTextStyle com.documentscanner:actionBarTabTextStyle}
{@link #AppCompatTheme_actionBarTheme com.documentscanner:actionBarTheme}
{@link #AppCompatTheme_actionBarWidgetTheme com.documentscanner:actionBarWidgetTheme}
{@link #AppCompatTheme_actionButtonStyle com.documentscanner:actionButtonStyle}
{@link #AppCompatTheme_actionDropDownStyle com.documentscanner:actionDropDownStyle}
{@link #AppCompatTheme_actionMenuTextAppearance com.documentscanner:actionMenuTextAppearance}
{@link #AppCompatTheme_actionMenuTextColor com.documentscanner:actionMenuTextColor}
{@link #AppCompatTheme_actionModeBackground com.documentscanner:actionModeBackground}
{@link #AppCompatTheme_actionModeCloseButtonStyle com.documentscanner:actionModeCloseButtonStyle}
{@link #AppCompatTheme_actionModeCloseDrawable com.documentscanner:actionModeCloseDrawable}
{@link #AppCompatTheme_actionModeCopyDrawable com.documentscanner:actionModeCopyDrawable}
{@link #AppCompatTheme_actionModeCutDrawable com.documentscanner:actionModeCutDrawable}
{@link #AppCompatTheme_actionModeFindDrawable com.documentscanner:actionModeFindDrawable}
{@link #AppCompatTheme_actionModePasteDrawable com.documentscanner:actionModePasteDrawable}
{@link #AppCompatTheme_actionModePopupWindowStyle com.documentscanner:actionModePopupWindowStyle}
{@link #AppCompatTheme_actionModeSelectAllDrawable com.documentscanner:actionModeSelectAllDrawable}
{@link #AppCompatTheme_actionModeShareDrawable com.documentscanner:actionModeShareDrawable}
{@link #AppCompatTheme_actionModeSplitBackground com.documentscanner:actionModeSplitBackground}
{@link #AppCompatTheme_actionModeStyle com.documentscanner:actionModeStyle}
{@link #AppCompatTheme_actionModeWebSearchDrawable com.documentscanner:actionModeWebSearchDrawable}
{@link #AppCompatTheme_actionOverflowButtonStyle com.documentscanner:actionOverflowButtonStyle}
{@link #AppCompatTheme_actionOverflowMenuStyle com.documentscanner:actionOverflowMenuStyle}
{@link #AppCompatTheme_activityChooserViewStyle com.documentscanner:activityChooserViewStyle}
{@link #AppCompatTheme_alertDialogButtonGroupStyle com.documentscanner:alertDialogButtonGroupStyle}
{@link #AppCompatTheme_alertDialogCenterButtons com.documentscanner:alertDialogCenterButtons}
{@link #AppCompatTheme_alertDialogStyle com.documentscanner:alertDialogStyle}
{@link #AppCompatTheme_alertDialogTheme com.documentscanner:alertDialogTheme}
{@link #AppCompatTheme_android_windowAnimationStyle android:windowAnimationStyle}
{@link #AppCompatTheme_android_windowIsFloating android:windowIsFloating}
{@link #AppCompatTheme_autoCompleteTextViewStyle com.documentscanner:autoCompleteTextViewStyle}
{@link #AppCompatTheme_borderlessButtonStyle com.documentscanner:borderlessButtonStyle}
{@link #AppCompatTheme_buttonBarButtonStyle com.documentscanner:buttonBarButtonStyle}
{@link #AppCompatTheme_buttonBarNegativeButtonStyle com.documentscanner:buttonBarNegativeButtonStyle}
{@link #AppCompatTheme_buttonBarNeutralButtonStyle com.documentscanner:buttonBarNeutralButtonStyle}
{@link #AppCompatTheme_buttonBarPositiveButtonStyle com.documentscanner:buttonBarPositiveButtonStyle}
{@link #AppCompatTheme_buttonBarStyle com.documentscanner:buttonBarStyle}
{@link #AppCompatTheme_buttonStyle com.documentscanner:buttonStyle}
{@link #AppCompatTheme_buttonStyleSmall com.documentscanner:buttonStyleSmall}
{@link #AppCompatTheme_checkboxStyle com.documentscanner:checkboxStyle}
{@link #AppCompatTheme_checkedTextViewStyle com.documentscanner:checkedTextViewStyle}
{@link #AppCompatTheme_colorAccent com.documentscanner:colorAccent}
{@link #AppCompatTheme_colorButtonNormal com.documentscanner:colorButtonNormal}
{@link #AppCompatTheme_colorControlActivated com.documentscanner:colorControlActivated}
{@link #AppCompatTheme_colorControlHighlight com.documentscanner:colorControlHighlight}
{@link #AppCompatTheme_colorControlNormal com.documentscanner:colorControlNormal}
{@link #AppCompatTheme_colorPrimary com.documentscanner:colorPrimary}
{@link #AppCompatTheme_colorPrimaryDark com.documentscanner:colorPrimaryDark}
{@link #AppCompatTheme_colorSwitchThumbNormal com.documentscanner:colorSwitchThumbNormal}
{@link #AppCompatTheme_controlBackground com.documentscanner:controlBackground}
{@link #AppCompatTheme_dialogPreferredPadding com.documentscanner:dialogPreferredPadding}
{@link #AppCompatTheme_dialogTheme com.documentscanner:dialogTheme}
{@link #AppCompatTheme_dividerHorizontal com.documentscanner:dividerHorizontal}
{@link #AppCompatTheme_dividerVertical com.documentscanner:dividerVertical}
{@link #AppCompatTheme_dropDownListViewStyle com.documentscanner:dropDownListViewStyle}
{@link #AppCompatTheme_dropdownListPreferredItemHeight com.documentscanner:dropdownListPreferredItemHeight}
{@link #AppCompatTheme_editTextBackground com.documentscanner:editTextBackground}
{@link #AppCompatTheme_editTextColor com.documentscanner:editTextColor}
{@link #AppCompatTheme_editTextStyle com.documentscanner:editTextStyle}
{@link #AppCompatTheme_homeAsUpIndicator com.documentscanner:homeAsUpIndicator}
{@link #AppCompatTheme_imageButtonStyle com.documentscanner:imageButtonStyle}
{@link #AppCompatTheme_listChoiceBackgroundIndicator com.documentscanner:listChoiceBackgroundIndicator}
{@link #AppCompatTheme_listDividerAlertDialog com.documentscanner:listDividerAlertDialog}
{@link #AppCompatTheme_listPopupWindowStyle com.documentscanner:listPopupWindowStyle}
{@link #AppCompatTheme_listPreferredItemHeight com.documentscanner:listPreferredItemHeight}
{@link #AppCompatTheme_listPreferredItemHeightLarge com.documentscanner:listPreferredItemHeightLarge}
{@link #AppCompatTheme_listPreferredItemHeightSmall com.documentscanner:listPreferredItemHeightSmall}
{@link #AppCompatTheme_listPreferredItemPaddingLeft com.documentscanner:listPreferredItemPaddingLeft}
{@link #AppCompatTheme_listPreferredItemPaddingRight com.documentscanner:listPreferredItemPaddingRight}
{@link #AppCompatTheme_panelBackground com.documentscanner:panelBackground}
{@link #AppCompatTheme_panelMenuListTheme com.documentscanner:panelMenuListTheme}
{@link #AppCompatTheme_panelMenuListWidth com.documentscanner:panelMenuListWidth}
{@link #AppCompatTheme_popupMenuStyle com.documentscanner:popupMenuStyle}
{@link #AppCompatTheme_popupWindowStyle com.documentscanner:popupWindowStyle}
{@link #AppCompatTheme_radioButtonStyle com.documentscanner:radioButtonStyle}
{@link #AppCompatTheme_ratingBarStyle com.documentscanner:ratingBarStyle}
{@link #AppCompatTheme_ratingBarStyleIndicator com.documentscanner:ratingBarStyleIndicator}
{@link #AppCompatTheme_ratingBarStyleSmall com.documentscanner:ratingBarStyleSmall}
{@link #AppCompatTheme_searchViewStyle com.documentscanner:searchViewStyle}
{@link #AppCompatTheme_seekBarStyle com.documentscanner:seekBarStyle}
{@link #AppCompatTheme_selectableItemBackground com.documentscanner:selectableItemBackground}
{@link #AppCompatTheme_selectableItemBackgroundBorderless com.documentscanner:selectableItemBackgroundBorderless}
{@link #AppCompatTheme_spinnerDropDownItemStyle com.documentscanner:spinnerDropDownItemStyle}
{@link #AppCompatTheme_spinnerStyle com.documentscanner:spinnerStyle}
{@link #AppCompatTheme_switchStyle com.documentscanner:switchStyle}
{@link #AppCompatTheme_textAppearanceLargePopupMenu com.documentscanner:textAppearanceLargePopupMenu}
{@link #AppCompatTheme_textAppearanceListItem com.documentscanner:textAppearanceListItem}
{@link #AppCompatTheme_textAppearanceListItemSmall com.documentscanner:textAppearanceListItemSmall}
{@link #AppCompatTheme_textAppearanceSearchResultSubtitle com.documentscanner:textAppearanceSearchResultSubtitle}
{@link #AppCompatTheme_textAppearanceSearchResultTitle com.documentscanner:textAppearanceSearchResultTitle}
{@link #AppCompatTheme_textAppearanceSmallPopupMenu com.documentscanner:textAppearanceSmallPopupMenu}
{@link #AppCompatTheme_textColorAlertDialogListItem com.documentscanner:textColorAlertDialogListItem}
{@link #AppCompatTheme_textColorSearchUrl com.documentscanner:textColorSearchUrl}
{@link #AppCompatTheme_toolbarNavigationButtonStyle com.documentscanner:toolbarNavigationButtonStyle}
{@link #AppCompatTheme_toolbarStyle com.documentscanner:toolbarStyle}
{@link #AppCompatTheme_windowActionBar com.documentscanner:windowActionBar}
{@link #AppCompatTheme_windowActionBarOverlay com.documentscanner:windowActionBarOverlay}
{@link #AppCompatTheme_windowActionModeOverlay com.documentscanner:windowActionModeOverlay}
{@link #AppCompatTheme_windowFixedHeightMajor com.documentscanner:windowFixedHeightMajor}
{@link #AppCompatTheme_windowFixedHeightMinor com.documentscanner:windowFixedHeightMinor}
{@link #AppCompatTheme_windowFixedWidthMajor com.documentscanner:windowFixedWidthMajor}
{@link #AppCompatTheme_windowFixedWidthMinor com.documentscanner:windowFixedWidthMinor}
{@link #AppCompatTheme_windowMinWidthMajor com.documentscanner:windowMinWidthMajor}
{@link #AppCompatTheme_windowMinWidthMinor com.documentscanner:windowMinWidthMinor}
{@link #AppCompatTheme_windowNoTitle com.documentscanner:windowNoTitle}
+ @see #AppCompatTheme_actionBarDivider + @see #AppCompatTheme_actionBarItemBackground + @see #AppCompatTheme_actionBarPopupTheme + @see #AppCompatTheme_actionBarSize + @see #AppCompatTheme_actionBarSplitStyle + @see #AppCompatTheme_actionBarStyle + @see #AppCompatTheme_actionBarTabBarStyle + @see #AppCompatTheme_actionBarTabStyle + @see #AppCompatTheme_actionBarTabTextStyle + @see #AppCompatTheme_actionBarTheme + @see #AppCompatTheme_actionBarWidgetTheme + @see #AppCompatTheme_actionButtonStyle + @see #AppCompatTheme_actionDropDownStyle + @see #AppCompatTheme_actionMenuTextAppearance + @see #AppCompatTheme_actionMenuTextColor + @see #AppCompatTheme_actionModeBackground + @see #AppCompatTheme_actionModeCloseButtonStyle + @see #AppCompatTheme_actionModeCloseDrawable + @see #AppCompatTheme_actionModeCopyDrawable + @see #AppCompatTheme_actionModeCutDrawable + @see #AppCompatTheme_actionModeFindDrawable + @see #AppCompatTheme_actionModePasteDrawable + @see #AppCompatTheme_actionModePopupWindowStyle + @see #AppCompatTheme_actionModeSelectAllDrawable + @see #AppCompatTheme_actionModeShareDrawable + @see #AppCompatTheme_actionModeSplitBackground + @see #AppCompatTheme_actionModeStyle + @see #AppCompatTheme_actionModeWebSearchDrawable + @see #AppCompatTheme_actionOverflowButtonStyle + @see #AppCompatTheme_actionOverflowMenuStyle + @see #AppCompatTheme_activityChooserViewStyle + @see #AppCompatTheme_alertDialogButtonGroupStyle + @see #AppCompatTheme_alertDialogCenterButtons + @see #AppCompatTheme_alertDialogStyle + @see #AppCompatTheme_alertDialogTheme + @see #AppCompatTheme_android_windowAnimationStyle + @see #AppCompatTheme_android_windowIsFloating + @see #AppCompatTheme_autoCompleteTextViewStyle + @see #AppCompatTheme_borderlessButtonStyle + @see #AppCompatTheme_buttonBarButtonStyle + @see #AppCompatTheme_buttonBarNegativeButtonStyle + @see #AppCompatTheme_buttonBarNeutralButtonStyle + @see #AppCompatTheme_buttonBarPositiveButtonStyle + @see #AppCompatTheme_buttonBarStyle + @see #AppCompatTheme_buttonStyle + @see #AppCompatTheme_buttonStyleSmall + @see #AppCompatTheme_checkboxStyle + @see #AppCompatTheme_checkedTextViewStyle + @see #AppCompatTheme_colorAccent + @see #AppCompatTheme_colorButtonNormal + @see #AppCompatTheme_colorControlActivated + @see #AppCompatTheme_colorControlHighlight + @see #AppCompatTheme_colorControlNormal + @see #AppCompatTheme_colorPrimary + @see #AppCompatTheme_colorPrimaryDark + @see #AppCompatTheme_colorSwitchThumbNormal + @see #AppCompatTheme_controlBackground + @see #AppCompatTheme_dialogPreferredPadding + @see #AppCompatTheme_dialogTheme + @see #AppCompatTheme_dividerHorizontal + @see #AppCompatTheme_dividerVertical + @see #AppCompatTheme_dropDownListViewStyle + @see #AppCompatTheme_dropdownListPreferredItemHeight + @see #AppCompatTheme_editTextBackground + @see #AppCompatTheme_editTextColor + @see #AppCompatTheme_editTextStyle + @see #AppCompatTheme_homeAsUpIndicator + @see #AppCompatTheme_imageButtonStyle + @see #AppCompatTheme_listChoiceBackgroundIndicator + @see #AppCompatTheme_listDividerAlertDialog + @see #AppCompatTheme_listPopupWindowStyle + @see #AppCompatTheme_listPreferredItemHeight + @see #AppCompatTheme_listPreferredItemHeightLarge + @see #AppCompatTheme_listPreferredItemHeightSmall + @see #AppCompatTheme_listPreferredItemPaddingLeft + @see #AppCompatTheme_listPreferredItemPaddingRight + @see #AppCompatTheme_panelBackground + @see #AppCompatTheme_panelMenuListTheme + @see #AppCompatTheme_panelMenuListWidth + @see #AppCompatTheme_popupMenuStyle + @see #AppCompatTheme_popupWindowStyle + @see #AppCompatTheme_radioButtonStyle + @see #AppCompatTheme_ratingBarStyle + @see #AppCompatTheme_ratingBarStyleIndicator + @see #AppCompatTheme_ratingBarStyleSmall + @see #AppCompatTheme_searchViewStyle + @see #AppCompatTheme_seekBarStyle + @see #AppCompatTheme_selectableItemBackground + @see #AppCompatTheme_selectableItemBackgroundBorderless + @see #AppCompatTheme_spinnerDropDownItemStyle + @see #AppCompatTheme_spinnerStyle + @see #AppCompatTheme_switchStyle + @see #AppCompatTheme_textAppearanceLargePopupMenu + @see #AppCompatTheme_textAppearanceListItem + @see #AppCompatTheme_textAppearanceListItemSmall + @see #AppCompatTheme_textAppearanceSearchResultSubtitle + @see #AppCompatTheme_textAppearanceSearchResultTitle + @see #AppCompatTheme_textAppearanceSmallPopupMenu + @see #AppCompatTheme_textColorAlertDialogListItem + @see #AppCompatTheme_textColorSearchUrl + @see #AppCompatTheme_toolbarNavigationButtonStyle + @see #AppCompatTheme_toolbarStyle + @see #AppCompatTheme_windowActionBar + @see #AppCompatTheme_windowActionBarOverlay + @see #AppCompatTheme_windowActionModeOverlay + @see #AppCompatTheme_windowFixedHeightMajor + @see #AppCompatTheme_windowFixedHeightMinor + @see #AppCompatTheme_windowFixedWidthMajor + @see #AppCompatTheme_windowFixedWidthMinor + @see #AppCompatTheme_windowMinWidthMajor + @see #AppCompatTheme_windowMinWidthMinor + @see #AppCompatTheme_windowNoTitle + */ + 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 + }; + /** +

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.

+ ++++ + +
ConstantValueDescription
wrap_content0
+ @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. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #BottomSheetBehavior_Params_behavior_hideable com.documentscanner:behavior_hideable}
{@link #BottomSheetBehavior_Params_behavior_peekHeight com.documentscanner:behavior_peekHeight}
+ @see #BottomSheetBehavior_Params_behavior_hideable + @see #BottomSheetBehavior_Params_behavior_peekHeight + */ + public static final int[] BottomSheetBehavior_Params = { + 0x7f010097, 0x7f010098 + }; + /** +

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. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #ButtonBarContainerTheme_metaButtonBarButtonStyle com.documentscanner:metaButtonBarButtonStyle}
{@link #ButtonBarContainerTheme_metaButtonBarStyle com.documentscanner:metaButtonBarStyle}
+ @see #ButtonBarContainerTheme_metaButtonBarButtonStyle + @see #ButtonBarContainerTheme_metaButtonBarStyle + */ + public static final int[] ButtonBarContainerTheme = { + 0x7f010099, 0x7f01009a + }; + /** +

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. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ButtonBarLayout_allowStacking com.documentscanner:allowStacking}
+ @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. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #CameraBridgeViewBase_camera_id com.documentscanner:camera_id}
{@link #CameraBridgeViewBase_show_fps com.documentscanner:show_fps}
+ @see #CameraBridgeViewBase_camera_id + @see #CameraBridgeViewBase_show_fps + */ + public static final int[] CameraBridgeViewBase = { + 0x7f01009c, 0x7f01009d + }; + /** +

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.

+ ++++ + + + +
ConstantValueDescription
any-1
back99
front98
+ @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. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #CollapsingAppBarLayout_LayoutParams_layout_collapseMode com.documentscanner:layout_collapseMode}
{@link #CollapsingAppBarLayout_LayoutParams_layout_collapseParallaxMultiplier com.documentscanner:layout_collapseParallaxMultiplier}
+ @see #CollapsingAppBarLayout_LayoutParams_layout_collapseMode + @see #CollapsingAppBarLayout_LayoutParams_layout_collapseParallaxMultiplier + */ + public static final int[] CollapsingAppBarLayout_LayoutParams = { + 0x7f01009e, 0x7f01009f + }; + /** +

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.

+ ++++ + + + +
ConstantValueDescription
none0
pin1
parallax2
+ @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. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #CollapsingToolbarLayout_collapsedTitleGravity com.documentscanner:collapsedTitleGravity}
{@link #CollapsingToolbarLayout_collapsedTitleTextAppearance com.documentscanner:collapsedTitleTextAppearance}
{@link #CollapsingToolbarLayout_contentScrim com.documentscanner:contentScrim}
{@link #CollapsingToolbarLayout_expandedTitleGravity com.documentscanner:expandedTitleGravity}
{@link #CollapsingToolbarLayout_expandedTitleMargin com.documentscanner:expandedTitleMargin}
{@link #CollapsingToolbarLayout_expandedTitleMarginBottom com.documentscanner:expandedTitleMarginBottom}
{@link #CollapsingToolbarLayout_expandedTitleMarginEnd com.documentscanner:expandedTitleMarginEnd}
{@link #CollapsingToolbarLayout_expandedTitleMarginStart com.documentscanner:expandedTitleMarginStart}
{@link #CollapsingToolbarLayout_expandedTitleMarginTop com.documentscanner:expandedTitleMarginTop}
{@link #CollapsingToolbarLayout_expandedTitleTextAppearance com.documentscanner:expandedTitleTextAppearance}
{@link #CollapsingToolbarLayout_statusBarScrim com.documentscanner:statusBarScrim}
{@link #CollapsingToolbarLayout_title com.documentscanner:title}
{@link #CollapsingToolbarLayout_titleEnabled com.documentscanner:titleEnabled}
{@link #CollapsingToolbarLayout_toolbarId com.documentscanner:toolbarId}
+ @see #CollapsingToolbarLayout_collapsedTitleGravity + @see #CollapsingToolbarLayout_collapsedTitleTextAppearance + @see #CollapsingToolbarLayout_contentScrim + @see #CollapsingToolbarLayout_expandedTitleGravity + @see #CollapsingToolbarLayout_expandedTitleMargin + @see #CollapsingToolbarLayout_expandedTitleMarginBottom + @see #CollapsingToolbarLayout_expandedTitleMarginEnd + @see #CollapsingToolbarLayout_expandedTitleMarginStart + @see #CollapsingToolbarLayout_expandedTitleMarginTop + @see #CollapsingToolbarLayout_expandedTitleTextAppearance + @see #CollapsingToolbarLayout_statusBarScrim + @see #CollapsingToolbarLayout_title + @see #CollapsingToolbarLayout_titleEnabled + @see #CollapsingToolbarLayout_toolbarId + */ + public static final int[] CollapsingToolbarLayout = { + 0x7f010003, 0x7f0100a0, 0x7f0100a1, 0x7f0100a2, + 0x7f0100a3, 0x7f0100a4, 0x7f0100a5, 0x7f0100a6, + 0x7f0100a7, 0x7f0100a8, 0x7f0100a9, 0x7f0100aa, + 0x7f0100ab, 0x7f0100ac + }; + /** +

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.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ @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.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ @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. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #CompoundButton_android_button android:button}
{@link #CompoundButton_buttonTint com.documentscanner:buttonTint}
{@link #CompoundButton_buttonTintMode com.documentscanner:buttonTintMode}
+ @see #CompoundButton_android_button + @see #CompoundButton_buttonTint + @see #CompoundButton_buttonTintMode + */ + public static final int[] CompoundButton = { + 0x01010107, 0x7f0100ad, 0x7f0100ae + }; + /** +

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.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name com.documentscanner:buttonTintMode + */ + public static int CompoundButton_buttonTintMode = 2; + /** Attributes that can be used with a CoordinatorLayout. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #CoordinatorLayout_keylines com.documentscanner:keylines}
{@link #CoordinatorLayout_statusBarBackground com.documentscanner:statusBarBackground}
+ @see #CoordinatorLayout_keylines + @see #CoordinatorLayout_statusBarBackground + */ + public static final int[] CoordinatorLayout = { + 0x7f0100af, 0x7f0100b0 + }; + /** +

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. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #CoordinatorLayout_LayoutParams_android_layout_gravity android:layout_gravity}
{@link #CoordinatorLayout_LayoutParams_layout_anchor com.documentscanner:layout_anchor}
{@link #CoordinatorLayout_LayoutParams_layout_anchorGravity com.documentscanner:layout_anchorGravity}
{@link #CoordinatorLayout_LayoutParams_layout_behavior com.documentscanner:layout_behavior}
{@link #CoordinatorLayout_LayoutParams_layout_keyline com.documentscanner:layout_keyline}
+ @see #CoordinatorLayout_LayoutParams_android_layout_gravity + @see #CoordinatorLayout_LayoutParams_layout_anchor + @see #CoordinatorLayout_LayoutParams_layout_anchorGravity + @see #CoordinatorLayout_LayoutParams_layout_behavior + @see #CoordinatorLayout_LayoutParams_layout_keyline + */ + public static final int[] CoordinatorLayout_LayoutParams = { + 0x010100b3, 0x7f0100b1, 0x7f0100b2, 0x7f0100b3, + 0x7f0100b4 + }; + /** +

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.

+ ++++ + + + + + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
fill_horizontal0x07
center0x11
fill0x77
clip_vertical0x80
clip_horizontal0x08
start0x00800003
end0x00800005
+ @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. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #DesignTheme_bottomSheetDialogTheme com.documentscanner:bottomSheetDialogTheme}
{@link #DesignTheme_bottomSheetStyle com.documentscanner:bottomSheetStyle}
{@link #DesignTheme_textColorError com.documentscanner:textColorError}
+ @see #DesignTheme_bottomSheetDialogTheme + @see #DesignTheme_bottomSheetStyle + @see #DesignTheme_textColorError + */ + public static final int[] DesignTheme = { + 0x7f0100b5, 0x7f0100b6, 0x7f0100b7 + }; + /** +

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. +

Includes the following attributes:

+ + + + + + + + + + + + +
AttributeDescription
{@link #DrawerArrowToggle_arrowHeadLength com.documentscanner:arrowHeadLength}
{@link #DrawerArrowToggle_arrowShaftLength com.documentscanner:arrowShaftLength}
{@link #DrawerArrowToggle_barLength com.documentscanner:barLength}
{@link #DrawerArrowToggle_color com.documentscanner:color}
{@link #DrawerArrowToggle_drawableSize com.documentscanner:drawableSize}
{@link #DrawerArrowToggle_gapBetweenBars com.documentscanner:gapBetweenBars}
{@link #DrawerArrowToggle_spinBars com.documentscanner:spinBars}
{@link #DrawerArrowToggle_thickness com.documentscanner:thickness}
+ @see #DrawerArrowToggle_arrowHeadLength + @see #DrawerArrowToggle_arrowShaftLength + @see #DrawerArrowToggle_barLength + @see #DrawerArrowToggle_color + @see #DrawerArrowToggle_drawableSize + @see #DrawerArrowToggle_gapBetweenBars + @see #DrawerArrowToggle_spinBars + @see #DrawerArrowToggle_thickness + */ + public static final int[] DrawerArrowToggle = { + 0x7f0100b8, 0x7f0100b9, 0x7f0100ba, 0x7f0100bb, + 0x7f0100bc, 0x7f0100bd, 0x7f0100be, 0x7f0100bf + }; + /** +

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. +

Includes the following attributes:

+ + + + + + + + + + + + +
AttributeDescription
{@link #FloatingActionButton_backgroundTint com.documentscanner:backgroundTint}
{@link #FloatingActionButton_backgroundTintMode com.documentscanner:backgroundTintMode}
{@link #FloatingActionButton_borderWidth com.documentscanner:borderWidth}
{@link #FloatingActionButton_elevation com.documentscanner:elevation}
{@link #FloatingActionButton_fabSize com.documentscanner:fabSize}
{@link #FloatingActionButton_pressedTranslationZ com.documentscanner:pressedTranslationZ}
{@link #FloatingActionButton_rippleColor com.documentscanner:rippleColor}
{@link #FloatingActionButton_useCompatPadding com.documentscanner:useCompatPadding}
+ @see #FloatingActionButton_backgroundTint + @see #FloatingActionButton_backgroundTintMode + @see #FloatingActionButton_borderWidth + @see #FloatingActionButton_elevation + @see #FloatingActionButton_fabSize + @see #FloatingActionButton_pressedTranslationZ + @see #FloatingActionButton_rippleColor + @see #FloatingActionButton_useCompatPadding + */ + public static final int[] FloatingActionButton = { + 0x7f01001a, 0x7f0100c0, 0x7f0100c1, 0x7f0100c2, + 0x7f0100c3, 0x7f0100c4, 0x7f010134, 0x7f010135 + }; + /** +

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.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @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.

+ ++++ + + +
ConstantValueDescription
normal0
mini1
+ @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. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ForegroundLinearLayout_android_foreground android:foreground}
{@link #ForegroundLinearLayout_android_foregroundGravity android:foregroundGravity}
{@link #ForegroundLinearLayout_foregroundInsidePadding com.documentscanner:foregroundInsidePadding}
+ @see #ForegroundLinearLayout_android_foreground + @see #ForegroundLinearLayout_android_foregroundGravity + @see #ForegroundLinearLayout_foregroundInsidePadding + */ + public static final int[] ForegroundLinearLayout = { + 0x01010109, 0x01010200, 0x7f0100c5 + }; + /** +

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. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #GenericDraweeView_actualImageScaleType com.documentscanner:actualImageScaleType}
{@link #GenericDraweeView_backgroundImage com.documentscanner:backgroundImage}
{@link #GenericDraweeView_fadeDuration com.documentscanner:fadeDuration}
{@link #GenericDraweeView_failureImage com.documentscanner:failureImage}
{@link #GenericDraweeView_failureImageScaleType com.documentscanner:failureImageScaleType}
{@link #GenericDraweeView_overlayImage com.documentscanner:overlayImage}
{@link #GenericDraweeView_placeholderImage com.documentscanner:placeholderImage}
{@link #GenericDraweeView_placeholderImageScaleType com.documentscanner:placeholderImageScaleType}
{@link #GenericDraweeView_pressedStateOverlayImage com.documentscanner:pressedStateOverlayImage}
{@link #GenericDraweeView_progressBarAutoRotateInterval com.documentscanner:progressBarAutoRotateInterval}
{@link #GenericDraweeView_progressBarImage com.documentscanner:progressBarImage}
{@link #GenericDraweeView_progressBarImageScaleType com.documentscanner:progressBarImageScaleType}
{@link #GenericDraweeView_retryImage com.documentscanner:retryImage}
{@link #GenericDraweeView_retryImageScaleType com.documentscanner:retryImageScaleType}
{@link #GenericDraweeView_roundAsCircle com.documentscanner:roundAsCircle}
{@link #GenericDraweeView_roundBottomLeft com.documentscanner:roundBottomLeft}
{@link #GenericDraweeView_roundBottomRight com.documentscanner:roundBottomRight}
{@link #GenericDraweeView_roundTopLeft com.documentscanner:roundTopLeft}
{@link #GenericDraweeView_roundTopRight com.documentscanner:roundTopRight}
{@link #GenericDraweeView_roundWithOverlayColor com.documentscanner:roundWithOverlayColor}
{@link #GenericDraweeView_roundedCornerRadius com.documentscanner:roundedCornerRadius}
{@link #GenericDraweeView_roundingBorderColor com.documentscanner:roundingBorderColor}
{@link #GenericDraweeView_roundingBorderWidth com.documentscanner:roundingBorderWidth}
{@link #GenericDraweeView_viewAspectRatio com.documentscanner:viewAspectRatio}
+ @see #GenericDraweeView_actualImageScaleType + @see #GenericDraweeView_backgroundImage + @see #GenericDraweeView_fadeDuration + @see #GenericDraweeView_failureImage + @see #GenericDraweeView_failureImageScaleType + @see #GenericDraweeView_overlayImage + @see #GenericDraweeView_placeholderImage + @see #GenericDraweeView_placeholderImageScaleType + @see #GenericDraweeView_pressedStateOverlayImage + @see #GenericDraweeView_progressBarAutoRotateInterval + @see #GenericDraweeView_progressBarImage + @see #GenericDraweeView_progressBarImageScaleType + @see #GenericDraweeView_retryImage + @see #GenericDraweeView_retryImageScaleType + @see #GenericDraweeView_roundAsCircle + @see #GenericDraweeView_roundBottomLeft + @see #GenericDraweeView_roundBottomRight + @see #GenericDraweeView_roundTopLeft + @see #GenericDraweeView_roundTopRight + @see #GenericDraweeView_roundWithOverlayColor + @see #GenericDraweeView_roundedCornerRadius + @see #GenericDraweeView_roundingBorderColor + @see #GenericDraweeView_roundingBorderWidth + @see #GenericDraweeView_viewAspectRatio + */ + 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 + }; + /** +

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.

+ ++++ + + + + + + + + + +
ConstantValueDescription
none-1
fitXY0
fitStart1
fitCenter2
fitEnd3
center4
centerInside5
centerCrop6
focusCrop7
+ @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.

+ ++++ + + + + + + + + + +
ConstantValueDescription
none-1
fitXY0
fitStart1
fitCenter2
fitEnd3
center4
centerInside5
centerCrop6
focusCrop7
+ @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.

+ ++++ + + + + + + + + + +
ConstantValueDescription
none-1
fitXY0
fitStart1
fitCenter2
fitEnd3
center4
centerInside5
centerCrop6
focusCrop7
+ @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.

+ ++++ + + + + + + + + + +
ConstantValueDescription
none-1
fitXY0
fitStart1
fitCenter2
fitEnd3
center4
centerInside5
centerCrop6
focusCrop7
+ @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.

+ ++++ + + + + + + + + + +
ConstantValueDescription
none-1
fitXY0
fitStart1
fitCenter2
fitEnd3
center4
centerInside5
centerCrop6
focusCrop7
+ @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. +

Includes the following attributes:

+ + + + + + + + + + + + + +
AttributeDescription
{@link #LinearLayoutCompat_android_baselineAligned android:baselineAligned}
{@link #LinearLayoutCompat_android_baselineAlignedChildIndex android:baselineAlignedChildIndex}
{@link #LinearLayoutCompat_android_gravity android:gravity}
{@link #LinearLayoutCompat_android_orientation android:orientation}
{@link #LinearLayoutCompat_android_weightSum android:weightSum}
{@link #LinearLayoutCompat_divider com.documentscanner:divider}
{@link #LinearLayoutCompat_dividerPadding com.documentscanner:dividerPadding}
{@link #LinearLayoutCompat_measureWithLargestChild com.documentscanner:measureWithLargestChild}
{@link #LinearLayoutCompat_showDividers com.documentscanner:showDividers}
+ @see #LinearLayoutCompat_android_baselineAligned + @see #LinearLayoutCompat_android_baselineAlignedChildIndex + @see #LinearLayoutCompat_android_gravity + @see #LinearLayoutCompat_android_orientation + @see #LinearLayoutCompat_android_weightSum + @see #LinearLayoutCompat_divider + @see #LinearLayoutCompat_dividerPadding + @see #LinearLayoutCompat_measureWithLargestChild + @see #LinearLayoutCompat_showDividers + */ + public static final int[] LinearLayoutCompat = { + 0x010100af, 0x010100c4, 0x01010126, 0x01010127, + 0x01010128, 0x7f01000b, 0x7f0100de, 0x7f0100df, + 0x7f0100e0 + }; + /** +

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.

+ ++++ + + + + +
ConstantValueDescription
none0
beginning1
middle2
end4
+ @attr name com.documentscanner:showDividers + */ + public static int LinearLayoutCompat_showDividers = 7; + /** Attributes that can be used with a LinearLayoutCompat_Layout. +

Includes the following attributes:

+ + + + + + + + +
AttributeDescription
{@link #LinearLayoutCompat_Layout_android_layout_gravity android:layout_gravity}
{@link #LinearLayoutCompat_Layout_android_layout_height android:layout_height}
{@link #LinearLayoutCompat_Layout_android_layout_weight android:layout_weight}
{@link #LinearLayoutCompat_Layout_android_layout_width android:layout_width}
+ @see #LinearLayoutCompat_Layout_android_layout_gravity + @see #LinearLayoutCompat_Layout_android_layout_height + @see #LinearLayoutCompat_Layout_android_layout_weight + @see #LinearLayoutCompat_Layout_android_layout_width + */ + public static final int[] LinearLayoutCompat_Layout = { + 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 + }; + /** +

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. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #ListPopupWindow_android_dropDownHorizontalOffset android:dropDownHorizontalOffset}
{@link #ListPopupWindow_android_dropDownVerticalOffset android:dropDownVerticalOffset}
+ @see #ListPopupWindow_android_dropDownHorizontalOffset + @see #ListPopupWindow_android_dropDownVerticalOffset + */ + public static final int[] ListPopupWindow = { + 0x010102ac, 0x010102ad + }; + /** +

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. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #MenuGroup_android_checkableBehavior android:checkableBehavior}
{@link #MenuGroup_android_enabled android:enabled}
{@link #MenuGroup_android_id android:id}
{@link #MenuGroup_android_menuCategory android:menuCategory}
{@link #MenuGroup_android_orderInCategory android:orderInCategory}
{@link #MenuGroup_android_visible android:visible}
+ @see #MenuGroup_android_checkableBehavior + @see #MenuGroup_android_enabled + @see #MenuGroup_android_id + @see #MenuGroup_android_menuCategory + @see #MenuGroup_android_orderInCategory + @see #MenuGroup_android_visible + */ + public static final int[] MenuGroup = { + 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, + 0x010101df, 0x010101e0 + }; + /** +

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. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #MenuItem_actionLayout com.documentscanner:actionLayout}
{@link #MenuItem_actionProviderClass com.documentscanner:actionProviderClass}
{@link #MenuItem_actionViewClass com.documentscanner:actionViewClass}
{@link #MenuItem_android_alphabeticShortcut android:alphabeticShortcut}
{@link #MenuItem_android_checkable android:checkable}
{@link #MenuItem_android_checked android:checked}
{@link #MenuItem_android_enabled android:enabled}
{@link #MenuItem_android_icon android:icon}
{@link #MenuItem_android_id android:id}
{@link #MenuItem_android_menuCategory android:menuCategory}
{@link #MenuItem_android_numericShortcut android:numericShortcut}
{@link #MenuItem_android_onClick android:onClick}
{@link #MenuItem_android_orderInCategory android:orderInCategory}
{@link #MenuItem_android_title android:title}
{@link #MenuItem_android_titleCondensed android:titleCondensed}
{@link #MenuItem_android_visible android:visible}
{@link #MenuItem_showAsAction com.documentscanner:showAsAction}
+ @see #MenuItem_actionLayout + @see #MenuItem_actionProviderClass + @see #MenuItem_actionViewClass + @see #MenuItem_android_alphabeticShortcut + @see #MenuItem_android_checkable + @see #MenuItem_android_checked + @see #MenuItem_android_enabled + @see #MenuItem_android_icon + @see #MenuItem_android_id + @see #MenuItem_android_menuCategory + @see #MenuItem_android_numericShortcut + @see #MenuItem_android_onClick + @see #MenuItem_android_orderInCategory + @see #MenuItem_android_title + @see #MenuItem_android_titleCondensed + @see #MenuItem_android_visible + @see #MenuItem_showAsAction + */ + public static final int[] MenuItem = { + 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, + 0x01010194, 0x010101de, 0x010101df, 0x010101e1, + 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, + 0x0101026f, 0x7f0100e1, 0x7f0100e2, 0x7f0100e3, + 0x7f0100e4 + }; + /** +

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.

+ ++++ + + + + + +
ConstantValueDescription
never0
ifRoom1
always2
withText4
collapseActionView8
+ @attr name com.documentscanner:showAsAction + */ + public static int MenuItem_showAsAction = 13; + /** Attributes that can be used with a MenuView. +

Includes the following attributes:

+ + + + + + + + + + + + +
AttributeDescription
{@link #MenuView_android_headerBackground android:headerBackground}
{@link #MenuView_android_horizontalDivider android:horizontalDivider}
{@link #MenuView_android_itemBackground android:itemBackground}
{@link #MenuView_android_itemIconDisabledAlpha android:itemIconDisabledAlpha}
{@link #MenuView_android_itemTextAppearance android:itemTextAppearance}
{@link #MenuView_android_verticalDivider android:verticalDivider}
{@link #MenuView_android_windowAnimationStyle android:windowAnimationStyle}
{@link #MenuView_preserveIconSpacing com.documentscanner:preserveIconSpacing}
+ @see #MenuView_android_headerBackground + @see #MenuView_android_horizontalDivider + @see #MenuView_android_itemBackground + @see #MenuView_android_itemIconDisabledAlpha + @see #MenuView_android_itemTextAppearance + @see #MenuView_android_verticalDivider + @see #MenuView_android_windowAnimationStyle + @see #MenuView_preserveIconSpacing + */ + public static final int[] MenuView = { + 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, + 0x0101012f, 0x01010130, 0x01010131, 0x7f0100e5 + }; + /** +

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. +

Includes the following attributes:

+ + + + + + + + + + + + + + +
AttributeDescription
{@link #NavigationView_android_background android:background}
{@link #NavigationView_android_fitsSystemWindows android:fitsSystemWindows}
{@link #NavigationView_android_maxWidth android:maxWidth}
{@link #NavigationView_elevation com.documentscanner:elevation}
{@link #NavigationView_headerLayout com.documentscanner:headerLayout}
{@link #NavigationView_itemBackground com.documentscanner:itemBackground}
{@link #NavigationView_itemIconTint com.documentscanner:itemIconTint}
{@link #NavigationView_itemTextAppearance com.documentscanner:itemTextAppearance}
{@link #NavigationView_itemTextColor com.documentscanner:itemTextColor}
{@link #NavigationView_menu com.documentscanner:menu}
+ @see #NavigationView_android_background + @see #NavigationView_android_fitsSystemWindows + @see #NavigationView_android_maxWidth + @see #NavigationView_elevation + @see #NavigationView_headerLayout + @see #NavigationView_itemBackground + @see #NavigationView_itemIconTint + @see #NavigationView_itemTextAppearance + @see #NavigationView_itemTextColor + @see #NavigationView_menu + */ + public static final int[] NavigationView = { + 0x010100d4, 0x010100dd, 0x0101011f, 0x7f01001a, + 0x7f0100e6, 0x7f0100e7, 0x7f0100e8, 0x7f0100e9, + 0x7f0100ea, 0x7f0100eb + }; + /** +

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. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #PopupWindow_android_popupBackground android:popupBackground}
{@link #PopupWindow_overlapAnchor com.documentscanner:overlapAnchor}
+ @see #PopupWindow_android_popupBackground + @see #PopupWindow_overlapAnchor + */ + public static final int[] PopupWindow = { + 0x01010176, 0x7f0100ec + }; + /** +

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. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #PopupWindowBackgroundState_state_above_anchor com.documentscanner:state_above_anchor}
+ @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. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #RecyclerView_android_orientation android:orientation}
{@link #RecyclerView_layoutManager com.documentscanner:layoutManager}
{@link #RecyclerView_reverseLayout com.documentscanner:reverseLayout}
{@link #RecyclerView_spanCount com.documentscanner:spanCount}
{@link #RecyclerView_stackFromEnd com.documentscanner:stackFromEnd}
+ @see #RecyclerView_android_orientation + @see #RecyclerView_layoutManager + @see #RecyclerView_reverseLayout + @see #RecyclerView_spanCount + @see #RecyclerView_stackFromEnd + */ + public static final int[] RecyclerView = { + 0x010100c4, 0x7f0100ee, 0x7f0100ef, 0x7f0100f0, + 0x7f0100f1 + }; + /** +

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. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ScrimInsetsFrameLayout_insetForeground com.documentscanner:insetForeground}
+ @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. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ScrollingViewBehavior_Params_behavior_overlapTop com.documentscanner:behavior_overlapTop}
+ @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. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #SearchView_android_focusable android:focusable}
{@link #SearchView_android_imeOptions android:imeOptions}
{@link #SearchView_android_inputType android:inputType}
{@link #SearchView_android_maxWidth android:maxWidth}
{@link #SearchView_closeIcon com.documentscanner:closeIcon}
{@link #SearchView_commitIcon com.documentscanner:commitIcon}
{@link #SearchView_defaultQueryHint com.documentscanner:defaultQueryHint}
{@link #SearchView_goIcon com.documentscanner:goIcon}
{@link #SearchView_iconifiedByDefault com.documentscanner:iconifiedByDefault}
{@link #SearchView_layout com.documentscanner:layout}
{@link #SearchView_queryBackground com.documentscanner:queryBackground}
{@link #SearchView_queryHint com.documentscanner:queryHint}
{@link #SearchView_searchHintIcon com.documentscanner:searchHintIcon}
{@link #SearchView_searchIcon com.documentscanner:searchIcon}
{@link #SearchView_submitBackground com.documentscanner:submitBackground}
{@link #SearchView_suggestionRowLayout com.documentscanner:suggestionRowLayout}
{@link #SearchView_voiceIcon com.documentscanner:voiceIcon}
+ @see #SearchView_android_focusable + @see #SearchView_android_imeOptions + @see #SearchView_android_inputType + @see #SearchView_android_maxWidth + @see #SearchView_closeIcon + @see #SearchView_commitIcon + @see #SearchView_defaultQueryHint + @see #SearchView_goIcon + @see #SearchView_iconifiedByDefault + @see #SearchView_layout + @see #SearchView_queryBackground + @see #SearchView_queryHint + @see #SearchView_searchHintIcon + @see #SearchView_searchIcon + @see #SearchView_submitBackground + @see #SearchView_suggestionRowLayout + @see #SearchView_voiceIcon + */ + public static final int[] SearchView = { + 0x010100da, 0x0101011f, 0x01010220, 0x01010264, + 0x7f0100f4, 0x7f0100f5, 0x7f0100f6, 0x7f0100f7, + 0x7f0100f8, 0x7f0100f9, 0x7f0100fa, 0x7f0100fb, + 0x7f0100fc, 0x7f0100fd, 0x7f0100fe, 0x7f0100ff, + 0x7f010100 + }; + /** +

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. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #SnackbarLayout_android_maxWidth android:maxWidth}
{@link #SnackbarLayout_elevation com.documentscanner:elevation}
{@link #SnackbarLayout_maxActionInlineWidth com.documentscanner:maxActionInlineWidth}
+ @see #SnackbarLayout_android_maxWidth + @see #SnackbarLayout_elevation + @see #SnackbarLayout_maxActionInlineWidth + */ + public static final int[] SnackbarLayout = { + 0x0101011f, 0x7f01001a, 0x7f010101 + }; + /** +

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. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #Spinner_android_dropDownWidth android:dropDownWidth}
{@link #Spinner_android_entries android:entries}
{@link #Spinner_android_popupBackground android:popupBackground}
{@link #Spinner_android_prompt android:prompt}
{@link #Spinner_popupTheme com.documentscanner:popupTheme}
+ @see #Spinner_android_dropDownWidth + @see #Spinner_android_entries + @see #Spinner_android_popupBackground + @see #Spinner_android_prompt + @see #Spinner_popupTheme + */ + public static final int[] Spinner = { + 0x010100b2, 0x01010176, 0x0101017b, 0x01010262, + 0x7f01001b + }; + /** +

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. +

Includes the following attributes:

+ + + + + + + + + + + + + + +
AttributeDescription
{@link #SwitchCompat_android_textOff android:textOff}
{@link #SwitchCompat_android_textOn android:textOn}
{@link #SwitchCompat_android_thumb android:thumb}
{@link #SwitchCompat_showText com.documentscanner:showText}
{@link #SwitchCompat_splitTrack com.documentscanner:splitTrack}
{@link #SwitchCompat_switchMinWidth com.documentscanner:switchMinWidth}
{@link #SwitchCompat_switchPadding com.documentscanner:switchPadding}
{@link #SwitchCompat_switchTextAppearance com.documentscanner:switchTextAppearance}
{@link #SwitchCompat_thumbTextPadding com.documentscanner:thumbTextPadding}
{@link #SwitchCompat_track com.documentscanner:track}
+ @see #SwitchCompat_android_textOff + @see #SwitchCompat_android_textOn + @see #SwitchCompat_android_thumb + @see #SwitchCompat_showText + @see #SwitchCompat_splitTrack + @see #SwitchCompat_switchMinWidth + @see #SwitchCompat_switchPadding + @see #SwitchCompat_switchTextAppearance + @see #SwitchCompat_thumbTextPadding + @see #SwitchCompat_track + */ + public static final int[] SwitchCompat = { + 0x01010124, 0x01010125, 0x01010142, 0x7f010102, + 0x7f010103, 0x7f010104, 0x7f010105, 0x7f010106, + 0x7f010107, 0x7f010108 + }; + /** +

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. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #TabItem_android_icon android:icon}
{@link #TabItem_android_layout android:layout}
{@link #TabItem_android_text android:text}
+ @see #TabItem_android_icon + @see #TabItem_android_layout + @see #TabItem_android_text + */ + public static final int[] TabItem = { + 0x01010002, 0x010100f2, 0x0101014f + }; + /** +

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. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #TabLayout_tabBackground com.documentscanner:tabBackground}
{@link #TabLayout_tabContentStart com.documentscanner:tabContentStart}
{@link #TabLayout_tabGravity com.documentscanner:tabGravity}
{@link #TabLayout_tabIndicatorColor com.documentscanner:tabIndicatorColor}
{@link #TabLayout_tabIndicatorHeight com.documentscanner:tabIndicatorHeight}
{@link #TabLayout_tabMaxWidth com.documentscanner:tabMaxWidth}
{@link #TabLayout_tabMinWidth com.documentscanner:tabMinWidth}
{@link #TabLayout_tabMode com.documentscanner:tabMode}
{@link #TabLayout_tabPadding com.documentscanner:tabPadding}
{@link #TabLayout_tabPaddingBottom com.documentscanner:tabPaddingBottom}
{@link #TabLayout_tabPaddingEnd com.documentscanner:tabPaddingEnd}
{@link #TabLayout_tabPaddingStart com.documentscanner:tabPaddingStart}
{@link #TabLayout_tabPaddingTop com.documentscanner:tabPaddingTop}
{@link #TabLayout_tabSelectedTextColor com.documentscanner:tabSelectedTextColor}
{@link #TabLayout_tabTextAppearance com.documentscanner:tabTextAppearance}
{@link #TabLayout_tabTextColor com.documentscanner:tabTextColor}
+ @see #TabLayout_tabBackground + @see #TabLayout_tabContentStart + @see #TabLayout_tabGravity + @see #TabLayout_tabIndicatorColor + @see #TabLayout_tabIndicatorHeight + @see #TabLayout_tabMaxWidth + @see #TabLayout_tabMinWidth + @see #TabLayout_tabMode + @see #TabLayout_tabPadding + @see #TabLayout_tabPaddingBottom + @see #TabLayout_tabPaddingEnd + @see #TabLayout_tabPaddingStart + @see #TabLayout_tabPaddingTop + @see #TabLayout_tabSelectedTextColor + @see #TabLayout_tabTextAppearance + @see #TabLayout_tabTextColor + */ + public static final int[] TabLayout = { + 0x7f010109, 0x7f01010a, 0x7f01010b, 0x7f01010c, + 0x7f01010d, 0x7f01010e, 0x7f01010f, 0x7f010110, + 0x7f010111, 0x7f010112, 0x7f010113, 0x7f010114, + 0x7f010115, 0x7f010116, 0x7f010117, 0x7f010118 + }; + /** +

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.

+ ++++ + + +
ConstantValueDescription
fill0
center1
+ @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.

+ ++++ + + +
ConstantValueDescription
scrollable0
fixed1
+ @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. +

Includes the following attributes:

+ + + + + + + + + + + + + +
AttributeDescription
{@link #TextAppearance_android_shadowColor android:shadowColor}
{@link #TextAppearance_android_shadowDx android:shadowDx}
{@link #TextAppearance_android_shadowDy android:shadowDy}
{@link #TextAppearance_android_shadowRadius android:shadowRadius}
{@link #TextAppearance_android_textColor android:textColor}
{@link #TextAppearance_android_textSize android:textSize}
{@link #TextAppearance_android_textStyle android:textStyle}
{@link #TextAppearance_android_typeface android:typeface}
{@link #TextAppearance_textAllCaps com.documentscanner:textAllCaps}
+ @see #TextAppearance_android_shadowColor + @see #TextAppearance_android_shadowDx + @see #TextAppearance_android_shadowDy + @see #TextAppearance_android_shadowRadius + @see #TextAppearance_android_textColor + @see #TextAppearance_android_textSize + @see #TextAppearance_android_textStyle + @see #TextAppearance_android_typeface + @see #TextAppearance_textAllCaps + */ + public static final int[] TextAppearance = { + 0x01010095, 0x01010096, 0x01010097, 0x01010098, + 0x01010161, 0x01010162, 0x01010163, 0x01010164, + 0x7f010028 + }; + /** +

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. +

Includes the following attributes:

+ + + + + + + + + + + + + + + +
AttributeDescription
{@link #TextInputLayout_android_hint android:hint}
{@link #TextInputLayout_android_textColorHint android:textColorHint}
{@link #TextInputLayout_counterEnabled com.documentscanner:counterEnabled}
{@link #TextInputLayout_counterMaxLength com.documentscanner:counterMaxLength}
{@link #TextInputLayout_counterOverflowTextAppearance com.documentscanner:counterOverflowTextAppearance}
{@link #TextInputLayout_counterTextAppearance com.documentscanner:counterTextAppearance}
{@link #TextInputLayout_errorEnabled com.documentscanner:errorEnabled}
{@link #TextInputLayout_errorTextAppearance com.documentscanner:errorTextAppearance}
{@link #TextInputLayout_hintAnimationEnabled com.documentscanner:hintAnimationEnabled}
{@link #TextInputLayout_hintEnabled com.documentscanner:hintEnabled}
{@link #TextInputLayout_hintTextAppearance com.documentscanner:hintTextAppearance}
+ @see #TextInputLayout_android_hint + @see #TextInputLayout_android_textColorHint + @see #TextInputLayout_counterEnabled + @see #TextInputLayout_counterMaxLength + @see #TextInputLayout_counterOverflowTextAppearance + @see #TextInputLayout_counterTextAppearance + @see #TextInputLayout_errorEnabled + @see #TextInputLayout_errorTextAppearance + @see #TextInputLayout_hintAnimationEnabled + @see #TextInputLayout_hintEnabled + @see #TextInputLayout_hintTextAppearance + */ + public static final int[] TextInputLayout = { + 0x0101009a, 0x01010150, 0x7f010119, 0x7f01011a, + 0x7f01011b, 0x7f01011c, 0x7f01011d, 0x7f01011e, + 0x7f01011f, 0x7f010120, 0x7f010121 + }; + /** +

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. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #Toolbar_android_gravity android:gravity}
{@link #Toolbar_android_minHeight android:minHeight}
{@link #Toolbar_collapseContentDescription com.documentscanner:collapseContentDescription}
{@link #Toolbar_collapseIcon com.documentscanner:collapseIcon}
{@link #Toolbar_contentInsetEnd com.documentscanner:contentInsetEnd}
{@link #Toolbar_contentInsetLeft com.documentscanner:contentInsetLeft}
{@link #Toolbar_contentInsetRight com.documentscanner:contentInsetRight}
{@link #Toolbar_contentInsetStart com.documentscanner:contentInsetStart}
{@link #Toolbar_logo com.documentscanner:logo}
{@link #Toolbar_logoDescription com.documentscanner:logoDescription}
{@link #Toolbar_maxButtonHeight com.documentscanner:maxButtonHeight}
{@link #Toolbar_navigationContentDescription com.documentscanner:navigationContentDescription}
{@link #Toolbar_navigationIcon com.documentscanner:navigationIcon}
{@link #Toolbar_popupTheme com.documentscanner:popupTheme}
{@link #Toolbar_subtitle com.documentscanner:subtitle}
{@link #Toolbar_subtitleTextAppearance com.documentscanner:subtitleTextAppearance}
{@link #Toolbar_subtitleTextColor com.documentscanner:subtitleTextColor}
{@link #Toolbar_title com.documentscanner:title}
{@link #Toolbar_titleMarginBottom com.documentscanner:titleMarginBottom}
{@link #Toolbar_titleMarginEnd com.documentscanner:titleMarginEnd}
{@link #Toolbar_titleMarginStart com.documentscanner:titleMarginStart}
{@link #Toolbar_titleMarginTop com.documentscanner:titleMarginTop}
{@link #Toolbar_titleMargins com.documentscanner:titleMargins}
{@link #Toolbar_titleTextAppearance com.documentscanner:titleTextAppearance}
{@link #Toolbar_titleTextColor com.documentscanner:titleTextColor}
+ @see #Toolbar_android_gravity + @see #Toolbar_android_minHeight + @see #Toolbar_collapseContentDescription + @see #Toolbar_collapseIcon + @see #Toolbar_contentInsetEnd + @see #Toolbar_contentInsetLeft + @see #Toolbar_contentInsetRight + @see #Toolbar_contentInsetStart + @see #Toolbar_logo + @see #Toolbar_logoDescription + @see #Toolbar_maxButtonHeight + @see #Toolbar_navigationContentDescription + @see #Toolbar_navigationIcon + @see #Toolbar_popupTheme + @see #Toolbar_subtitle + @see #Toolbar_subtitleTextAppearance + @see #Toolbar_subtitleTextColor + @see #Toolbar_title + @see #Toolbar_titleMarginBottom + @see #Toolbar_titleMarginEnd + @see #Toolbar_titleMarginStart + @see #Toolbar_titleMarginTop + @see #Toolbar_titleMargins + @see #Toolbar_titleTextAppearance + @see #Toolbar_titleTextColor + */ + 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 + }; + /** +

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. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #View_android_focusable android:focusable}
{@link #View_android_theme android:theme}
{@link #View_paddingEnd com.documentscanner:paddingEnd}
{@link #View_paddingStart com.documentscanner:paddingStart}
{@link #View_theme com.documentscanner:theme}
+ @see #View_android_focusable + @see #View_android_theme + @see #View_paddingEnd + @see #View_paddingStart + @see #View_theme + */ + public static final int[] View = { + 0x01010000, 0x010100da, 0x7f010131, 0x7f010132, + 0x7f010133 + }; + /** +

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. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ViewBackgroundHelper_android_background android:background}
{@link #ViewBackgroundHelper_backgroundTint com.documentscanner:backgroundTint}
{@link #ViewBackgroundHelper_backgroundTintMode com.documentscanner:backgroundTintMode}
+ @see #ViewBackgroundHelper_android_background + @see #ViewBackgroundHelper_backgroundTint + @see #ViewBackgroundHelper_backgroundTintMode + */ + public static final int[] ViewBackgroundHelper = { + 0x010100d4, 0x7f010134, 0x7f010135 + }; + /** +

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.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name com.documentscanner:backgroundTintMode + */ + public static int ViewBackgroundHelper_backgroundTintMode = 2; + /** Attributes that can be used with a ViewStubCompat. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ViewStubCompat_android_id android:id}
{@link #ViewStubCompat_android_inflatedId android:inflatedId}
{@link #ViewStubCompat_android_layout android:layout}
+ @see #ViewStubCompat_android_id + @see #ViewStubCompat_android_inflatedId + @see #ViewStubCompat_android_layout + */ + public static final int[] ViewStubCompat = { + 0x010100d0, 0x010100f2, 0x010100f3 + }; + /** +

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.

+ ++++ + +
ConstantValueDescription
wrap_content0
+ */ + 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.

+ ++++ + + + + + + + + + +
ConstantValueDescription
none-1
fitXY0
fitStart1
fitCenter2
fitEnd3
center4
centerInside5
centerCrop6
focusCrop7
+ */ + 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.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ */ + 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.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ */ + 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.

+ ++++ + + + +
ConstantValueDescription
any-1
back99
front98
+ */ + 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.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ */ + 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.

+ ++++ + + + + + + + +
ConstantValueDescription
none0
useLogo0x1
showHome0x2
homeAsUp0x4
showTitle0x8
showCustom0x10
disableHome0x20
+ */ + 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.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ */ + 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.

+ ++++ + + +
ConstantValueDescription
normal0
mini1
+ */ + 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.

+ ++++ + + + + + + + + + +
ConstantValueDescription
none-1
fitXY0
fitStart1
fitCenter2
fitEnd3
center4
centerInside5
centerCrop6
focusCrop7
+ */ + 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.

+ ++++ + + + + + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
fill_horizontal0x07
center0x11
fill0x77
clip_vertical0x80
clip_horizontal0x08
start0x00800003
end0x00800005
+ */ + 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.

+ ++++ + + + +
ConstantValueDescription
none0
pin1
parallax2
+ */ + 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.

+ ++++ + + + + + +
ConstantValueDescription
scroll0x1
exitUntilCollapsed0x2
enterAlways0x4
enterAlwaysCollapsed0x8
snap0x10
+ */ + 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.

+ ++++ + + + +
ConstantValueDescription
normal0
listMode1
tabMode2
+ */ + 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.

+ ++++ + + + + + + + + + +
ConstantValueDescription
none-1
fitXY0
fitStart1
fitCenter2
fitEnd3
center4
centerInside5
centerCrop6
focusCrop7
+ */ + 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.

+ ++++ + + + + + + + + + +
ConstantValueDescription
none-1
fitXY0
fitStart1
fitCenter2
fitEnd3
center4
centerInside5
centerCrop6
focusCrop7
+ */ + 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.

+ ++++ + + + + + + + + + +
ConstantValueDescription
none-1
fitXY0
fitStart1
fitCenter2
fitEnd3
center4
centerInside5
centerCrop6
focusCrop7
+ */ + 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.

+ ++++ + + + + + +
ConstantValueDescription
never0
ifRoom1
always2
withText4
collapseActionView8
+ */ + public static int showAsAction=0x7f0100e1; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
none0
beginning1
middle2
end4
+ */ + 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.

+ ++++ + + +
ConstantValueDescription
fill0
center1
+ */ + 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.

+ ++++ + + +
ConstantValueDescription
scrollable0
fixed1
+ */ + 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. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #ActionBar_background com.documentscanner:background}
{@link #ActionBar_backgroundSplit com.documentscanner:backgroundSplit}
{@link #ActionBar_backgroundStacked com.documentscanner:backgroundStacked}
{@link #ActionBar_contentInsetEnd com.documentscanner:contentInsetEnd}
{@link #ActionBar_contentInsetLeft com.documentscanner:contentInsetLeft}
{@link #ActionBar_contentInsetRight com.documentscanner:contentInsetRight}
{@link #ActionBar_contentInsetStart com.documentscanner:contentInsetStart}
{@link #ActionBar_customNavigationLayout com.documentscanner:customNavigationLayout}
{@link #ActionBar_displayOptions com.documentscanner:displayOptions}
{@link #ActionBar_divider com.documentscanner:divider}
{@link #ActionBar_elevation com.documentscanner:elevation}
{@link #ActionBar_height com.documentscanner:height}
{@link #ActionBar_hideOnContentScroll com.documentscanner:hideOnContentScroll}
{@link #ActionBar_homeAsUpIndicator com.documentscanner:homeAsUpIndicator}
{@link #ActionBar_homeLayout com.documentscanner:homeLayout}
{@link #ActionBar_icon com.documentscanner:icon}
{@link #ActionBar_indeterminateProgressStyle com.documentscanner:indeterminateProgressStyle}
{@link #ActionBar_itemPadding com.documentscanner:itemPadding}
{@link #ActionBar_logo com.documentscanner:logo}
{@link #ActionBar_navigationMode com.documentscanner:navigationMode}
{@link #ActionBar_popupTheme com.documentscanner:popupTheme}
{@link #ActionBar_progressBarPadding com.documentscanner:progressBarPadding}
{@link #ActionBar_progressBarStyle com.documentscanner:progressBarStyle}
{@link #ActionBar_subtitle com.documentscanner:subtitle}
{@link #ActionBar_subtitleTextStyle com.documentscanner:subtitleTextStyle}
{@link #ActionBar_title com.documentscanner:title}
{@link #ActionBar_titleTextStyle com.documentscanner:titleTextStyle}
+ @see #ActionBar_background + @see #ActionBar_backgroundSplit + @see #ActionBar_backgroundStacked + @see #ActionBar_contentInsetEnd + @see #ActionBar_contentInsetLeft + @see #ActionBar_contentInsetRight + @see #ActionBar_contentInsetStart + @see #ActionBar_customNavigationLayout + @see #ActionBar_displayOptions + @see #ActionBar_divider + @see #ActionBar_elevation + @see #ActionBar_height + @see #ActionBar_hideOnContentScroll + @see #ActionBar_homeAsUpIndicator + @see #ActionBar_homeLayout + @see #ActionBar_icon + @see #ActionBar_indeterminateProgressStyle + @see #ActionBar_itemPadding + @see #ActionBar_logo + @see #ActionBar_navigationMode + @see #ActionBar_popupTheme + @see #ActionBar_progressBarPadding + @see #ActionBar_progressBarStyle + @see #ActionBar_subtitle + @see #ActionBar_subtitleTextStyle + @see #ActionBar_title + @see #ActionBar_titleTextStyle + */ + 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 + }; + /** +

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.

+ ++++ + + + + + + + +
ConstantValueDescription
none0
useLogo0x1
showHome0x2
homeAsUp0x4
showTitle0x8
showCustom0x10
disableHome0x20
+ @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.

+ ++++ + + + +
ConstantValueDescription
normal0
listMode1
tabMode2
+ @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. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ActionBarLayout_android_layout_gravity android:layout_gravity}
+ @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. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ActionMenuItemView_android_minWidth android:minWidth}
+ @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. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #ActionMode_background com.documentscanner:background}
{@link #ActionMode_backgroundSplit com.documentscanner:backgroundSplit}
{@link #ActionMode_closeItemLayout com.documentscanner:closeItemLayout}
{@link #ActionMode_height com.documentscanner:height}
{@link #ActionMode_subtitleTextStyle com.documentscanner:subtitleTextStyle}
{@link #ActionMode_titleTextStyle com.documentscanner:titleTextStyle}
+ @see #ActionMode_background + @see #ActionMode_backgroundSplit + @see #ActionMode_closeItemLayout + @see #ActionMode_height + @see #ActionMode_subtitleTextStyle + @see #ActionMode_titleTextStyle + */ + public static final int[] ActionMode = { + 0x7f010001, 0x7f010007, 0x7f010008, 0x7f01000c, + 0x7f01000e, 0x7f01001c + }; + /** +

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. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #ActivityChooserView_expandActivityOverflowButtonDrawable com.documentscanner:expandActivityOverflowButtonDrawable}
{@link #ActivityChooserView_initialActivityCount com.documentscanner:initialActivityCount}
+ @see #ActivityChooserView_expandActivityOverflowButtonDrawable + @see #ActivityChooserView_initialActivityCount + */ + public static final int[] ActivityChooserView = { + 0x7f01001d, 0x7f01001e + }; + /** +

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. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #AlertDialog_android_layout android:layout}
{@link #AlertDialog_buttonPanelSideLayout com.documentscanner:buttonPanelSideLayout}
{@link #AlertDialog_listItemLayout com.documentscanner:listItemLayout}
{@link #AlertDialog_listLayout com.documentscanner:listLayout}
{@link #AlertDialog_multiChoiceItemLayout com.documentscanner:multiChoiceItemLayout}
{@link #AlertDialog_singleChoiceItemLayout com.documentscanner:singleChoiceItemLayout}
+ @see #AlertDialog_android_layout + @see #AlertDialog_buttonPanelSideLayout + @see #AlertDialog_listItemLayout + @see #AlertDialog_listLayout + @see #AlertDialog_multiChoiceItemLayout + @see #AlertDialog_singleChoiceItemLayout + */ + public static final int[] AlertDialog = { + 0x010100f2, 0x7f01001f, 0x7f010020, 0x7f010021, + 0x7f010022, 0x7f010023 + }; + /** +

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. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #AppBarLayout_android_background android:background}
{@link #AppBarLayout_elevation com.documentscanner:elevation}
{@link #AppBarLayout_expanded com.documentscanner:expanded}
+ @see #AppBarLayout_android_background + @see #AppBarLayout_elevation + @see #AppBarLayout_expanded + */ + public static final int[] AppBarLayout = { + 0x010100d4, 0x7f01001a, 0x7f010024 + }; + /** +

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. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #AppBarLayout_LayoutParams_layout_scrollFlags com.documentscanner:layout_scrollFlags}
{@link #AppBarLayout_LayoutParams_layout_scrollInterpolator com.documentscanner:layout_scrollInterpolator}
+ @see #AppBarLayout_LayoutParams_layout_scrollFlags + @see #AppBarLayout_LayoutParams_layout_scrollInterpolator + */ + public static final int[] AppBarLayout_LayoutParams = { + 0x7f010025, 0x7f010026 + }; + /** +

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.

+ ++++ + + + + + +
ConstantValueDescription
scroll0x1
exitUntilCollapsed0x2
enterAlways0x4
enterAlwaysCollapsed0x8
snap0x10
+ @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. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #AppCompatImageView_android_src android:src}
{@link #AppCompatImageView_srcCompat com.documentscanner:srcCompat}
+ @see #AppCompatImageView_android_src + @see #AppCompatImageView_srcCompat + */ + public static final int[] AppCompatImageView = { + 0x01010119, 0x7f010027 + }; + /** +

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. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #AppCompatTextView_android_textAppearance android:textAppearance}
{@link #AppCompatTextView_textAllCaps com.documentscanner:textAllCaps}
+ @see #AppCompatTextView_android_textAppearance + @see #AppCompatTextView_textAllCaps + */ + public static final int[] AppCompatTextView = { + 0x01010034, 0x7f010028 + }; + /** +

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. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #AppCompatTheme_actionBarDivider com.documentscanner:actionBarDivider}
{@link #AppCompatTheme_actionBarItemBackground com.documentscanner:actionBarItemBackground}
{@link #AppCompatTheme_actionBarPopupTheme com.documentscanner:actionBarPopupTheme}
{@link #AppCompatTheme_actionBarSize com.documentscanner:actionBarSize}
{@link #AppCompatTheme_actionBarSplitStyle com.documentscanner:actionBarSplitStyle}
{@link #AppCompatTheme_actionBarStyle com.documentscanner:actionBarStyle}
{@link #AppCompatTheme_actionBarTabBarStyle com.documentscanner:actionBarTabBarStyle}
{@link #AppCompatTheme_actionBarTabStyle com.documentscanner:actionBarTabStyle}
{@link #AppCompatTheme_actionBarTabTextStyle com.documentscanner:actionBarTabTextStyle}
{@link #AppCompatTheme_actionBarTheme com.documentscanner:actionBarTheme}
{@link #AppCompatTheme_actionBarWidgetTheme com.documentscanner:actionBarWidgetTheme}
{@link #AppCompatTheme_actionButtonStyle com.documentscanner:actionButtonStyle}
{@link #AppCompatTheme_actionDropDownStyle com.documentscanner:actionDropDownStyle}
{@link #AppCompatTheme_actionMenuTextAppearance com.documentscanner:actionMenuTextAppearance}
{@link #AppCompatTheme_actionMenuTextColor com.documentscanner:actionMenuTextColor}
{@link #AppCompatTheme_actionModeBackground com.documentscanner:actionModeBackground}
{@link #AppCompatTheme_actionModeCloseButtonStyle com.documentscanner:actionModeCloseButtonStyle}
{@link #AppCompatTheme_actionModeCloseDrawable com.documentscanner:actionModeCloseDrawable}
{@link #AppCompatTheme_actionModeCopyDrawable com.documentscanner:actionModeCopyDrawable}
{@link #AppCompatTheme_actionModeCutDrawable com.documentscanner:actionModeCutDrawable}
{@link #AppCompatTheme_actionModeFindDrawable com.documentscanner:actionModeFindDrawable}
{@link #AppCompatTheme_actionModePasteDrawable com.documentscanner:actionModePasteDrawable}
{@link #AppCompatTheme_actionModePopupWindowStyle com.documentscanner:actionModePopupWindowStyle}
{@link #AppCompatTheme_actionModeSelectAllDrawable com.documentscanner:actionModeSelectAllDrawable}
{@link #AppCompatTheme_actionModeShareDrawable com.documentscanner:actionModeShareDrawable}
{@link #AppCompatTheme_actionModeSplitBackground com.documentscanner:actionModeSplitBackground}
{@link #AppCompatTheme_actionModeStyle com.documentscanner:actionModeStyle}
{@link #AppCompatTheme_actionModeWebSearchDrawable com.documentscanner:actionModeWebSearchDrawable}
{@link #AppCompatTheme_actionOverflowButtonStyle com.documentscanner:actionOverflowButtonStyle}
{@link #AppCompatTheme_actionOverflowMenuStyle com.documentscanner:actionOverflowMenuStyle}
{@link #AppCompatTheme_activityChooserViewStyle com.documentscanner:activityChooserViewStyle}
{@link #AppCompatTheme_alertDialogButtonGroupStyle com.documentscanner:alertDialogButtonGroupStyle}
{@link #AppCompatTheme_alertDialogCenterButtons com.documentscanner:alertDialogCenterButtons}
{@link #AppCompatTheme_alertDialogStyle com.documentscanner:alertDialogStyle}
{@link #AppCompatTheme_alertDialogTheme com.documentscanner:alertDialogTheme}
{@link #AppCompatTheme_android_windowAnimationStyle android:windowAnimationStyle}
{@link #AppCompatTheme_android_windowIsFloating android:windowIsFloating}
{@link #AppCompatTheme_autoCompleteTextViewStyle com.documentscanner:autoCompleteTextViewStyle}
{@link #AppCompatTheme_borderlessButtonStyle com.documentscanner:borderlessButtonStyle}
{@link #AppCompatTheme_buttonBarButtonStyle com.documentscanner:buttonBarButtonStyle}
{@link #AppCompatTheme_buttonBarNegativeButtonStyle com.documentscanner:buttonBarNegativeButtonStyle}
{@link #AppCompatTheme_buttonBarNeutralButtonStyle com.documentscanner:buttonBarNeutralButtonStyle}
{@link #AppCompatTheme_buttonBarPositiveButtonStyle com.documentscanner:buttonBarPositiveButtonStyle}
{@link #AppCompatTheme_buttonBarStyle com.documentscanner:buttonBarStyle}
{@link #AppCompatTheme_buttonStyle com.documentscanner:buttonStyle}
{@link #AppCompatTheme_buttonStyleSmall com.documentscanner:buttonStyleSmall}
{@link #AppCompatTheme_checkboxStyle com.documentscanner:checkboxStyle}
{@link #AppCompatTheme_checkedTextViewStyle com.documentscanner:checkedTextViewStyle}
{@link #AppCompatTheme_colorAccent com.documentscanner:colorAccent}
{@link #AppCompatTheme_colorButtonNormal com.documentscanner:colorButtonNormal}
{@link #AppCompatTheme_colorControlActivated com.documentscanner:colorControlActivated}
{@link #AppCompatTheme_colorControlHighlight com.documentscanner:colorControlHighlight}
{@link #AppCompatTheme_colorControlNormal com.documentscanner:colorControlNormal}
{@link #AppCompatTheme_colorPrimary com.documentscanner:colorPrimary}
{@link #AppCompatTheme_colorPrimaryDark com.documentscanner:colorPrimaryDark}
{@link #AppCompatTheme_colorSwitchThumbNormal com.documentscanner:colorSwitchThumbNormal}
{@link #AppCompatTheme_controlBackground com.documentscanner:controlBackground}
{@link #AppCompatTheme_dialogPreferredPadding com.documentscanner:dialogPreferredPadding}
{@link #AppCompatTheme_dialogTheme com.documentscanner:dialogTheme}
{@link #AppCompatTheme_dividerHorizontal com.documentscanner:dividerHorizontal}
{@link #AppCompatTheme_dividerVertical com.documentscanner:dividerVertical}
{@link #AppCompatTheme_dropDownListViewStyle com.documentscanner:dropDownListViewStyle}
{@link #AppCompatTheme_dropdownListPreferredItemHeight com.documentscanner:dropdownListPreferredItemHeight}
{@link #AppCompatTheme_editTextBackground com.documentscanner:editTextBackground}
{@link #AppCompatTheme_editTextColor com.documentscanner:editTextColor}
{@link #AppCompatTheme_editTextStyle com.documentscanner:editTextStyle}
{@link #AppCompatTheme_homeAsUpIndicator com.documentscanner:homeAsUpIndicator}
{@link #AppCompatTheme_imageButtonStyle com.documentscanner:imageButtonStyle}
{@link #AppCompatTheme_listChoiceBackgroundIndicator com.documentscanner:listChoiceBackgroundIndicator}
{@link #AppCompatTheme_listDividerAlertDialog com.documentscanner:listDividerAlertDialog}
{@link #AppCompatTheme_listPopupWindowStyle com.documentscanner:listPopupWindowStyle}
{@link #AppCompatTheme_listPreferredItemHeight com.documentscanner:listPreferredItemHeight}
{@link #AppCompatTheme_listPreferredItemHeightLarge com.documentscanner:listPreferredItemHeightLarge}
{@link #AppCompatTheme_listPreferredItemHeightSmall com.documentscanner:listPreferredItemHeightSmall}
{@link #AppCompatTheme_listPreferredItemPaddingLeft com.documentscanner:listPreferredItemPaddingLeft}
{@link #AppCompatTheme_listPreferredItemPaddingRight com.documentscanner:listPreferredItemPaddingRight}
{@link #AppCompatTheme_panelBackground com.documentscanner:panelBackground}
{@link #AppCompatTheme_panelMenuListTheme com.documentscanner:panelMenuListTheme}
{@link #AppCompatTheme_panelMenuListWidth com.documentscanner:panelMenuListWidth}
{@link #AppCompatTheme_popupMenuStyle com.documentscanner:popupMenuStyle}
{@link #AppCompatTheme_popupWindowStyle com.documentscanner:popupWindowStyle}
{@link #AppCompatTheme_radioButtonStyle com.documentscanner:radioButtonStyle}
{@link #AppCompatTheme_ratingBarStyle com.documentscanner:ratingBarStyle}
{@link #AppCompatTheme_ratingBarStyleIndicator com.documentscanner:ratingBarStyleIndicator}
{@link #AppCompatTheme_ratingBarStyleSmall com.documentscanner:ratingBarStyleSmall}
{@link #AppCompatTheme_searchViewStyle com.documentscanner:searchViewStyle}
{@link #AppCompatTheme_seekBarStyle com.documentscanner:seekBarStyle}
{@link #AppCompatTheme_selectableItemBackground com.documentscanner:selectableItemBackground}
{@link #AppCompatTheme_selectableItemBackgroundBorderless com.documentscanner:selectableItemBackgroundBorderless}
{@link #AppCompatTheme_spinnerDropDownItemStyle com.documentscanner:spinnerDropDownItemStyle}
{@link #AppCompatTheme_spinnerStyle com.documentscanner:spinnerStyle}
{@link #AppCompatTheme_switchStyle com.documentscanner:switchStyle}
{@link #AppCompatTheme_textAppearanceLargePopupMenu com.documentscanner:textAppearanceLargePopupMenu}
{@link #AppCompatTheme_textAppearanceListItem com.documentscanner:textAppearanceListItem}
{@link #AppCompatTheme_textAppearanceListItemSmall com.documentscanner:textAppearanceListItemSmall}
{@link #AppCompatTheme_textAppearanceSearchResultSubtitle com.documentscanner:textAppearanceSearchResultSubtitle}
{@link #AppCompatTheme_textAppearanceSearchResultTitle com.documentscanner:textAppearanceSearchResultTitle}
{@link #AppCompatTheme_textAppearanceSmallPopupMenu com.documentscanner:textAppearanceSmallPopupMenu}
{@link #AppCompatTheme_textColorAlertDialogListItem com.documentscanner:textColorAlertDialogListItem}
{@link #AppCompatTheme_textColorSearchUrl com.documentscanner:textColorSearchUrl}
{@link #AppCompatTheme_toolbarNavigationButtonStyle com.documentscanner:toolbarNavigationButtonStyle}
{@link #AppCompatTheme_toolbarStyle com.documentscanner:toolbarStyle}
{@link #AppCompatTheme_windowActionBar com.documentscanner:windowActionBar}
{@link #AppCompatTheme_windowActionBarOverlay com.documentscanner:windowActionBarOverlay}
{@link #AppCompatTheme_windowActionModeOverlay com.documentscanner:windowActionModeOverlay}
{@link #AppCompatTheme_windowFixedHeightMajor com.documentscanner:windowFixedHeightMajor}
{@link #AppCompatTheme_windowFixedHeightMinor com.documentscanner:windowFixedHeightMinor}
{@link #AppCompatTheme_windowFixedWidthMajor com.documentscanner:windowFixedWidthMajor}
{@link #AppCompatTheme_windowFixedWidthMinor com.documentscanner:windowFixedWidthMinor}
{@link #AppCompatTheme_windowMinWidthMajor com.documentscanner:windowMinWidthMajor}
{@link #AppCompatTheme_windowMinWidthMinor com.documentscanner:windowMinWidthMinor}
{@link #AppCompatTheme_windowNoTitle com.documentscanner:windowNoTitle}
+ @see #AppCompatTheme_actionBarDivider + @see #AppCompatTheme_actionBarItemBackground + @see #AppCompatTheme_actionBarPopupTheme + @see #AppCompatTheme_actionBarSize + @see #AppCompatTheme_actionBarSplitStyle + @see #AppCompatTheme_actionBarStyle + @see #AppCompatTheme_actionBarTabBarStyle + @see #AppCompatTheme_actionBarTabStyle + @see #AppCompatTheme_actionBarTabTextStyle + @see #AppCompatTheme_actionBarTheme + @see #AppCompatTheme_actionBarWidgetTheme + @see #AppCompatTheme_actionButtonStyle + @see #AppCompatTheme_actionDropDownStyle + @see #AppCompatTheme_actionMenuTextAppearance + @see #AppCompatTheme_actionMenuTextColor + @see #AppCompatTheme_actionModeBackground + @see #AppCompatTheme_actionModeCloseButtonStyle + @see #AppCompatTheme_actionModeCloseDrawable + @see #AppCompatTheme_actionModeCopyDrawable + @see #AppCompatTheme_actionModeCutDrawable + @see #AppCompatTheme_actionModeFindDrawable + @see #AppCompatTheme_actionModePasteDrawable + @see #AppCompatTheme_actionModePopupWindowStyle + @see #AppCompatTheme_actionModeSelectAllDrawable + @see #AppCompatTheme_actionModeShareDrawable + @see #AppCompatTheme_actionModeSplitBackground + @see #AppCompatTheme_actionModeStyle + @see #AppCompatTheme_actionModeWebSearchDrawable + @see #AppCompatTheme_actionOverflowButtonStyle + @see #AppCompatTheme_actionOverflowMenuStyle + @see #AppCompatTheme_activityChooserViewStyle + @see #AppCompatTheme_alertDialogButtonGroupStyle + @see #AppCompatTheme_alertDialogCenterButtons + @see #AppCompatTheme_alertDialogStyle + @see #AppCompatTheme_alertDialogTheme + @see #AppCompatTheme_android_windowAnimationStyle + @see #AppCompatTheme_android_windowIsFloating + @see #AppCompatTheme_autoCompleteTextViewStyle + @see #AppCompatTheme_borderlessButtonStyle + @see #AppCompatTheme_buttonBarButtonStyle + @see #AppCompatTheme_buttonBarNegativeButtonStyle + @see #AppCompatTheme_buttonBarNeutralButtonStyle + @see #AppCompatTheme_buttonBarPositiveButtonStyle + @see #AppCompatTheme_buttonBarStyle + @see #AppCompatTheme_buttonStyle + @see #AppCompatTheme_buttonStyleSmall + @see #AppCompatTheme_checkboxStyle + @see #AppCompatTheme_checkedTextViewStyle + @see #AppCompatTheme_colorAccent + @see #AppCompatTheme_colorButtonNormal + @see #AppCompatTheme_colorControlActivated + @see #AppCompatTheme_colorControlHighlight + @see #AppCompatTheme_colorControlNormal + @see #AppCompatTheme_colorPrimary + @see #AppCompatTheme_colorPrimaryDark + @see #AppCompatTheme_colorSwitchThumbNormal + @see #AppCompatTheme_controlBackground + @see #AppCompatTheme_dialogPreferredPadding + @see #AppCompatTheme_dialogTheme + @see #AppCompatTheme_dividerHorizontal + @see #AppCompatTheme_dividerVertical + @see #AppCompatTheme_dropDownListViewStyle + @see #AppCompatTheme_dropdownListPreferredItemHeight + @see #AppCompatTheme_editTextBackground + @see #AppCompatTheme_editTextColor + @see #AppCompatTheme_editTextStyle + @see #AppCompatTheme_homeAsUpIndicator + @see #AppCompatTheme_imageButtonStyle + @see #AppCompatTheme_listChoiceBackgroundIndicator + @see #AppCompatTheme_listDividerAlertDialog + @see #AppCompatTheme_listPopupWindowStyle + @see #AppCompatTheme_listPreferredItemHeight + @see #AppCompatTheme_listPreferredItemHeightLarge + @see #AppCompatTheme_listPreferredItemHeightSmall + @see #AppCompatTheme_listPreferredItemPaddingLeft + @see #AppCompatTheme_listPreferredItemPaddingRight + @see #AppCompatTheme_panelBackground + @see #AppCompatTheme_panelMenuListTheme + @see #AppCompatTheme_panelMenuListWidth + @see #AppCompatTheme_popupMenuStyle + @see #AppCompatTheme_popupWindowStyle + @see #AppCompatTheme_radioButtonStyle + @see #AppCompatTheme_ratingBarStyle + @see #AppCompatTheme_ratingBarStyleIndicator + @see #AppCompatTheme_ratingBarStyleSmall + @see #AppCompatTheme_searchViewStyle + @see #AppCompatTheme_seekBarStyle + @see #AppCompatTheme_selectableItemBackground + @see #AppCompatTheme_selectableItemBackgroundBorderless + @see #AppCompatTheme_spinnerDropDownItemStyle + @see #AppCompatTheme_spinnerStyle + @see #AppCompatTheme_switchStyle + @see #AppCompatTheme_textAppearanceLargePopupMenu + @see #AppCompatTheme_textAppearanceListItem + @see #AppCompatTheme_textAppearanceListItemSmall + @see #AppCompatTheme_textAppearanceSearchResultSubtitle + @see #AppCompatTheme_textAppearanceSearchResultTitle + @see #AppCompatTheme_textAppearanceSmallPopupMenu + @see #AppCompatTheme_textColorAlertDialogListItem + @see #AppCompatTheme_textColorSearchUrl + @see #AppCompatTheme_toolbarNavigationButtonStyle + @see #AppCompatTheme_toolbarStyle + @see #AppCompatTheme_windowActionBar + @see #AppCompatTheme_windowActionBarOverlay + @see #AppCompatTheme_windowActionModeOverlay + @see #AppCompatTheme_windowFixedHeightMajor + @see #AppCompatTheme_windowFixedHeightMinor + @see #AppCompatTheme_windowFixedWidthMajor + @see #AppCompatTheme_windowFixedWidthMinor + @see #AppCompatTheme_windowMinWidthMajor + @see #AppCompatTheme_windowMinWidthMinor + @see #AppCompatTheme_windowNoTitle + */ + 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 + }; + /** +

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.

+ ++++ + +
ConstantValueDescription
wrap_content0
+ @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. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #BottomSheetBehavior_Params_behavior_hideable com.documentscanner:behavior_hideable}
{@link #BottomSheetBehavior_Params_behavior_peekHeight com.documentscanner:behavior_peekHeight}
+ @see #BottomSheetBehavior_Params_behavior_hideable + @see #BottomSheetBehavior_Params_behavior_peekHeight + */ + public static final int[] BottomSheetBehavior_Params = { + 0x7f010097, 0x7f010098 + }; + /** +

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. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #ButtonBarContainerTheme_metaButtonBarButtonStyle com.documentscanner:metaButtonBarButtonStyle}
{@link #ButtonBarContainerTheme_metaButtonBarStyle com.documentscanner:metaButtonBarStyle}
+ @see #ButtonBarContainerTheme_metaButtonBarButtonStyle + @see #ButtonBarContainerTheme_metaButtonBarStyle + */ + public static final int[] ButtonBarContainerTheme = { + 0x7f010099, 0x7f01009a + }; + /** +

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. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ButtonBarLayout_allowStacking com.documentscanner:allowStacking}
+ @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. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #CameraBridgeViewBase_camera_id com.documentscanner:camera_id}
{@link #CameraBridgeViewBase_show_fps com.documentscanner:show_fps}
+ @see #CameraBridgeViewBase_camera_id + @see #CameraBridgeViewBase_show_fps + */ + public static final int[] CameraBridgeViewBase = { + 0x7f01009c, 0x7f01009d + }; + /** +

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.

+ ++++ + + + +
ConstantValueDescription
any-1
back99
front98
+ @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. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #CollapsingAppBarLayout_LayoutParams_layout_collapseMode com.documentscanner:layout_collapseMode}
{@link #CollapsingAppBarLayout_LayoutParams_layout_collapseParallaxMultiplier com.documentscanner:layout_collapseParallaxMultiplier}
+ @see #CollapsingAppBarLayout_LayoutParams_layout_collapseMode + @see #CollapsingAppBarLayout_LayoutParams_layout_collapseParallaxMultiplier + */ + public static final int[] CollapsingAppBarLayout_LayoutParams = { + 0x7f01009e, 0x7f01009f + }; + /** +

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.

+ ++++ + + + +
ConstantValueDescription
none0
pin1
parallax2
+ @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. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #CollapsingToolbarLayout_collapsedTitleGravity com.documentscanner:collapsedTitleGravity}
{@link #CollapsingToolbarLayout_collapsedTitleTextAppearance com.documentscanner:collapsedTitleTextAppearance}
{@link #CollapsingToolbarLayout_contentScrim com.documentscanner:contentScrim}
{@link #CollapsingToolbarLayout_expandedTitleGravity com.documentscanner:expandedTitleGravity}
{@link #CollapsingToolbarLayout_expandedTitleMargin com.documentscanner:expandedTitleMargin}
{@link #CollapsingToolbarLayout_expandedTitleMarginBottom com.documentscanner:expandedTitleMarginBottom}
{@link #CollapsingToolbarLayout_expandedTitleMarginEnd com.documentscanner:expandedTitleMarginEnd}
{@link #CollapsingToolbarLayout_expandedTitleMarginStart com.documentscanner:expandedTitleMarginStart}
{@link #CollapsingToolbarLayout_expandedTitleMarginTop com.documentscanner:expandedTitleMarginTop}
{@link #CollapsingToolbarLayout_expandedTitleTextAppearance com.documentscanner:expandedTitleTextAppearance}
{@link #CollapsingToolbarLayout_statusBarScrim com.documentscanner:statusBarScrim}
{@link #CollapsingToolbarLayout_title com.documentscanner:title}
{@link #CollapsingToolbarLayout_titleEnabled com.documentscanner:titleEnabled}
{@link #CollapsingToolbarLayout_toolbarId com.documentscanner:toolbarId}
+ @see #CollapsingToolbarLayout_collapsedTitleGravity + @see #CollapsingToolbarLayout_collapsedTitleTextAppearance + @see #CollapsingToolbarLayout_contentScrim + @see #CollapsingToolbarLayout_expandedTitleGravity + @see #CollapsingToolbarLayout_expandedTitleMargin + @see #CollapsingToolbarLayout_expandedTitleMarginBottom + @see #CollapsingToolbarLayout_expandedTitleMarginEnd + @see #CollapsingToolbarLayout_expandedTitleMarginStart + @see #CollapsingToolbarLayout_expandedTitleMarginTop + @see #CollapsingToolbarLayout_expandedTitleTextAppearance + @see #CollapsingToolbarLayout_statusBarScrim + @see #CollapsingToolbarLayout_title + @see #CollapsingToolbarLayout_titleEnabled + @see #CollapsingToolbarLayout_toolbarId + */ + public static final int[] CollapsingToolbarLayout = { + 0x7f010003, 0x7f0100a0, 0x7f0100a1, 0x7f0100a2, + 0x7f0100a3, 0x7f0100a4, 0x7f0100a5, 0x7f0100a6, + 0x7f0100a7, 0x7f0100a8, 0x7f0100a9, 0x7f0100aa, + 0x7f0100ab, 0x7f0100ac + }; + /** +

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.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ @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.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ @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. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #CompoundButton_android_button android:button}
{@link #CompoundButton_buttonTint com.documentscanner:buttonTint}
{@link #CompoundButton_buttonTintMode com.documentscanner:buttonTintMode}
+ @see #CompoundButton_android_button + @see #CompoundButton_buttonTint + @see #CompoundButton_buttonTintMode + */ + public static final int[] CompoundButton = { + 0x01010107, 0x7f0100ad, 0x7f0100ae + }; + /** +

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.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name com.documentscanner:buttonTintMode + */ + public static int CompoundButton_buttonTintMode = 2; + /** Attributes that can be used with a CoordinatorLayout. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #CoordinatorLayout_keylines com.documentscanner:keylines}
{@link #CoordinatorLayout_statusBarBackground com.documentscanner:statusBarBackground}
+ @see #CoordinatorLayout_keylines + @see #CoordinatorLayout_statusBarBackground + */ + public static final int[] CoordinatorLayout = { + 0x7f0100af, 0x7f0100b0 + }; + /** +

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. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #CoordinatorLayout_LayoutParams_android_layout_gravity android:layout_gravity}
{@link #CoordinatorLayout_LayoutParams_layout_anchor com.documentscanner:layout_anchor}
{@link #CoordinatorLayout_LayoutParams_layout_anchorGravity com.documentscanner:layout_anchorGravity}
{@link #CoordinatorLayout_LayoutParams_layout_behavior com.documentscanner:layout_behavior}
{@link #CoordinatorLayout_LayoutParams_layout_keyline com.documentscanner:layout_keyline}
+ @see #CoordinatorLayout_LayoutParams_android_layout_gravity + @see #CoordinatorLayout_LayoutParams_layout_anchor + @see #CoordinatorLayout_LayoutParams_layout_anchorGravity + @see #CoordinatorLayout_LayoutParams_layout_behavior + @see #CoordinatorLayout_LayoutParams_layout_keyline + */ + public static final int[] CoordinatorLayout_LayoutParams = { + 0x010100b3, 0x7f0100b1, 0x7f0100b2, 0x7f0100b3, + 0x7f0100b4 + }; + /** +

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.

+ ++++ + + + + + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
fill_horizontal0x07
center0x11
fill0x77
clip_vertical0x80
clip_horizontal0x08
start0x00800003
end0x00800005
+ @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. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #DesignTheme_bottomSheetDialogTheme com.documentscanner:bottomSheetDialogTheme}
{@link #DesignTheme_bottomSheetStyle com.documentscanner:bottomSheetStyle}
{@link #DesignTheme_textColorError com.documentscanner:textColorError}
+ @see #DesignTheme_bottomSheetDialogTheme + @see #DesignTheme_bottomSheetStyle + @see #DesignTheme_textColorError + */ + public static final int[] DesignTheme = { + 0x7f0100b5, 0x7f0100b6, 0x7f0100b7 + }; + /** +

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. +

Includes the following attributes:

+ + + + + + + + + + + + +
AttributeDescription
{@link #DrawerArrowToggle_arrowHeadLength com.documentscanner:arrowHeadLength}
{@link #DrawerArrowToggle_arrowShaftLength com.documentscanner:arrowShaftLength}
{@link #DrawerArrowToggle_barLength com.documentscanner:barLength}
{@link #DrawerArrowToggle_color com.documentscanner:color}
{@link #DrawerArrowToggle_drawableSize com.documentscanner:drawableSize}
{@link #DrawerArrowToggle_gapBetweenBars com.documentscanner:gapBetweenBars}
{@link #DrawerArrowToggle_spinBars com.documentscanner:spinBars}
{@link #DrawerArrowToggle_thickness com.documentscanner:thickness}
+ @see #DrawerArrowToggle_arrowHeadLength + @see #DrawerArrowToggle_arrowShaftLength + @see #DrawerArrowToggle_barLength + @see #DrawerArrowToggle_color + @see #DrawerArrowToggle_drawableSize + @see #DrawerArrowToggle_gapBetweenBars + @see #DrawerArrowToggle_spinBars + @see #DrawerArrowToggle_thickness + */ + public static final int[] DrawerArrowToggle = { + 0x7f0100b8, 0x7f0100b9, 0x7f0100ba, 0x7f0100bb, + 0x7f0100bc, 0x7f0100bd, 0x7f0100be, 0x7f0100bf + }; + /** +

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. +

Includes the following attributes:

+ + + + + + + + + + + + +
AttributeDescription
{@link #FloatingActionButton_backgroundTint com.documentscanner:backgroundTint}
{@link #FloatingActionButton_backgroundTintMode com.documentscanner:backgroundTintMode}
{@link #FloatingActionButton_borderWidth com.documentscanner:borderWidth}
{@link #FloatingActionButton_elevation com.documentscanner:elevation}
{@link #FloatingActionButton_fabSize com.documentscanner:fabSize}
{@link #FloatingActionButton_pressedTranslationZ com.documentscanner:pressedTranslationZ}
{@link #FloatingActionButton_rippleColor com.documentscanner:rippleColor}
{@link #FloatingActionButton_useCompatPadding com.documentscanner:useCompatPadding}
+ @see #FloatingActionButton_backgroundTint + @see #FloatingActionButton_backgroundTintMode + @see #FloatingActionButton_borderWidth + @see #FloatingActionButton_elevation + @see #FloatingActionButton_fabSize + @see #FloatingActionButton_pressedTranslationZ + @see #FloatingActionButton_rippleColor + @see #FloatingActionButton_useCompatPadding + */ + public static final int[] FloatingActionButton = { + 0x7f01001a, 0x7f0100c0, 0x7f0100c1, 0x7f0100c2, + 0x7f0100c3, 0x7f0100c4, 0x7f010134, 0x7f010135 + }; + /** +

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.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @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.

+ ++++ + + +
ConstantValueDescription
normal0
mini1
+ @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. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ForegroundLinearLayout_android_foreground android:foreground}
{@link #ForegroundLinearLayout_android_foregroundGravity android:foregroundGravity}
{@link #ForegroundLinearLayout_foregroundInsidePadding com.documentscanner:foregroundInsidePadding}
+ @see #ForegroundLinearLayout_android_foreground + @see #ForegroundLinearLayout_android_foregroundGravity + @see #ForegroundLinearLayout_foregroundInsidePadding + */ + public static final int[] ForegroundLinearLayout = { + 0x01010109, 0x01010200, 0x7f0100c5 + }; + /** +

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. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #GenericDraweeView_actualImageScaleType com.documentscanner:actualImageScaleType}
{@link #GenericDraweeView_backgroundImage com.documentscanner:backgroundImage}
{@link #GenericDraweeView_fadeDuration com.documentscanner:fadeDuration}
{@link #GenericDraweeView_failureImage com.documentscanner:failureImage}
{@link #GenericDraweeView_failureImageScaleType com.documentscanner:failureImageScaleType}
{@link #GenericDraweeView_overlayImage com.documentscanner:overlayImage}
{@link #GenericDraweeView_placeholderImage com.documentscanner:placeholderImage}
{@link #GenericDraweeView_placeholderImageScaleType com.documentscanner:placeholderImageScaleType}
{@link #GenericDraweeView_pressedStateOverlayImage com.documentscanner:pressedStateOverlayImage}
{@link #GenericDraweeView_progressBarAutoRotateInterval com.documentscanner:progressBarAutoRotateInterval}
{@link #GenericDraweeView_progressBarImage com.documentscanner:progressBarImage}
{@link #GenericDraweeView_progressBarImageScaleType com.documentscanner:progressBarImageScaleType}
{@link #GenericDraweeView_retryImage com.documentscanner:retryImage}
{@link #GenericDraweeView_retryImageScaleType com.documentscanner:retryImageScaleType}
{@link #GenericDraweeView_roundAsCircle com.documentscanner:roundAsCircle}
{@link #GenericDraweeView_roundBottomLeft com.documentscanner:roundBottomLeft}
{@link #GenericDraweeView_roundBottomRight com.documentscanner:roundBottomRight}
{@link #GenericDraweeView_roundTopLeft com.documentscanner:roundTopLeft}
{@link #GenericDraweeView_roundTopRight com.documentscanner:roundTopRight}
{@link #GenericDraweeView_roundWithOverlayColor com.documentscanner:roundWithOverlayColor}
{@link #GenericDraweeView_roundedCornerRadius com.documentscanner:roundedCornerRadius}
{@link #GenericDraweeView_roundingBorderColor com.documentscanner:roundingBorderColor}
{@link #GenericDraweeView_roundingBorderWidth com.documentscanner:roundingBorderWidth}
{@link #GenericDraweeView_viewAspectRatio com.documentscanner:viewAspectRatio}
+ @see #GenericDraweeView_actualImageScaleType + @see #GenericDraweeView_backgroundImage + @see #GenericDraweeView_fadeDuration + @see #GenericDraweeView_failureImage + @see #GenericDraweeView_failureImageScaleType + @see #GenericDraweeView_overlayImage + @see #GenericDraweeView_placeholderImage + @see #GenericDraweeView_placeholderImageScaleType + @see #GenericDraweeView_pressedStateOverlayImage + @see #GenericDraweeView_progressBarAutoRotateInterval + @see #GenericDraweeView_progressBarImage + @see #GenericDraweeView_progressBarImageScaleType + @see #GenericDraweeView_retryImage + @see #GenericDraweeView_retryImageScaleType + @see #GenericDraweeView_roundAsCircle + @see #GenericDraweeView_roundBottomLeft + @see #GenericDraweeView_roundBottomRight + @see #GenericDraweeView_roundTopLeft + @see #GenericDraweeView_roundTopRight + @see #GenericDraweeView_roundWithOverlayColor + @see #GenericDraweeView_roundedCornerRadius + @see #GenericDraweeView_roundingBorderColor + @see #GenericDraweeView_roundingBorderWidth + @see #GenericDraweeView_viewAspectRatio + */ + 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 + }; + /** +

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.

+ ++++ + + + + + + + + + +
ConstantValueDescription
none-1
fitXY0
fitStart1
fitCenter2
fitEnd3
center4
centerInside5
centerCrop6
focusCrop7
+ @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.

+ ++++ + + + + + + + + + +
ConstantValueDescription
none-1
fitXY0
fitStart1
fitCenter2
fitEnd3
center4
centerInside5
centerCrop6
focusCrop7
+ @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.

+ ++++ + + + + + + + + + +
ConstantValueDescription
none-1
fitXY0
fitStart1
fitCenter2
fitEnd3
center4
centerInside5
centerCrop6
focusCrop7
+ @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.

+ ++++ + + + + + + + + + +
ConstantValueDescription
none-1
fitXY0
fitStart1
fitCenter2
fitEnd3
center4
centerInside5
centerCrop6
focusCrop7
+ @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.

+ ++++ + + + + + + + + + +
ConstantValueDescription
none-1
fitXY0
fitStart1
fitCenter2
fitEnd3
center4
centerInside5
centerCrop6
focusCrop7
+ @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. +

Includes the following attributes:

+ + + + + + + + + + + + + +
AttributeDescription
{@link #LinearLayoutCompat_android_baselineAligned android:baselineAligned}
{@link #LinearLayoutCompat_android_baselineAlignedChildIndex android:baselineAlignedChildIndex}
{@link #LinearLayoutCompat_android_gravity android:gravity}
{@link #LinearLayoutCompat_android_orientation android:orientation}
{@link #LinearLayoutCompat_android_weightSum android:weightSum}
{@link #LinearLayoutCompat_divider com.documentscanner:divider}
{@link #LinearLayoutCompat_dividerPadding com.documentscanner:dividerPadding}
{@link #LinearLayoutCompat_measureWithLargestChild com.documentscanner:measureWithLargestChild}
{@link #LinearLayoutCompat_showDividers com.documentscanner:showDividers}
+ @see #LinearLayoutCompat_android_baselineAligned + @see #LinearLayoutCompat_android_baselineAlignedChildIndex + @see #LinearLayoutCompat_android_gravity + @see #LinearLayoutCompat_android_orientation + @see #LinearLayoutCompat_android_weightSum + @see #LinearLayoutCompat_divider + @see #LinearLayoutCompat_dividerPadding + @see #LinearLayoutCompat_measureWithLargestChild + @see #LinearLayoutCompat_showDividers + */ + public static final int[] LinearLayoutCompat = { + 0x010100af, 0x010100c4, 0x01010126, 0x01010127, + 0x01010128, 0x7f01000b, 0x7f0100de, 0x7f0100df, + 0x7f0100e0 + }; + /** +

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.

+ ++++ + + + + +
ConstantValueDescription
none0
beginning1
middle2
end4
+ @attr name com.documentscanner:showDividers + */ + public static int LinearLayoutCompat_showDividers = 7; + /** Attributes that can be used with a LinearLayoutCompat_Layout. +

Includes the following attributes:

+ + + + + + + + +
AttributeDescription
{@link #LinearLayoutCompat_Layout_android_layout_gravity android:layout_gravity}
{@link #LinearLayoutCompat_Layout_android_layout_height android:layout_height}
{@link #LinearLayoutCompat_Layout_android_layout_weight android:layout_weight}
{@link #LinearLayoutCompat_Layout_android_layout_width android:layout_width}
+ @see #LinearLayoutCompat_Layout_android_layout_gravity + @see #LinearLayoutCompat_Layout_android_layout_height + @see #LinearLayoutCompat_Layout_android_layout_weight + @see #LinearLayoutCompat_Layout_android_layout_width + */ + public static final int[] LinearLayoutCompat_Layout = { + 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 + }; + /** +

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. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #ListPopupWindow_android_dropDownHorizontalOffset android:dropDownHorizontalOffset}
{@link #ListPopupWindow_android_dropDownVerticalOffset android:dropDownVerticalOffset}
+ @see #ListPopupWindow_android_dropDownHorizontalOffset + @see #ListPopupWindow_android_dropDownVerticalOffset + */ + public static final int[] ListPopupWindow = { + 0x010102ac, 0x010102ad + }; + /** +

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. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #MenuGroup_android_checkableBehavior android:checkableBehavior}
{@link #MenuGroup_android_enabled android:enabled}
{@link #MenuGroup_android_id android:id}
{@link #MenuGroup_android_menuCategory android:menuCategory}
{@link #MenuGroup_android_orderInCategory android:orderInCategory}
{@link #MenuGroup_android_visible android:visible}
+ @see #MenuGroup_android_checkableBehavior + @see #MenuGroup_android_enabled + @see #MenuGroup_android_id + @see #MenuGroup_android_menuCategory + @see #MenuGroup_android_orderInCategory + @see #MenuGroup_android_visible + */ + public static final int[] MenuGroup = { + 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, + 0x010101df, 0x010101e0 + }; + /** +

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. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #MenuItem_actionLayout com.documentscanner:actionLayout}
{@link #MenuItem_actionProviderClass com.documentscanner:actionProviderClass}
{@link #MenuItem_actionViewClass com.documentscanner:actionViewClass}
{@link #MenuItem_android_alphabeticShortcut android:alphabeticShortcut}
{@link #MenuItem_android_checkable android:checkable}
{@link #MenuItem_android_checked android:checked}
{@link #MenuItem_android_enabled android:enabled}
{@link #MenuItem_android_icon android:icon}
{@link #MenuItem_android_id android:id}
{@link #MenuItem_android_menuCategory android:menuCategory}
{@link #MenuItem_android_numericShortcut android:numericShortcut}
{@link #MenuItem_android_onClick android:onClick}
{@link #MenuItem_android_orderInCategory android:orderInCategory}
{@link #MenuItem_android_title android:title}
{@link #MenuItem_android_titleCondensed android:titleCondensed}
{@link #MenuItem_android_visible android:visible}
{@link #MenuItem_showAsAction com.documentscanner:showAsAction}
+ @see #MenuItem_actionLayout + @see #MenuItem_actionProviderClass + @see #MenuItem_actionViewClass + @see #MenuItem_android_alphabeticShortcut + @see #MenuItem_android_checkable + @see #MenuItem_android_checked + @see #MenuItem_android_enabled + @see #MenuItem_android_icon + @see #MenuItem_android_id + @see #MenuItem_android_menuCategory + @see #MenuItem_android_numericShortcut + @see #MenuItem_android_onClick + @see #MenuItem_android_orderInCategory + @see #MenuItem_android_title + @see #MenuItem_android_titleCondensed + @see #MenuItem_android_visible + @see #MenuItem_showAsAction + */ + public static final int[] MenuItem = { + 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, + 0x01010194, 0x010101de, 0x010101df, 0x010101e1, + 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, + 0x0101026f, 0x7f0100e1, 0x7f0100e2, 0x7f0100e3, + 0x7f0100e4 + }; + /** +

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.

+ ++++ + + + + + +
ConstantValueDescription
never0
ifRoom1
always2
withText4
collapseActionView8
+ @attr name com.documentscanner:showAsAction + */ + public static int MenuItem_showAsAction = 13; + /** Attributes that can be used with a MenuView. +

Includes the following attributes:

+ + + + + + + + + + + + +
AttributeDescription
{@link #MenuView_android_headerBackground android:headerBackground}
{@link #MenuView_android_horizontalDivider android:horizontalDivider}
{@link #MenuView_android_itemBackground android:itemBackground}
{@link #MenuView_android_itemIconDisabledAlpha android:itemIconDisabledAlpha}
{@link #MenuView_android_itemTextAppearance android:itemTextAppearance}
{@link #MenuView_android_verticalDivider android:verticalDivider}
{@link #MenuView_android_windowAnimationStyle android:windowAnimationStyle}
{@link #MenuView_preserveIconSpacing com.documentscanner:preserveIconSpacing}
+ @see #MenuView_android_headerBackground + @see #MenuView_android_horizontalDivider + @see #MenuView_android_itemBackground + @see #MenuView_android_itemIconDisabledAlpha + @see #MenuView_android_itemTextAppearance + @see #MenuView_android_verticalDivider + @see #MenuView_android_windowAnimationStyle + @see #MenuView_preserveIconSpacing + */ + public static final int[] MenuView = { + 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, + 0x0101012f, 0x01010130, 0x01010131, 0x7f0100e5 + }; + /** +

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. +

Includes the following attributes:

+ + + + + + + + + + + + + + +
AttributeDescription
{@link #NavigationView_android_background android:background}
{@link #NavigationView_android_fitsSystemWindows android:fitsSystemWindows}
{@link #NavigationView_android_maxWidth android:maxWidth}
{@link #NavigationView_elevation com.documentscanner:elevation}
{@link #NavigationView_headerLayout com.documentscanner:headerLayout}
{@link #NavigationView_itemBackground com.documentscanner:itemBackground}
{@link #NavigationView_itemIconTint com.documentscanner:itemIconTint}
{@link #NavigationView_itemTextAppearance com.documentscanner:itemTextAppearance}
{@link #NavigationView_itemTextColor com.documentscanner:itemTextColor}
{@link #NavigationView_menu com.documentscanner:menu}
+ @see #NavigationView_android_background + @see #NavigationView_android_fitsSystemWindows + @see #NavigationView_android_maxWidth + @see #NavigationView_elevation + @see #NavigationView_headerLayout + @see #NavigationView_itemBackground + @see #NavigationView_itemIconTint + @see #NavigationView_itemTextAppearance + @see #NavigationView_itemTextColor + @see #NavigationView_menu + */ + public static final int[] NavigationView = { + 0x010100d4, 0x010100dd, 0x0101011f, 0x7f01001a, + 0x7f0100e6, 0x7f0100e7, 0x7f0100e8, 0x7f0100e9, + 0x7f0100ea, 0x7f0100eb + }; + /** +

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. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #PopupWindow_android_popupBackground android:popupBackground}
{@link #PopupWindow_overlapAnchor com.documentscanner:overlapAnchor}
+ @see #PopupWindow_android_popupBackground + @see #PopupWindow_overlapAnchor + */ + public static final int[] PopupWindow = { + 0x01010176, 0x7f0100ec + }; + /** +

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. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #PopupWindowBackgroundState_state_above_anchor com.documentscanner:state_above_anchor}
+ @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. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #RecyclerView_android_orientation android:orientation}
{@link #RecyclerView_layoutManager com.documentscanner:layoutManager}
{@link #RecyclerView_reverseLayout com.documentscanner:reverseLayout}
{@link #RecyclerView_spanCount com.documentscanner:spanCount}
{@link #RecyclerView_stackFromEnd com.documentscanner:stackFromEnd}
+ @see #RecyclerView_android_orientation + @see #RecyclerView_layoutManager + @see #RecyclerView_reverseLayout + @see #RecyclerView_spanCount + @see #RecyclerView_stackFromEnd + */ + public static final int[] RecyclerView = { + 0x010100c4, 0x7f0100ee, 0x7f0100ef, 0x7f0100f0, + 0x7f0100f1 + }; + /** +

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. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ScrimInsetsFrameLayout_insetForeground com.documentscanner:insetForeground}
+ @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. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ScrollingViewBehavior_Params_behavior_overlapTop com.documentscanner:behavior_overlapTop}
+ @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. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #SearchView_android_focusable android:focusable}
{@link #SearchView_android_imeOptions android:imeOptions}
{@link #SearchView_android_inputType android:inputType}
{@link #SearchView_android_maxWidth android:maxWidth}
{@link #SearchView_closeIcon com.documentscanner:closeIcon}
{@link #SearchView_commitIcon com.documentscanner:commitIcon}
{@link #SearchView_defaultQueryHint com.documentscanner:defaultQueryHint}
{@link #SearchView_goIcon com.documentscanner:goIcon}
{@link #SearchView_iconifiedByDefault com.documentscanner:iconifiedByDefault}
{@link #SearchView_layout com.documentscanner:layout}
{@link #SearchView_queryBackground com.documentscanner:queryBackground}
{@link #SearchView_queryHint com.documentscanner:queryHint}
{@link #SearchView_searchHintIcon com.documentscanner:searchHintIcon}
{@link #SearchView_searchIcon com.documentscanner:searchIcon}
{@link #SearchView_submitBackground com.documentscanner:submitBackground}
{@link #SearchView_suggestionRowLayout com.documentscanner:suggestionRowLayout}
{@link #SearchView_voiceIcon com.documentscanner:voiceIcon}
+ @see #SearchView_android_focusable + @see #SearchView_android_imeOptions + @see #SearchView_android_inputType + @see #SearchView_android_maxWidth + @see #SearchView_closeIcon + @see #SearchView_commitIcon + @see #SearchView_defaultQueryHint + @see #SearchView_goIcon + @see #SearchView_iconifiedByDefault + @see #SearchView_layout + @see #SearchView_queryBackground + @see #SearchView_queryHint + @see #SearchView_searchHintIcon + @see #SearchView_searchIcon + @see #SearchView_submitBackground + @see #SearchView_suggestionRowLayout + @see #SearchView_voiceIcon + */ + public static final int[] SearchView = { + 0x010100da, 0x0101011f, 0x01010220, 0x01010264, + 0x7f0100f4, 0x7f0100f5, 0x7f0100f6, 0x7f0100f7, + 0x7f0100f8, 0x7f0100f9, 0x7f0100fa, 0x7f0100fb, + 0x7f0100fc, 0x7f0100fd, 0x7f0100fe, 0x7f0100ff, + 0x7f010100 + }; + /** +

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. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #SnackbarLayout_android_maxWidth android:maxWidth}
{@link #SnackbarLayout_elevation com.documentscanner:elevation}
{@link #SnackbarLayout_maxActionInlineWidth com.documentscanner:maxActionInlineWidth}
+ @see #SnackbarLayout_android_maxWidth + @see #SnackbarLayout_elevation + @see #SnackbarLayout_maxActionInlineWidth + */ + public static final int[] SnackbarLayout = { + 0x0101011f, 0x7f01001a, 0x7f010101 + }; + /** +

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. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #Spinner_android_dropDownWidth android:dropDownWidth}
{@link #Spinner_android_entries android:entries}
{@link #Spinner_android_popupBackground android:popupBackground}
{@link #Spinner_android_prompt android:prompt}
{@link #Spinner_popupTheme com.documentscanner:popupTheme}
+ @see #Spinner_android_dropDownWidth + @see #Spinner_android_entries + @see #Spinner_android_popupBackground + @see #Spinner_android_prompt + @see #Spinner_popupTheme + */ + public static final int[] Spinner = { + 0x010100b2, 0x01010176, 0x0101017b, 0x01010262, + 0x7f01001b + }; + /** +

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. +

Includes the following attributes:

+ + + + + + + + + + + + + + +
AttributeDescription
{@link #SwitchCompat_android_textOff android:textOff}
{@link #SwitchCompat_android_textOn android:textOn}
{@link #SwitchCompat_android_thumb android:thumb}
{@link #SwitchCompat_showText com.documentscanner:showText}
{@link #SwitchCompat_splitTrack com.documentscanner:splitTrack}
{@link #SwitchCompat_switchMinWidth com.documentscanner:switchMinWidth}
{@link #SwitchCompat_switchPadding com.documentscanner:switchPadding}
{@link #SwitchCompat_switchTextAppearance com.documentscanner:switchTextAppearance}
{@link #SwitchCompat_thumbTextPadding com.documentscanner:thumbTextPadding}
{@link #SwitchCompat_track com.documentscanner:track}
+ @see #SwitchCompat_android_textOff + @see #SwitchCompat_android_textOn + @see #SwitchCompat_android_thumb + @see #SwitchCompat_showText + @see #SwitchCompat_splitTrack + @see #SwitchCompat_switchMinWidth + @see #SwitchCompat_switchPadding + @see #SwitchCompat_switchTextAppearance + @see #SwitchCompat_thumbTextPadding + @see #SwitchCompat_track + */ + public static final int[] SwitchCompat = { + 0x01010124, 0x01010125, 0x01010142, 0x7f010102, + 0x7f010103, 0x7f010104, 0x7f010105, 0x7f010106, + 0x7f010107, 0x7f010108 + }; + /** +

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. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #TabItem_android_icon android:icon}
{@link #TabItem_android_layout android:layout}
{@link #TabItem_android_text android:text}
+ @see #TabItem_android_icon + @see #TabItem_android_layout + @see #TabItem_android_text + */ + public static final int[] TabItem = { + 0x01010002, 0x010100f2, 0x0101014f + }; + /** +

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. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #TabLayout_tabBackground com.documentscanner:tabBackground}
{@link #TabLayout_tabContentStart com.documentscanner:tabContentStart}
{@link #TabLayout_tabGravity com.documentscanner:tabGravity}
{@link #TabLayout_tabIndicatorColor com.documentscanner:tabIndicatorColor}
{@link #TabLayout_tabIndicatorHeight com.documentscanner:tabIndicatorHeight}
{@link #TabLayout_tabMaxWidth com.documentscanner:tabMaxWidth}
{@link #TabLayout_tabMinWidth com.documentscanner:tabMinWidth}
{@link #TabLayout_tabMode com.documentscanner:tabMode}
{@link #TabLayout_tabPadding com.documentscanner:tabPadding}
{@link #TabLayout_tabPaddingBottom com.documentscanner:tabPaddingBottom}
{@link #TabLayout_tabPaddingEnd com.documentscanner:tabPaddingEnd}
{@link #TabLayout_tabPaddingStart com.documentscanner:tabPaddingStart}
{@link #TabLayout_tabPaddingTop com.documentscanner:tabPaddingTop}
{@link #TabLayout_tabSelectedTextColor com.documentscanner:tabSelectedTextColor}
{@link #TabLayout_tabTextAppearance com.documentscanner:tabTextAppearance}
{@link #TabLayout_tabTextColor com.documentscanner:tabTextColor}
+ @see #TabLayout_tabBackground + @see #TabLayout_tabContentStart + @see #TabLayout_tabGravity + @see #TabLayout_tabIndicatorColor + @see #TabLayout_tabIndicatorHeight + @see #TabLayout_tabMaxWidth + @see #TabLayout_tabMinWidth + @see #TabLayout_tabMode + @see #TabLayout_tabPadding + @see #TabLayout_tabPaddingBottom + @see #TabLayout_tabPaddingEnd + @see #TabLayout_tabPaddingStart + @see #TabLayout_tabPaddingTop + @see #TabLayout_tabSelectedTextColor + @see #TabLayout_tabTextAppearance + @see #TabLayout_tabTextColor + */ + public static final int[] TabLayout = { + 0x7f010109, 0x7f01010a, 0x7f01010b, 0x7f01010c, + 0x7f01010d, 0x7f01010e, 0x7f01010f, 0x7f010110, + 0x7f010111, 0x7f010112, 0x7f010113, 0x7f010114, + 0x7f010115, 0x7f010116, 0x7f010117, 0x7f010118 + }; + /** +

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.

+ ++++ + + +
ConstantValueDescription
fill0
center1
+ @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.

+ ++++ + + +
ConstantValueDescription
scrollable0
fixed1
+ @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. +

Includes the following attributes:

+ + + + + + + + + + + + + +
AttributeDescription
{@link #TextAppearance_android_shadowColor android:shadowColor}
{@link #TextAppearance_android_shadowDx android:shadowDx}
{@link #TextAppearance_android_shadowDy android:shadowDy}
{@link #TextAppearance_android_shadowRadius android:shadowRadius}
{@link #TextAppearance_android_textColor android:textColor}
{@link #TextAppearance_android_textSize android:textSize}
{@link #TextAppearance_android_textStyle android:textStyle}
{@link #TextAppearance_android_typeface android:typeface}
{@link #TextAppearance_textAllCaps com.documentscanner:textAllCaps}
+ @see #TextAppearance_android_shadowColor + @see #TextAppearance_android_shadowDx + @see #TextAppearance_android_shadowDy + @see #TextAppearance_android_shadowRadius + @see #TextAppearance_android_textColor + @see #TextAppearance_android_textSize + @see #TextAppearance_android_textStyle + @see #TextAppearance_android_typeface + @see #TextAppearance_textAllCaps + */ + public static final int[] TextAppearance = { + 0x01010095, 0x01010096, 0x01010097, 0x01010098, + 0x01010161, 0x01010162, 0x01010163, 0x01010164, + 0x7f010028 + }; + /** +

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. +

Includes the following attributes:

+ + + + + + + + + + + + + + + +
AttributeDescription
{@link #TextInputLayout_android_hint android:hint}
{@link #TextInputLayout_android_textColorHint android:textColorHint}
{@link #TextInputLayout_counterEnabled com.documentscanner:counterEnabled}
{@link #TextInputLayout_counterMaxLength com.documentscanner:counterMaxLength}
{@link #TextInputLayout_counterOverflowTextAppearance com.documentscanner:counterOverflowTextAppearance}
{@link #TextInputLayout_counterTextAppearance com.documentscanner:counterTextAppearance}
{@link #TextInputLayout_errorEnabled com.documentscanner:errorEnabled}
{@link #TextInputLayout_errorTextAppearance com.documentscanner:errorTextAppearance}
{@link #TextInputLayout_hintAnimationEnabled com.documentscanner:hintAnimationEnabled}
{@link #TextInputLayout_hintEnabled com.documentscanner:hintEnabled}
{@link #TextInputLayout_hintTextAppearance com.documentscanner:hintTextAppearance}
+ @see #TextInputLayout_android_hint + @see #TextInputLayout_android_textColorHint + @see #TextInputLayout_counterEnabled + @see #TextInputLayout_counterMaxLength + @see #TextInputLayout_counterOverflowTextAppearance + @see #TextInputLayout_counterTextAppearance + @see #TextInputLayout_errorEnabled + @see #TextInputLayout_errorTextAppearance + @see #TextInputLayout_hintAnimationEnabled + @see #TextInputLayout_hintEnabled + @see #TextInputLayout_hintTextAppearance + */ + public static final int[] TextInputLayout = { + 0x0101009a, 0x01010150, 0x7f010119, 0x7f01011a, + 0x7f01011b, 0x7f01011c, 0x7f01011d, 0x7f01011e, + 0x7f01011f, 0x7f010120, 0x7f010121 + }; + /** +

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. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #Toolbar_android_gravity android:gravity}
{@link #Toolbar_android_minHeight android:minHeight}
{@link #Toolbar_collapseContentDescription com.documentscanner:collapseContentDescription}
{@link #Toolbar_collapseIcon com.documentscanner:collapseIcon}
{@link #Toolbar_contentInsetEnd com.documentscanner:contentInsetEnd}
{@link #Toolbar_contentInsetLeft com.documentscanner:contentInsetLeft}
{@link #Toolbar_contentInsetRight com.documentscanner:contentInsetRight}
{@link #Toolbar_contentInsetStart com.documentscanner:contentInsetStart}
{@link #Toolbar_logo com.documentscanner:logo}
{@link #Toolbar_logoDescription com.documentscanner:logoDescription}
{@link #Toolbar_maxButtonHeight com.documentscanner:maxButtonHeight}
{@link #Toolbar_navigationContentDescription com.documentscanner:navigationContentDescription}
{@link #Toolbar_navigationIcon com.documentscanner:navigationIcon}
{@link #Toolbar_popupTheme com.documentscanner:popupTheme}
{@link #Toolbar_subtitle com.documentscanner:subtitle}
{@link #Toolbar_subtitleTextAppearance com.documentscanner:subtitleTextAppearance}
{@link #Toolbar_subtitleTextColor com.documentscanner:subtitleTextColor}
{@link #Toolbar_title com.documentscanner:title}
{@link #Toolbar_titleMarginBottom com.documentscanner:titleMarginBottom}
{@link #Toolbar_titleMarginEnd com.documentscanner:titleMarginEnd}
{@link #Toolbar_titleMarginStart com.documentscanner:titleMarginStart}
{@link #Toolbar_titleMarginTop com.documentscanner:titleMarginTop}
{@link #Toolbar_titleMargins com.documentscanner:titleMargins}
{@link #Toolbar_titleTextAppearance com.documentscanner:titleTextAppearance}
{@link #Toolbar_titleTextColor com.documentscanner:titleTextColor}
+ @see #Toolbar_android_gravity + @see #Toolbar_android_minHeight + @see #Toolbar_collapseContentDescription + @see #Toolbar_collapseIcon + @see #Toolbar_contentInsetEnd + @see #Toolbar_contentInsetLeft + @see #Toolbar_contentInsetRight + @see #Toolbar_contentInsetStart + @see #Toolbar_logo + @see #Toolbar_logoDescription + @see #Toolbar_maxButtonHeight + @see #Toolbar_navigationContentDescription + @see #Toolbar_navigationIcon + @see #Toolbar_popupTheme + @see #Toolbar_subtitle + @see #Toolbar_subtitleTextAppearance + @see #Toolbar_subtitleTextColor + @see #Toolbar_title + @see #Toolbar_titleMarginBottom + @see #Toolbar_titleMarginEnd + @see #Toolbar_titleMarginStart + @see #Toolbar_titleMarginTop + @see #Toolbar_titleMargins + @see #Toolbar_titleTextAppearance + @see #Toolbar_titleTextColor + */ + 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 + }; + /** +

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. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #View_android_focusable android:focusable}
{@link #View_android_theme android:theme}
{@link #View_paddingEnd com.documentscanner:paddingEnd}
{@link #View_paddingStart com.documentscanner:paddingStart}
{@link #View_theme com.documentscanner:theme}
+ @see #View_android_focusable + @see #View_android_theme + @see #View_paddingEnd + @see #View_paddingStart + @see #View_theme + */ + public static final int[] View = { + 0x01010000, 0x010100da, 0x7f010131, 0x7f010132, + 0x7f010133 + }; + /** +

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. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ViewBackgroundHelper_android_background android:background}
{@link #ViewBackgroundHelper_backgroundTint com.documentscanner:backgroundTint}
{@link #ViewBackgroundHelper_backgroundTintMode com.documentscanner:backgroundTintMode}
+ @see #ViewBackgroundHelper_android_background + @see #ViewBackgroundHelper_backgroundTint + @see #ViewBackgroundHelper_backgroundTintMode + */ + public static final int[] ViewBackgroundHelper = { + 0x010100d4, 0x7f010134, 0x7f010135 + }; + /** +

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.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name com.documentscanner:backgroundTintMode + */ + public static int ViewBackgroundHelper_backgroundTintMode = 2; + /** Attributes that can be used with a ViewStubCompat. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ViewStubCompat_android_id android:id}
{@link #ViewStubCompat_android_inflatedId android:inflatedId}
{@link #ViewStubCompat_android_layout android:layout}
+ @see #ViewStubCompat_android_id + @see #ViewStubCompat_android_inflatedId + @see #ViewStubCompat_android_layout + */ + public static final int[] ViewStubCompat = { + 0x010100d0, 0x010100f2, 0x010100f3 + }; + /** +

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/release/com/facebook/drawee/R.java b/android/build/generated/source/r/release/com/facebook/drawee/R.java new file mode 100644 index 000000000..b21e1a585 --- /dev/null +++ b/android/build/generated/source/r/release/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/release/com/facebook/drawee/backends/pipeline/R.java b/android/build/generated/source/r/release/com/facebook/drawee/backends/pipeline/R.java new file mode 100644 index 000000000..f2cc6cb78 --- /dev/null +++ b/android/build/generated/source/r/release/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/release/com/facebook/react/R.java b/android/build/generated/source/r/release/com/facebook/react/R.java new file mode 100644 index 000000000..1ba354441 --- /dev/null +++ b/android/build/generated/source/r/release/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/release/org/opencv/R.java b/android/build/generated/source/r/release/org/opencv/R.java new file mode 100644 index 000000000..1fa359297 --- /dev/null +++ b/android/build/generated/source/r/release/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/release/org/webkit/android_jsc/R.java b/android/build/generated/source/r/release/org/webkit/android_jsc/R.java new file mode 100644 index 000000000..2a9140d87 --- /dev/null +++ b/android/build/generated/source/r/release/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/release/us/feras/mdv/R.java b/android/build/generated/source/r/release/us/feras/mdv/R.java new file mode 100644 index 000000000..a1cde5037 --- /dev/null +++ b/android/build/generated/source/r/release/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/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/AndroidManifest.xml b/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/AndroidManifest.xml new file mode 100644 index 000000000..66db04333 --- /dev/null +++ b/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/AndroidManifest.xml @@ -0,0 +1,18 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/output.json b/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/output.json new file mode 100644 index 000000000..b63bef2be --- /dev/null +++ b/android/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":1,"versionName":"1.0","enabled":true,"outputFile":"react-native-documentscanner-android-debug.aar","fullName":"debug","baseName":"debug"},"path":"AndroidManifest.xml","properties":{"packageId":"com.documentscanner","split":""}}] \ No newline at end of file diff --git a/android/build/intermediates/aapt_friendly_merged_manifests/release/processReleaseManifest/aapt/AndroidManifest.xml b/android/build/intermediates/aapt_friendly_merged_manifests/release/processReleaseManifest/aapt/AndroidManifest.xml new file mode 100644 index 000000000..66db04333 --- /dev/null +++ b/android/build/intermediates/aapt_friendly_merged_manifests/release/processReleaseManifest/aapt/AndroidManifest.xml @@ -0,0 +1,18 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/android/build/intermediates/aapt_friendly_merged_manifests/release/processReleaseManifest/aapt/output.json b/android/build/intermediates/aapt_friendly_merged_manifests/release/processReleaseManifest/aapt/output.json new file mode 100644 index 000000000..c3ce5c568 --- /dev/null +++ b/android/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":1,"versionName":"1.0","enabled":true,"outputFile":"react-native-documentscanner-android-release.aar","fullName":"release","baseName":"release"},"path":"AndroidManifest.xml","properties":{"packageId":"com.documentscanner","split":""}}] \ No newline at end of file diff --git a/android/build/intermediates/annotation_processor_list/debug/annotationProcessors.json b/android/build/intermediates/annotation_processor_list/debug/annotationProcessors.json new file mode 100644 index 000000000..9e26dfeeb --- /dev/null +++ b/android/build/intermediates/annotation_processor_list/debug/annotationProcessors.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/android/build/intermediates/annotation_processor_list/release/annotationProcessors.json b/android/build/intermediates/annotation_processor_list/release/annotationProcessors.json new file mode 100644 index 000000000..9e26dfeeb --- /dev/null +++ b/android/build/intermediates/annotation_processor_list/release/annotationProcessors.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/android/build/intermediates/annotations_typedef_file/debug/extractDebugAnnotations/typedefs.txt b/android/build/intermediates/annotations_typedef_file/debug/extractDebugAnnotations/typedefs.txt new file mode 100644 index 000000000..e69de29bb diff --git a/android/build/intermediates/annotations_typedef_file/release/extractReleaseAnnotations/typedefs.txt b/android/build/intermediates/annotations_typedef_file/release/extractReleaseAnnotations/typedefs.txt new file mode 100644 index 000000000..e69de29bb diff --git a/android/build/intermediates/blame/res/androidTest/debug/multi/values-af.json b/android/build/intermediates/blame/res/androidTest/debug/multi/values-af.json new file mode 100644 index 000000000..6c5c0c33c --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/multi/values-af.json @@ -0,0 +1,387 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-af/values-af.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 103, + "endOffset": 154 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-af/values-af.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 103, + "endOffset": 154 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 159, + "endColumn": 107, + "endOffset": 262 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-af/values-af.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 159, + "endColumn": 107, + "endOffset": 262 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 267, + "endColumn": 122, + "endOffset": 385 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-af/values-af.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 267, + "endColumn": 122, + "endOffset": 385 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 390, + "endColumn": 99, + "endOffset": 485 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-af/values-af.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 390, + "endColumn": 99, + "endOffset": 485 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 490, + "endColumn": 105, + "endOffset": 591 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-af/values-af.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 490, + "endColumn": 105, + "endOffset": 591 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 596, + "endColumn": 84, + "endOffset": 676 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-af/values-af.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 596, + "endColumn": 84, + "endOffset": 676 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 681, + "endColumn": 102, + "endOffset": 779 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-af/values-af.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 681, + "endColumn": 102, + "endOffset": 779 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 784, + "endColumn": 117, + "endOffset": 897 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-af/values-af.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 784, + "endColumn": 117, + "endOffset": 897 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 902, + "endColumn": 75, + "endOffset": 973 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-af/values-af.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 902, + "endColumn": 75, + "endOffset": 973 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 978, + "endColumn": 76, + "endOffset": 1050 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-af/values-af.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 978, + "endColumn": 76, + "endOffset": 1050 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1055, + "endColumn": 80, + "endOffset": 1131 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-af/values-af.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1055, + "endColumn": 80, + "endOffset": 1131 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1136, + "endColumn": 106, + "endOffset": 1238 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-af/values-af.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1136, + "endColumn": 106, + "endOffset": 1238 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1243, + "endColumn": 102, + "endOffset": 1341 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-af/values-af.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1243, + "endColumn": 102, + "endOffset": 1341 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1346, + "endColumn": 96, + "endOffset": 1438 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-af/values-af.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1346, + "endColumn": 96, + "endOffset": 1438 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1443, + "endColumn": 107, + "endOffset": 1546 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-af/values-af.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1443, + "endColumn": 107, + "endOffset": 1546 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1551, + "endColumn": 101, + "endOffset": 1648 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-af/values-af.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1551, + "endColumn": 101, + "endOffset": 1648 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1653, + "endColumn": 101, + "endOffset": 1750 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-af/values-af.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1653, + "endColumn": 101, + "endOffset": 1750 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1755, + "endColumn": 116, + "endOffset": 1867 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-af/values-af.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1755, + "endColumn": 116, + "endOffset": 1867 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1872, + "endColumn": 97, + "endOffset": 1965 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-af/values-af.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1872, + "endColumn": 97, + "endOffset": 1965 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1970, + "endColumn": 100, + "endOffset": 2066 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-af/values-af.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1970, + "endColumn": 100, + "endOffset": 2066 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/multi/values-am.json b/android/build/intermediates/blame/res/androidTest/debug/multi/values-am.json new file mode 100644 index 000000000..4511c8264 --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/multi/values-am.json @@ -0,0 +1,387 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-am/values-am.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 101, + "endOffset": 152 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-am/values-am.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 101, + "endOffset": 152 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 157, + "endColumn": 107, + "endOffset": 260 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-am/values-am.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 157, + "endColumn": 107, + "endOffset": 260 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 265, + "endColumn": 122, + "endOffset": 383 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-am/values-am.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 265, + "endColumn": 122, + "endOffset": 383 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 388, + "endColumn": 98, + "endOffset": 482 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-am/values-am.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 388, + "endColumn": 98, + "endOffset": 482 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 487, + "endColumn": 105, + "endOffset": 588 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-am/values-am.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 487, + "endColumn": 105, + "endOffset": 588 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 593, + "endColumn": 85, + "endOffset": 674 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-am/values-am.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 593, + "endColumn": 85, + "endOffset": 674 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 679, + "endColumn": 102, + "endOffset": 777 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-am/values-am.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 679, + "endColumn": 102, + "endOffset": 777 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 782, + "endColumn": 112, + "endOffset": 890 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-am/values-am.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 782, + "endColumn": 112, + "endOffset": 890 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 895, + "endColumn": 77, + "endOffset": 968 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-am/values-am.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 895, + "endColumn": 77, + "endOffset": 968 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 973, + "endColumn": 77, + "endOffset": 1046 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-am/values-am.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 973, + "endColumn": 77, + "endOffset": 1046 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1051, + "endColumn": 78, + "endOffset": 1125 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-am/values-am.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1051, + "endColumn": 78, + "endOffset": 1125 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1130, + "endColumn": 99, + "endOffset": 1225 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-am/values-am.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1130, + "endColumn": 99, + "endOffset": 1225 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1230, + "endColumn": 99, + "endOffset": 1325 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-am/values-am.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1230, + "endColumn": 99, + "endOffset": 1325 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1330, + "endColumn": 95, + "endOffset": 1421 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-am/values-am.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1330, + "endColumn": 95, + "endOffset": 1421 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1426, + "endColumn": 102, + "endOffset": 1524 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-am/values-am.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1426, + "endColumn": 102, + "endOffset": 1524 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1529, + "endColumn": 98, + "endOffset": 1623 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-am/values-am.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1529, + "endColumn": 98, + "endOffset": 1623 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1628, + "endColumn": 106, + "endOffset": 1730 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-am/values-am.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1628, + "endColumn": 106, + "endOffset": 1730 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1735, + "endColumn": 115, + "endOffset": 1846 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-am/values-am.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1735, + "endColumn": 115, + "endOffset": 1846 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1851, + "endColumn": 95, + "endOffset": 1942 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-am/values-am.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1851, + "endColumn": 95, + "endOffset": 1942 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1947, + "endColumn": 100, + "endOffset": 2043 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-am/values-am.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1947, + "endColumn": 100, + "endOffset": 2043 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/multi/values-ar.json b/android/build/intermediates/blame/res/androidTest/debug/multi/values-ar.json new file mode 100644 index 000000000..a0fea7945 --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/multi/values-ar.json @@ -0,0 +1,387 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ar/values-ar.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 116, + "endOffset": 167 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ar/values-ar.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 116, + "endOffset": 167 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 172, + "endColumn": 107, + "endOffset": 275 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ar/values-ar.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 172, + "endColumn": 107, + "endOffset": 275 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 280, + "endColumn": 122, + "endOffset": 398 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ar/values-ar.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 280, + "endColumn": 122, + "endOffset": 398 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 403, + "endColumn": 103, + "endOffset": 502 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ar/values-ar.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 403, + "endColumn": 103, + "endOffset": 502 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 507, + "endColumn": 108, + "endOffset": 611 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ar/values-ar.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 507, + "endColumn": 108, + "endOffset": 611 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 616, + "endColumn": 81, + "endOffset": 693 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ar/values-ar.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 616, + "endColumn": 81, + "endOffset": 693 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 698, + "endColumn": 100, + "endOffset": 794 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ar/values-ar.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 698, + "endColumn": 100, + "endOffset": 794 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 799, + "endColumn": 113, + "endOffset": 908 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ar/values-ar.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 799, + "endColumn": 113, + "endOffset": 908 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 913, + "endColumn": 78, + "endOffset": 987 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ar/values-ar.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 913, + "endColumn": 78, + "endOffset": 987 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 992, + "endColumn": 78, + "endOffset": 1066 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ar/values-ar.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 992, + "endColumn": 78, + "endOffset": 1066 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1071, + "endColumn": 78, + "endOffset": 1145 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ar/values-ar.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1071, + "endColumn": 78, + "endOffset": 1145 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1150, + "endColumn": 104, + "endOffset": 1250 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ar/values-ar.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1150, + "endColumn": 104, + "endOffset": 1250 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1255, + "endColumn": 100, + "endOffset": 1351 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ar/values-ar.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1255, + "endColumn": 100, + "endOffset": 1351 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1356, + "endColumn": 95, + "endOffset": 1447 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ar/values-ar.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1356, + "endColumn": 95, + "endOffset": 1447 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1452, + "endColumn": 107, + "endOffset": 1555 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ar/values-ar.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1452, + "endColumn": 107, + "endOffset": 1555 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1560, + "endColumn": 102, + "endOffset": 1658 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ar/values-ar.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1560, + "endColumn": 102, + "endOffset": 1658 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1663, + "endColumn": 102, + "endOffset": 1761 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ar/values-ar.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1663, + "endColumn": 102, + "endOffset": 1761 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1766, + "endColumn": 118, + "endOffset": 1880 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ar/values-ar.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1766, + "endColumn": 118, + "endOffset": 1880 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1885, + "endColumn": 96, + "endOffset": 1977 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ar/values-ar.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1885, + "endColumn": 96, + "endOffset": 1977 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1982, + "endColumn": 100, + "endOffset": 2078 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ar/values-ar.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1982, + "endColumn": 100, + "endOffset": 2078 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/multi/values-az-rAZ.json b/android/build/intermediates/blame/res/androidTest/debug/multi/values-az-rAZ.json new file mode 100644 index 000000000..fcc627cce --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/multi/values-az-rAZ.json @@ -0,0 +1,368 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-az-rAZ/values-az-rAZ.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 97, + "endOffset": 148 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-az-rAZ/values-az-rAZ.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 97, + "endOffset": 148 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 153, + "endColumn": 107, + "endOffset": 256 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-az-rAZ/values-az-rAZ.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 153, + "endColumn": 107, + "endOffset": 256 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 261, + "endColumn": 122, + "endOffset": 379 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-az-rAZ/values-az-rAZ.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 261, + "endColumn": 122, + "endOffset": 379 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 384, + "endColumn": 98, + "endOffset": 478 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-az-rAZ/values-az-rAZ.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 384, + "endColumn": 98, + "endOffset": 478 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 483, + "endColumn": 109, + "endOffset": 588 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-az-rAZ/values-az-rAZ.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 483, + "endColumn": 109, + "endOffset": 588 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 593, + "endColumn": 87, + "endOffset": 676 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-az-rAZ/values-az-rAZ.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 593, + "endColumn": 87, + "endOffset": 676 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 681, + "endColumn": 106, + "endOffset": 783 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-az-rAZ/values-az-rAZ.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 681, + "endColumn": 106, + "endOffset": 783 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 788, + "endColumn": 113, + "endOffset": 897 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-az-rAZ/values-az-rAZ.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 788, + "endColumn": 113, + "endOffset": 897 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 902, + "endColumn": 80, + "endOffset": 978 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-az-rAZ/values-az-rAZ.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 902, + "endColumn": 80, + "endOffset": 978 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 983, + "endColumn": 78, + "endOffset": 1057 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-az-rAZ/values-az-rAZ.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 983, + "endColumn": 78, + "endOffset": 1057 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1062, + "endColumn": 84, + "endOffset": 1142 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-az-rAZ/values-az-rAZ.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1062, + "endColumn": 84, + "endOffset": 1142 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1147, + "endColumn": 106, + "endOffset": 1249 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-az-rAZ/values-az-rAZ.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1147, + "endColumn": 106, + "endOffset": 1249 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1254, + "endColumn": 106, + "endOffset": 1356 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-az-rAZ/values-az-rAZ.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1254, + "endColumn": 106, + "endOffset": 1356 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1361, + "endColumn": 99, + "endOffset": 1456 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-az-rAZ/values-az-rAZ.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1361, + "endColumn": 99, + "endOffset": 1456 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1461, + "endColumn": 108, + "endOffset": 1565 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-az-rAZ/values-az-rAZ.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1461, + "endColumn": 108, + "endOffset": 1565 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1570, + "endColumn": 103, + "endOffset": 1669 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-az-rAZ/values-az-rAZ.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1570, + "endColumn": 103, + "endOffset": 1669 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1674, + "endColumn": 109, + "endOffset": 1779 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-az-rAZ/values-az-rAZ.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1674, + "endColumn": 109, + "endOffset": 1779 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1784, + "endColumn": 96, + "endOffset": 1876 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-az-rAZ/values-az-rAZ.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1784, + "endColumn": 96, + "endOffset": 1876 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1881, + "endColumn": 100, + "endOffset": 1977 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-az-rAZ/values-az-rAZ.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1881, + "endColumn": 100, + "endOffset": 1977 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/multi/values-bg.json b/android/build/intermediates/blame/res/androidTest/debug/multi/values-bg.json new file mode 100644 index 000000000..e472cdfc5 --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/multi/values-bg.json @@ -0,0 +1,387 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-bg/values-bg.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 114, + "endOffset": 165 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-bg/values-bg.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 114, + "endOffset": 165 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 110, + "endOffset": 276 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-bg/values-bg.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 110, + "endOffset": 276 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 281, + "endColumn": 127, + "endOffset": 404 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-bg/values-bg.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 281, + "endColumn": 127, + "endOffset": 404 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 409, + "endColumn": 106, + "endOffset": 511 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-bg/values-bg.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 409, + "endColumn": 106, + "endOffset": 511 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 516, + "endColumn": 104, + "endOffset": 616 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-bg/values-bg.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 516, + "endColumn": 104, + "endOffset": 616 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 621, + "endColumn": 85, + "endOffset": 702 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-bg/values-bg.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 621, + "endColumn": 85, + "endOffset": 702 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 707, + "endColumn": 104, + "endOffset": 807 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-bg/values-bg.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 707, + "endColumn": 104, + "endOffset": 807 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 812, + "endColumn": 120, + "endOffset": 928 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-bg/values-bg.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 812, + "endColumn": 120, + "endOffset": 928 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 933, + "endColumn": 78, + "endOffset": 1007 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-bg/values-bg.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 933, + "endColumn": 78, + "endOffset": 1007 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1012, + "endColumn": 77, + "endOffset": 1085 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-bg/values-bg.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1012, + "endColumn": 77, + "endOffset": 1085 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1090, + "endColumn": 82, + "endOffset": 1168 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-bg/values-bg.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1090, + "endColumn": 82, + "endOffset": 1168 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1173, + "endColumn": 113, + "endOffset": 1282 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-bg/values-bg.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1173, + "endColumn": 113, + "endOffset": 1282 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1287, + "endColumn": 108, + "endOffset": 1391 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-bg/values-bg.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1287, + "endColumn": 108, + "endOffset": 1391 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1396, + "endColumn": 99, + "endOffset": 1491 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-bg/values-bg.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1396, + "endColumn": 99, + "endOffset": 1491 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1496, + "endColumn": 113, + "endOffset": 1605 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-bg/values-bg.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1496, + "endColumn": 113, + "endOffset": 1605 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1610, + "endColumn": 105, + "endOffset": 1711 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-bg/values-bg.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1610, + "endColumn": 105, + "endOffset": 1711 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1716, + "endColumn": 107, + "endOffset": 1819 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-bg/values-bg.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1716, + "endColumn": 107, + "endOffset": 1819 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1824, + "endColumn": 122, + "endOffset": 1942 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-bg/values-bg.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1824, + "endColumn": 122, + "endOffset": 1942 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1947, + "endColumn": 98, + "endOffset": 2041 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-bg/values-bg.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1947, + "endColumn": 98, + "endOffset": 2041 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2046, + "endColumn": 100, + "endOffset": 2142 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-bg/values-bg.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2046, + "endColumn": 100, + "endOffset": 2142 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/multi/values-bn-rBD.json b/android/build/intermediates/blame/res/androidTest/debug/multi/values-bn-rBD.json new file mode 100644 index 000000000..9bf98844e --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/multi/values-bn-rBD.json @@ -0,0 +1,387 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-bn-rBD/values-bn-rBD.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 108, + "endOffset": 159 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-bn-rBD/values-bn-rBD.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 108, + "endOffset": 159 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 164, + "endColumn": 107, + "endOffset": 267 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-bn-rBD/values-bn-rBD.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 164, + "endColumn": 107, + "endOffset": 267 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 272, + "endColumn": 122, + "endOffset": 390 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-bn-rBD/values-bn-rBD.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 272, + "endColumn": 122, + "endOffset": 390 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 395, + "endColumn": 111, + "endOffset": 502 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-bn-rBD/values-bn-rBD.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 395, + "endColumn": 111, + "endOffset": 502 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 507, + "endColumn": 105, + "endOffset": 608 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-bn-rBD/values-bn-rBD.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 507, + "endColumn": 105, + "endOffset": 608 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 613, + "endColumn": 93, + "endOffset": 702 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-bn-rBD/values-bn-rBD.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 613, + "endColumn": 93, + "endOffset": 702 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 707, + "endColumn": 104, + "endOffset": 807 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-bn-rBD/values-bn-rBD.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 707, + "endColumn": 104, + "endOffset": 807 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 812, + "endColumn": 129, + "endOffset": 937 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-bn-rBD/values-bn-rBD.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 812, + "endColumn": 129, + "endOffset": 937 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 942, + "endColumn": 77, + "endOffset": 1015 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-bn-rBD/values-bn-rBD.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 942, + "endColumn": 77, + "endOffset": 1015 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1020, + "endColumn": 77, + "endOffset": 1093 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-bn-rBD/values-bn-rBD.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1020, + "endColumn": 77, + "endOffset": 1093 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1098, + "endColumn": 86, + "endOffset": 1180 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-bn-rBD/values-bn-rBD.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1098, + "endColumn": 86, + "endOffset": 1180 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1185, + "endColumn": 109, + "endOffset": 1290 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-bn-rBD/values-bn-rBD.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1185, + "endColumn": 109, + "endOffset": 1290 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1295, + "endColumn": 115, + "endOffset": 1406 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-bn-rBD/values-bn-rBD.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1295, + "endColumn": 115, + "endOffset": 1406 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1411, + "endColumn": 106, + "endOffset": 1513 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-bn-rBD/values-bn-rBD.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1411, + "endColumn": 106, + "endOffset": 1513 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1518, + "endColumn": 109, + "endOffset": 1623 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-bn-rBD/values-bn-rBD.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1518, + "endColumn": 109, + "endOffset": 1623 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1628, + "endColumn": 105, + "endOffset": 1729 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-bn-rBD/values-bn-rBD.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1628, + "endColumn": 105, + "endOffset": 1729 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1734, + "endColumn": 109, + "endOffset": 1839 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-bn-rBD/values-bn-rBD.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1734, + "endColumn": 109, + "endOffset": 1839 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1844, + "endColumn": 124, + "endOffset": 1964 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-bn-rBD/values-bn-rBD.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1844, + "endColumn": 124, + "endOffset": 1964 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1969, + "endColumn": 104, + "endOffset": 2069 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-bn-rBD/values-bn-rBD.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1969, + "endColumn": 104, + "endOffset": 2069 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2074, + "endColumn": 100, + "endOffset": 2170 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-bn-rBD/values-bn-rBD.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2074, + "endColumn": 100, + "endOffset": 2170 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/multi/values-ca.json b/android/build/intermediates/blame/res/androidTest/debug/multi/values-ca.json new file mode 100644 index 000000000..2f19ce4f8 --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/multi/values-ca.json @@ -0,0 +1,387 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ca/values-ca.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 117, + "endOffset": 168 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ca/values-ca.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 117, + "endOffset": 168 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 173, + "endColumn": 107, + "endOffset": 276 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ca/values-ca.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 173, + "endColumn": 107, + "endOffset": 276 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 281, + "endColumn": 122, + "endOffset": 399 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ca/values-ca.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 281, + "endColumn": 122, + "endOffset": 399 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 404, + "endColumn": 105, + "endOffset": 505 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ca/values-ca.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 404, + "endColumn": 105, + "endOffset": 505 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 510, + "endColumn": 106, + "endOffset": 612 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ca/values-ca.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 510, + "endColumn": 106, + "endOffset": 612 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 617, + "endColumn": 82, + "endOffset": 695 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ca/values-ca.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 617, + "endColumn": 82, + "endOffset": 695 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 700, + "endColumn": 107, + "endOffset": 803 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ca/values-ca.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 700, + "endColumn": 107, + "endOffset": 803 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 808, + "endColumn": 125, + "endOffset": 929 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ca/values-ca.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 808, + "endColumn": 125, + "endOffset": 929 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 934, + "endColumn": 83, + "endOffset": 1013 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ca/values-ca.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 934, + "endColumn": 83, + "endOffset": 1013 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1018, + "endColumn": 80, + "endOffset": 1094 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ca/values-ca.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1018, + "endColumn": 80, + "endOffset": 1094 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1099, + "endColumn": 82, + "endOffset": 1177 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ca/values-ca.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1099, + "endColumn": 82, + "endOffset": 1177 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1182, + "endColumn": 110, + "endOffset": 1288 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ca/values-ca.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1182, + "endColumn": 110, + "endOffset": 1288 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1293, + "endColumn": 108, + "endOffset": 1397 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ca/values-ca.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1293, + "endColumn": 108, + "endOffset": 1397 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1402, + "endColumn": 97, + "endOffset": 1495 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ca/values-ca.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1402, + "endColumn": 97, + "endOffset": 1495 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1500, + "endColumn": 109, + "endOffset": 1605 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ca/values-ca.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1500, + "endColumn": 109, + "endOffset": 1605 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1610, + "endColumn": 103, + "endOffset": 1709 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ca/values-ca.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1610, + "endColumn": 103, + "endOffset": 1709 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1714, + "endColumn": 107, + "endOffset": 1817 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ca/values-ca.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1714, + "endColumn": 107, + "endOffset": 1817 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1822, + "endColumn": 122, + "endOffset": 1940 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ca/values-ca.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1822, + "endColumn": 122, + "endOffset": 1940 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1945, + "endColumn": 98, + "endOffset": 2039 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ca/values-ca.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1945, + "endColumn": 98, + "endOffset": 2039 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2044, + "endColumn": 100, + "endOffset": 2140 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ca/values-ca.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2044, + "endColumn": 100, + "endOffset": 2140 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/multi/values-cs.json b/android/build/intermediates/blame/res/androidTest/debug/multi/values-cs.json new file mode 100644 index 000000000..aaec3bbe4 --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/multi/values-cs.json @@ -0,0 +1,1717 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-cs/values-cs.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 106, + "endOffset": 157 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-cs/values-cs.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 106, + "endOffset": 157 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 162, + "endColumn": 108, + "endOffset": 266 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-cs/values-cs.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 162, + "endColumn": 108, + "endOffset": 266 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 271, + "endColumn": 123, + "endOffset": 390 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-cs/values-cs.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 271, + "endColumn": 123, + "endOffset": 390 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 395, + "endColumn": 101, + "endOffset": 492 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-cs/values-cs.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 395, + "endColumn": 101, + "endOffset": 492 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 497, + "endColumn": 108, + "endOffset": 601 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-cs/values-cs.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 497, + "endColumn": 108, + "endOffset": 601 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 606, + "endColumn": 85, + "endOffset": 687 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-cs/values-cs.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 606, + "endColumn": 85, + "endOffset": 687 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 692, + "endColumn": 104, + "endOffset": 792 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-cs/values-cs.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 692, + "endColumn": 104, + "endOffset": 792 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 797, + "endColumn": 116, + "endOffset": 909 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-cs/values-cs.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 797, + "endColumn": 116, + "endOffset": 909 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 914, + "endColumn": 80, + "endOffset": 990 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-cs/values-cs.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 914, + "endColumn": 80, + "endOffset": 990 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 995, + "endColumn": 80, + "endOffset": 1071 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-cs/values-cs.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 995, + "endColumn": 80, + "endOffset": 1071 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1076, + "endColumn": 83, + "endOffset": 1155 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-cs/values-cs.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1076, + "endColumn": 83, + "endOffset": 1155 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1160, + "endColumn": 103, + "endOffset": 1259 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-cs/values-cs.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1160, + "endColumn": 103, + "endOffset": 1259 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1264, + "endColumn": 108, + "endOffset": 1368 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-cs/values-cs.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1264, + "endColumn": 108, + "endOffset": 1368 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1373, + "endColumn": 98, + "endOffset": 1467 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-cs/values-cs.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1373, + "endColumn": 98, + "endOffset": 1467 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1472, + "endColumn": 105, + "endOffset": 1573 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-cs/values-cs.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1472, + "endColumn": 105, + "endOffset": 1573 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1578, + "endColumn": 109, + "endOffset": 1683 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-cs/values-cs.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1578, + "endColumn": 109, + "endOffset": 1683 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1688, + "endColumn": 106, + "endOffset": 1790 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-cs/values-cs.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1688, + "endColumn": 106, + "endOffset": 1790 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1795, + "endColumn": 121, + "endOffset": 1912 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-cs/values-cs.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1795, + "endColumn": 121, + "endOffset": 1912 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1917, + "endColumn": 97, + "endOffset": 2010 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-cs/values-cs.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1917, + "endColumn": 97, + "endOffset": 2010 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2015, + "endColumn": 54, + "endOffset": 2065 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-cs/values-cs.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 54, + "endOffset": 105 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2070, + "endColumn": 51, + "endOffset": 2117 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-cs/values-cs.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 110, + "endColumn": 51, + "endOffset": 157 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2122, + "endColumn": 48, + "endOffset": 2166 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-cs/values-cs.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 162, + "endColumn": 48, + "endOffset": 206 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2171, + "endColumn": 47, + "endOffset": 2214 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-cs/values-cs.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 211, + "endColumn": 47, + "endOffset": 254 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2219, + "endColumn": 45, + "endOffset": 2260 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-cs/values-cs.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 259, + "endColumn": 45, + "endOffset": 300 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2265, + "endColumn": 60, + "endOffset": 2321 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-cs/values-cs.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 305, + "endColumn": 60, + "endOffset": 361 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 2326, + "endColumn": 48, + "endOffset": 2370 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-cs/values-cs.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 366, + "endColumn": 48, + "endOffset": 410 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 2375, + "endColumn": 48, + "endOffset": 2419 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-cs/values-cs.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 415, + "endColumn": 48, + "endOffset": 459 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 2424, + "endColumn": 40, + "endOffset": 2460 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-cs/values-cs.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 464, + "endColumn": 40, + "endOffset": 500 + } + } + }, + { + "to": { + "startLine": 30, + "startColumn": 4, + "startOffset": 2465, + "endColumn": 42, + "endOffset": 2503 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-cs/values-cs.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 505, + "endColumn": 42, + "endOffset": 543 + } + } + }, + { + "to": { + "startLine": 31, + "startColumn": 4, + "startOffset": 2508, + "endColumn": 54, + "endOffset": 2558 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-cs/values-cs.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 548, + "endColumn": 54, + "endOffset": 598 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 2563, + "endColumn": 150, + "endOffset": 2709 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-cs/values-cs.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 603, + "endColumn": 150, + "endOffset": 749 + } + } + }, + { + "to": { + "startLine": 33, + "startColumn": 4, + "startOffset": 2714, + "endColumn": 48, + "endOffset": 2758 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-cs/values-cs.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 754, + "endColumn": 48, + "endOffset": 798 + } + } + }, + { + "to": { + "startLine": 34, + "startColumn": 4, + "startOffset": 2763, + "endColumn": 65, + "endOffset": 2824 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-cs/values-cs.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 803, + "endColumn": 65, + "endOffset": 864 + } + } + }, + { + "to": { + "startLine": 35, + "startColumn": 4, + "startOffset": 2829, + "endColumn": 163, + "endOffset": 2988 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-cs/values-cs.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 869, + "endColumn": 163, + "endOffset": 1028 + } + } + }, + { + "to": { + "startLine": 36, + "startColumn": 4, + "startOffset": 2993, + "endColumn": 61, + "endOffset": 3050 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-cs/values-cs.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1033, + "endColumn": 61, + "endOffset": 1090 + } + } + }, + { + "to": { + "startLine": 37, + "startColumn": 4, + "startOffset": 3055, + "endColumn": 77, + "endOffset": 3128 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-cs/values-cs.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1095, + "endColumn": 77, + "endOffset": 1168 + } + } + }, + { + "to": { + "startLine": 38, + "startColumn": 4, + "startOffset": 3133, + "endColumn": 58, + "endOffset": 3187 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-cs/values-cs.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1173, + "endColumn": 58, + "endOffset": 1227 + } + } + }, + { + "to": { + "startLine": 39, + "startColumn": 4, + "startOffset": 3192, + "endColumn": 143, + "endOffset": 3331 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-cs/values-cs.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1232, + "endColumn": 143, + "endOffset": 1371 + } + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 3336, + "endColumn": 44, + "endOffset": 3376 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-cs/values-cs.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1376, + "endColumn": 44, + "endOffset": 1416 + } + } + }, + { + "to": { + "startLine": 41, + "startColumn": 4, + "startOffset": 3381, + "endColumn": 53, + "endOffset": 3430 + }, + "from": { + "file": "/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/values-cs/values-cs.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 53, + "endOffset": 104 + } + } + }, + { + "to": { + "startLine": 42, + "startColumn": 4, + "startOffset": 3435, + "endColumn": 71, + "endOffset": 3502 + }, + "from": { + "file": "/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/values-cs/values-cs.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 109, + "endColumn": 71, + "endOffset": 176 + } + } + }, + { + "to": { + "startLine": 43, + "startColumn": 4, + "startOffset": 3507, + "endColumn": 78, + "endOffset": 3581 + }, + "from": { + "file": "/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/values-cs/values-cs.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 181, + "endColumn": 78, + "endOffset": 255 + } + } + }, + { + "to": { + "startLine": 44, + "startColumn": 4, + "startOffset": 3586, + "endColumn": 70, + "endOffset": 3652 + }, + "from": { + "file": "/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/values-cs/values-cs.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 260, + "endColumn": 70, + "endOffset": 326 + } + } + }, + { + "to": { + "startLine": 45, + "startColumn": 4, + "startOffset": 3657, + "endColumn": 67, + "endOffset": 3720 + }, + "from": { + "file": "/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/values-cs/values-cs.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 331, + "endColumn": 67, + "endOffset": 394 + } + } + }, + { + "to": { + "startLine": 46, + "startColumn": 4, + "startOffset": 3725, + "endColumn": 55, + "endOffset": 3776 + }, + "from": { + "file": "/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/values-cs/values-cs.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 399, + "endColumn": 55, + "endOffset": 450 + } + } + }, + { + "to": { + "startLine": 47, + "startColumn": 4, + "startOffset": 3781, + "endColumn": 58, + "endOffset": 3835 + }, + "from": { + "file": "/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/values-cs/values-cs.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 455, + "endColumn": 58, + "endOffset": 509 + } + } + }, + { + "to": { + "startLine": 48, + "startColumn": 4, + "startOffset": 3840, + "endColumn": 73, + "endOffset": 3909 + }, + "from": { + "file": "/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/values-cs/values-cs.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 514, + "endColumn": 73, + "endOffset": 583 + } + } + }, + { + "to": { + "startLine": 49, + "startColumn": 4, + "startOffset": 3914, + "endColumn": 45, + "endOffset": 3955 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-cs/values-cs.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 1421, + "endColumn": 45, + "endOffset": 1462 + } + } + }, + { + "to": { + "startLine": 50, + "startColumn": 4, + "startOffset": 3960, + "endColumn": 91, + "endOffset": 4047 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-cs/values-cs.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 1467, + "endColumn": 91, + "endOffset": 1554 + } + } + }, + { + "to": { + "startLine": 51, + "startColumn": 4, + "startOffset": 4052, + "endColumn": 80, + "endOffset": 4128 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-cs/values-cs.xml", + "position": { + "startLine": 24, + "startColumn": 4, + "startOffset": 1559, + "endColumn": 80, + "endOffset": 1635 + } + } + }, + { + "to": { + "startLine": 52, + "startColumn": 4, + "startOffset": 4133, + "endColumn": 95, + "endOffset": 4224 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-cs/values-cs.xml", + "position": { + "startLine": 25, + "startColumn": 4, + "startOffset": 1640, + "endColumn": 95, + "endOffset": 1731 + } + } + }, + { + "to": { + "startLine": 53, + "startColumn": 4, + "startOffset": 4229, + "endColumn": 50, + "endOffset": 4275 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-cs/values-cs.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 1736, + "endColumn": 50, + "endOffset": 1782 + } + } + }, + { + "to": { + "startLine": 54, + "startColumn": 4, + "startOffset": 4280, + "endColumn": 46, + "endOffset": 4322 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-cs/values-cs.xml", + "position": { + "startLine": 27, + "startColumn": 4, + "startOffset": 1787, + "endColumn": 46, + "endOffset": 1829 + } + } + }, + { + "to": { + "startLine": 55, + "startColumn": 4, + "startOffset": 4327, + "endColumn": 119, + "endOffset": 4442 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-cs/values-cs.xml", + "position": { + "startLine": 28, + "startColumn": 4, + "startOffset": 1834, + "endColumn": 119, + "endOffset": 1949 + } + } + }, + { + "to": { + "startLine": 56, + "startColumn": 4, + "startOffset": 4447, + "endColumn": 49, + "endOffset": 4492 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-cs/values-cs.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 1954, + "endColumn": 49, + "endOffset": 1999 + } + } + }, + { + "to": { + "startLine": 57, + "startColumn": 4, + "startOffset": 4497, + "endColumn": 71, + "endOffset": 4564 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-cs/values-cs.xml", + "position": { + "startLine": 30, + "startColumn": 4, + "startOffset": 2004, + "endColumn": 71, + "endOffset": 2071 + } + } + }, + { + "to": { + "startLine": 58, + "startColumn": 4, + "startOffset": 4569, + "endColumn": 79, + "endOffset": 4644 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-cs/values-cs.xml", + "position": { + "startLine": 31, + "startColumn": 4, + "startOffset": 2076, + "endColumn": 79, + "endOffset": 2151 + } + } + }, + { + "to": { + "startLine": 59, + "startColumn": 4, + "startOffset": 4649, + "endColumn": 68, + "endOffset": 4713 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-cs/values-cs.xml", + "position": { + "startLine": 32, + "startColumn": 4, + "startOffset": 2156, + "endColumn": 68, + "endOffset": 2220 + } + } + }, + { + "to": { + "startLine": 60, + "startColumn": 4, + "startOffset": 4718, + "endColumn": 67, + "endOffset": 4781 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-cs/values-cs.xml", + "position": { + "startLine": 33, + "startColumn": 4, + "startOffset": 2225, + "endColumn": 67, + "endOffset": 2288 + } + } + }, + { + "to": { + "startLine": 61, + "startColumn": 4, + "startOffset": 4786, + "endColumn": 60, + "endOffset": 4842 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-cs/values-cs.xml", + "position": { + "startLine": 34, + "startColumn": 4, + "startOffset": 2293, + "endColumn": 60, + "endOffset": 2349 + } + } + }, + { + "to": { + "startLine": 62, + "startColumn": 4, + "startOffset": 4847, + "endColumn": 197, + "endOffset": 5040 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-cs/values-cs.xml", + "position": { + "startLine": 35, + "startColumn": 4, + "startOffset": 2354, + "endColumn": 197, + "endOffset": 2547 + } + } + }, + { + "to": { + "startLine": 63, + "startColumn": 4, + "startOffset": 5045, + "endColumn": 57, + "endOffset": 5098 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-cs/values-cs.xml", + "position": { + "startLine": 36, + "startColumn": 4, + "startOffset": 2552, + "endColumn": 57, + "endOffset": 2605 + } + } + }, + { + "to": { + "startLine": 64, + "startColumn": 4, + "startOffset": 5103, + "endColumn": 50, + "endOffset": 5149 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-cs/values-cs.xml", + "position": { + "startLine": 37, + "startColumn": 4, + "startOffset": 2610, + "endColumn": 50, + "endOffset": 2656 + } + } + }, + { + "to": { + "startLine": 65, + "startColumn": 4, + "startOffset": 5154, + "endColumn": 61, + "endOffset": 5211 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-cs/values-cs.xml", + "position": { + "startLine": 38, + "startColumn": 4, + "startOffset": 2661, + "endColumn": 61, + "endOffset": 2718 + } + } + }, + { + "to": { + "startLine": 66, + "startColumn": 4, + "startOffset": 5216, + "endColumn": 68, + "endOffset": 5280 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-cs/values-cs.xml", + "position": { + "startLine": 39, + "startColumn": 4, + "startOffset": 2723, + "endColumn": 68, + "endOffset": 2787 + } + } + }, + { + "to": { + "startLine": 67, + "startColumn": 4, + "startOffset": 5285, + "endColumn": 47, + "endOffset": 5328 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-cs/values-cs.xml", + "position": { + "startLine": 40, + "startColumn": 4, + "startOffset": 2792, + "endColumn": 47, + "endOffset": 2835 + } + } + }, + { + "to": { + "startLine": 68, + "startColumn": 4, + "startOffset": 5333, + "endColumn": 68, + "endOffset": 5397 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-cs/values-cs.xml", + "position": { + "startLine": 41, + "startColumn": 4, + "startOffset": 2840, + "endColumn": 68, + "endOffset": 2904 + } + } + }, + { + "to": { + "startLine": 69, + "startColumn": 4, + "startOffset": 5402, + "endColumn": 208, + "endOffset": 5606 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-cs/values-cs.xml", + "position": { + "startLine": 42, + "startColumn": 4, + "startOffset": 2909, + "endColumn": 208, + "endOffset": 3113 + } + } + }, + { + "to": { + "startLine": 70, + "startColumn": 4, + "startOffset": 5611, + "endColumn": 163, + "endOffset": 5770 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-cs/values-cs.xml", + "position": { + "startLine": 43, + "startColumn": 4, + "startOffset": 3118, + "endColumn": 163, + "endOffset": 3277 + } + } + }, + { + "to": { + "startLine": 71, + "startColumn": 4, + "startOffset": 5775, + "endColumn": 81, + "endOffset": 5852 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-cs/values-cs.xml", + "position": { + "startLine": 44, + "startColumn": 4, + "startOffset": 3282, + "endColumn": 81, + "endOffset": 3359 + } + } + }, + { + "to": { + "startLine": 72, + "startColumn": 4, + "startOffset": 5857, + "endColumn": 102, + "endOffset": 5955 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-cs/values-cs.xml", + "position": { + "startLine": 45, + "startColumn": 4, + "startOffset": 3364, + "endColumn": 102, + "endOffset": 3462 + } + } + }, + { + "to": { + "startLine": 73, + "startColumn": 4, + "startOffset": 5960, + "endColumn": 54, + "endOffset": 6010 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-cs/values-cs.xml", + "position": { + "startLine": 46, + "startColumn": 4, + "startOffset": 3467, + "endColumn": 54, + "endOffset": 3517 + } + } + }, + { + "to": { + "startLine": 74, + "startColumn": 4, + "startOffset": 6015, + "endColumn": 72, + "endOffset": 6083 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-cs/values-cs.xml", + "position": { + "startLine": 47, + "startColumn": 4, + "startOffset": 3522, + "endColumn": 72, + "endOffset": 3590 + } + } + }, + { + "to": { + "startLine": 75, + "startColumn": 4, + "startOffset": 6088, + "endColumn": 46, + "endOffset": 6130 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-cs/values-cs.xml", + "position": { + "startLine": 48, + "startColumn": 4, + "startOffset": 3595, + "endColumn": 46, + "endOffset": 3637 + } + } + }, + { + "to": { + "startLine": 76, + "startColumn": 4, + "startOffset": 6135, + "endColumn": 53, + "endOffset": 6184 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-cs/values-cs.xml", + "position": { + "startLine": 49, + "startColumn": 4, + "startOffset": 3642, + "endColumn": 53, + "endOffset": 3691 + } + } + }, + { + "to": { + "startLine": 77, + "startColumn": 4, + "startOffset": 6189, + "endColumn": 148, + "endOffset": 6333 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-cs/values-cs.xml", + "position": { + "startLine": 50, + "startColumn": 4, + "startOffset": 3696, + "endColumn": 148, + "endOffset": 3840 + } + } + }, + { + "to": { + "startLine": 78, + "startColumn": 4, + "startOffset": 6338, + "endColumn": 96, + "endOffset": 6430 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-cs/values-cs.xml", + "position": { + "startLine": 51, + "startColumn": 4, + "startOffset": 3845, + "endColumn": 96, + "endOffset": 3937 + } + } + }, + { + "to": { + "startLine": 79, + "startColumn": 4, + "startOffset": 6435, + "endColumn": 61, + "endOffset": 6492 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-cs/values-cs.xml", + "position": { + "startLine": 52, + "startColumn": 4, + "startOffset": 3942, + "endColumn": 61, + "endOffset": 3999 + } + } + }, + { + "to": { + "startLine": 80, + "startColumn": 4, + "startOffset": 6497, + "endColumn": 62, + "endOffset": 6555 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-cs/values-cs.xml", + "position": { + "startLine": 53, + "startColumn": 4, + "startOffset": 4004, + "endColumn": 62, + "endOffset": 4062 + } + } + }, + { + "to": { + "startLine": 81, + "startColumn": 4, + "startOffset": 6560, + "endColumn": 183, + "endOffset": 6739 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-cs/values-cs.xml", + "position": { + "startLine": 54, + "startColumn": 4, + "startOffset": 4067, + "endColumn": 183, + "endOffset": 4246 + } + } + }, + { + "to": { + "startLine": 82, + "startColumn": 4, + "startOffset": 6744, + "endColumn": 66, + "endOffset": 6806 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-cs/values-cs.xml", + "position": { + "startLine": 55, + "startColumn": 4, + "startOffset": 4251, + "endColumn": 66, + "endOffset": 4313 + } + } + }, + { + "to": { + "startLine": 83, + "startColumn": 4, + "startOffset": 6811, + "endColumn": 100, + "endOffset": 6907 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-cs/values-cs.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2015, + "endColumn": 100, + "endOffset": 2111 + } + } + }, + { + "to": { + "startLine": 84, + "startColumn": 4, + "startOffset": 6912, + "endColumn": 58, + "endOffset": 6966 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-cs/values-cs.xml", + "position": { + "startLine": 56, + "startColumn": 4, + "startOffset": 4318, + "endColumn": 58, + "endOffset": 4372 + } + } + }, + { + "to": { + "startLine": 85, + "startColumn": 4, + "startOffset": 6971, + "endColumn": 96, + "endOffset": 7063 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-cs/values-cs.xml", + "position": { + "startLine": 57, + "startColumn": 4, + "startOffset": 4377, + "endColumn": 96, + "endOffset": 4469 + } + } + }, + { + "to": { + "startLine": 86, + "startColumn": 4, + "startOffset": 7068, + "endColumn": 53, + "endOffset": 7117 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-cs/values-cs.xml", + "position": { + "startLine": 58, + "startColumn": 4, + "startOffset": 4474, + "endColumn": 53, + "endOffset": 4523 + } + } + }, + { + "to": { + "startLine": 87, + "startColumn": 4, + "startOffset": 7122, + "endColumn": 73, + "endOffset": 7191 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-cs/values-cs.xml", + "position": { + "startLine": 59, + "startColumn": 4, + "startOffset": 4528, + "endColumn": 73, + "endOffset": 4597 + } + } + }, + { + "to": { + "startLine": 88, + "startColumn": 4, + "startOffset": 7196, + "endColumn": 84, + "endOffset": 7276 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-cs/values-cs.xml", + "position": { + "startLine": 60, + "startColumn": 4, + "startOffset": 4602, + "endColumn": 84, + "endOffset": 4682 + } + } + }, + { + "to": { + "startLine": 89, + "startColumn": 4, + "startOffset": 7281, + "endColumn": 58, + "endOffset": 7335 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-cs/values-cs.xml", + "position": { + "startLine": 61, + "startColumn": 4, + "startOffset": 4687, + "endColumn": 58, + "endOffset": 4741 + } + } + }, + { + "to": { + "startLine": 90, + "startColumn": 4, + "startOffset": 7340, + "endColumn": 60, + "endOffset": 7396 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-cs/values-cs.xml", + "position": { + "startLine": 62, + "startColumn": 4, + "startOffset": 4746, + "endColumn": 60, + "endOffset": 4802 + } + } + }, + { + "to": { + "startLine": 91, + "startColumn": 4, + "startOffset": 7401, + "endColumn": 115, + "endOffset": 7512 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-cs/values-cs.xml", + "position": { + "startLine": 63, + "startColumn": 4, + "startOffset": 4807, + "endColumn": 115, + "endOffset": 4918 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/multi/values-da.json b/android/build/intermediates/blame/res/androidTest/debug/multi/values-da.json new file mode 100644 index 000000000..cce163a93 --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/multi/values-da.json @@ -0,0 +1,539 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-da/values-da.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 102, + "endOffset": 153 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-da/values-da.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 102, + "endOffset": 153 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 158, + "endColumn": 107, + "endOffset": 261 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-da/values-da.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 158, + "endColumn": 107, + "endOffset": 261 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 266, + "endColumn": 122, + "endOffset": 384 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-da/values-da.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 266, + "endColumn": 122, + "endOffset": 384 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 389, + "endColumn": 98, + "endOffset": 483 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-da/values-da.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 389, + "endColumn": 98, + "endOffset": 483 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 488, + "endColumn": 111, + "endOffset": 595 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-da/values-da.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 488, + "endColumn": 111, + "endOffset": 595 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 600, + "endColumn": 82, + "endOffset": 678 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-da/values-da.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 600, + "endColumn": 82, + "endOffset": 678 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 683, + "endColumn": 99, + "endOffset": 778 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-da/values-da.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 683, + "endColumn": 99, + "endOffset": 778 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 783, + "endColumn": 112, + "endOffset": 891 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-da/values-da.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 783, + "endColumn": 112, + "endOffset": 891 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 896, + "endColumn": 76, + "endOffset": 968 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-da/values-da.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 896, + "endColumn": 76, + "endOffset": 968 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 973, + "endColumn": 76, + "endOffset": 1045 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-da/values-da.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 973, + "endColumn": 76, + "endOffset": 1045 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1050, + "endColumn": 78, + "endOffset": 1124 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-da/values-da.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1050, + "endColumn": 78, + "endOffset": 1124 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1129, + "endColumn": 108, + "endOffset": 1233 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-da/values-da.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1129, + "endColumn": 108, + "endOffset": 1233 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1238, + "endColumn": 107, + "endOffset": 1341 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-da/values-da.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1238, + "endColumn": 107, + "endOffset": 1341 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1346, + "endColumn": 95, + "endOffset": 1437 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-da/values-da.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1346, + "endColumn": 95, + "endOffset": 1437 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1442, + "endColumn": 113, + "endOffset": 1551 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-da/values-da.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1442, + "endColumn": 113, + "endOffset": 1551 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1556, + "endColumn": 101, + "endOffset": 1653 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-da/values-da.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1556, + "endColumn": 101, + "endOffset": 1653 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1658, + "endColumn": 100, + "endOffset": 1754 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-da/values-da.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1658, + "endColumn": 100, + "endOffset": 1754 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1759, + "endColumn": 115, + "endOffset": 1870 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-da/values-da.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1759, + "endColumn": 115, + "endOffset": 1870 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1875, + "endColumn": 96, + "endOffset": 1967 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-da/values-da.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1875, + "endColumn": 96, + "endOffset": 1967 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1972, + "endColumn": 53, + "endOffset": 2021 + }, + "from": { + "file": "/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/values-da/values-da.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 53, + "endOffset": 104 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2026, + "endColumn": 71, + "endOffset": 2093 + }, + "from": { + "file": "/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/values-da/values-da.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 109, + "endColumn": 71, + "endOffset": 176 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2098, + "endColumn": 78, + "endOffset": 2172 + }, + "from": { + "file": "/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/values-da/values-da.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 181, + "endColumn": 78, + "endOffset": 255 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2177, + "endColumn": 70, + "endOffset": 2243 + }, + "from": { + "file": "/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/values-da/values-da.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 260, + "endColumn": 70, + "endOffset": 326 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2248, + "endColumn": 66, + "endOffset": 2310 + }, + "from": { + "file": "/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/values-da/values-da.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 331, + "endColumn": 66, + "endOffset": 393 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2315, + "endColumn": 55, + "endOffset": 2366 + }, + "from": { + "file": "/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/values-da/values-da.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 398, + "endColumn": 55, + "endOffset": 449 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 2371, + "endColumn": 58, + "endOffset": 2425 + }, + "from": { + "file": "/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/values-da/values-da.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 454, + "endColumn": 58, + "endOffset": 508 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 2430, + "endColumn": 73, + "endOffset": 2499 + }, + "from": { + "file": "/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/values-da/values-da.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 513, + "endColumn": 73, + "endOffset": 582 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 2504, + "endColumn": 100, + "endOffset": 2600 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-da/values-da.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1972, + "endColumn": 100, + "endOffset": 2068 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/multi/values-de.json b/android/build/intermediates/blame/res/androidTest/debug/multi/values-de.json new file mode 100644 index 000000000..4ab3e64c8 --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/multi/values-de.json @@ -0,0 +1,1717 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-de/values-de.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 104, + "endOffset": 155 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-de/values-de.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 104, + "endOffset": 155 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 160, + "endColumn": 107, + "endOffset": 263 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-de/values-de.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 160, + "endColumn": 107, + "endOffset": 263 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 268, + "endColumn": 122, + "endOffset": 386 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-de/values-de.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 268, + "endColumn": 122, + "endOffset": 386 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 391, + "endColumn": 97, + "endOffset": 484 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-de/values-de.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 391, + "endColumn": 97, + "endOffset": 484 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 489, + "endColumn": 111, + "endOffset": 596 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-de/values-de.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 489, + "endColumn": 111, + "endOffset": 596 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 601, + "endColumn": 85, + "endOffset": 682 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-de/values-de.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 601, + "endColumn": 85, + "endOffset": 682 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 687, + "endColumn": 104, + "endOffset": 787 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-de/values-de.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 687, + "endColumn": 104, + "endOffset": 787 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 792, + "endColumn": 114, + "endOffset": 902 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-de/values-de.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 792, + "endColumn": 114, + "endOffset": 902 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 907, + "endColumn": 76, + "endOffset": 979 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-de/values-de.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 907, + "endColumn": 76, + "endOffset": 979 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 984, + "endColumn": 75, + "endOffset": 1055 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-de/values-de.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 984, + "endColumn": 75, + "endOffset": 1055 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1060, + "endColumn": 81, + "endOffset": 1137 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-de/values-de.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1060, + "endColumn": 81, + "endOffset": 1137 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1142, + "endColumn": 110, + "endOffset": 1248 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-de/values-de.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1142, + "endColumn": 110, + "endOffset": 1248 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1253, + "endColumn": 102, + "endOffset": 1351 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-de/values-de.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1253, + "endColumn": 102, + "endOffset": 1351 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1356, + "endColumn": 98, + "endOffset": 1450 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-de/values-de.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1356, + "endColumn": 98, + "endOffset": 1450 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1455, + "endColumn": 110, + "endOffset": 1561 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-de/values-de.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1455, + "endColumn": 110, + "endOffset": 1561 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1566, + "endColumn": 101, + "endOffset": 1663 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-de/values-de.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1566, + "endColumn": 101, + "endOffset": 1663 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1668, + "endColumn": 106, + "endOffset": 1770 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-de/values-de.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1668, + "endColumn": 106, + "endOffset": 1770 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1775, + "endColumn": 121, + "endOffset": 1892 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-de/values-de.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1775, + "endColumn": 121, + "endOffset": 1892 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1897, + "endColumn": 101, + "endOffset": 1994 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-de/values-de.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1897, + "endColumn": 101, + "endOffset": 1994 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1999, + "endColumn": 54, + "endOffset": 2049 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-de/values-de.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 54, + "endOffset": 105 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2054, + "endColumn": 45, + "endOffset": 2095 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-de/values-de.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 110, + "endColumn": 45, + "endOffset": 151 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2100, + "endColumn": 49, + "endOffset": 2145 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-de/values-de.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 156, + "endColumn": 49, + "endOffset": 201 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2150, + "endColumn": 47, + "endOffset": 2193 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-de/values-de.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 206, + "endColumn": 47, + "endOffset": 249 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2198, + "endColumn": 42, + "endOffset": 2236 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-de/values-de.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 254, + "endColumn": 42, + "endOffset": 292 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2241, + "endColumn": 64, + "endOffset": 2301 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-de/values-de.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 297, + "endColumn": 64, + "endOffset": 357 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 2306, + "endColumn": 51, + "endOffset": 2353 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-de/values-de.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 362, + "endColumn": 51, + "endOffset": 409 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 2358, + "endColumn": 47, + "endOffset": 2401 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-de/values-de.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 414, + "endColumn": 47, + "endOffset": 457 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 2406, + "endColumn": 42, + "endOffset": 2444 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-de/values-de.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 462, + "endColumn": 42, + "endOffset": 500 + } + } + }, + { + "to": { + "startLine": 30, + "startColumn": 4, + "startOffset": 2449, + "endColumn": 41, + "endOffset": 2486 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-de/values-de.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 505, + "endColumn": 41, + "endOffset": 542 + } + } + }, + { + "to": { + "startLine": 31, + "startColumn": 4, + "startOffset": 2491, + "endColumn": 54, + "endOffset": 2541 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-de/values-de.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 547, + "endColumn": 54, + "endOffset": 597 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 2546, + "endColumn": 167, + "endOffset": 2709 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-de/values-de.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 602, + "endColumn": 167, + "endOffset": 765 + } + } + }, + { + "to": { + "startLine": 33, + "startColumn": 4, + "startOffset": 2714, + "endColumn": 56, + "endOffset": 2766 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-de/values-de.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 770, + "endColumn": 56, + "endOffset": 822 + } + } + }, + { + "to": { + "startLine": 34, + "startColumn": 4, + "startOffset": 2771, + "endColumn": 67, + "endOffset": 2834 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-de/values-de.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 827, + "endColumn": 67, + "endOffset": 890 + } + } + }, + { + "to": { + "startLine": 35, + "startColumn": 4, + "startOffset": 2839, + "endColumn": 163, + "endOffset": 2998 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-de/values-de.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 895, + "endColumn": 163, + "endOffset": 1054 + } + } + }, + { + "to": { + "startLine": 36, + "startColumn": 4, + "startOffset": 3003, + "endColumn": 61, + "endOffset": 3060 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-de/values-de.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1059, + "endColumn": 61, + "endOffset": 1116 + } + } + }, + { + "to": { + "startLine": 37, + "startColumn": 4, + "startOffset": 3065, + "endColumn": 85, + "endOffset": 3146 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-de/values-de.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1121, + "endColumn": 85, + "endOffset": 1202 + } + } + }, + { + "to": { + "startLine": 38, + "startColumn": 4, + "startOffset": 3151, + "endColumn": 58, + "endOffset": 3205 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-de/values-de.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1207, + "endColumn": 58, + "endOffset": 1261 + } + } + }, + { + "to": { + "startLine": 39, + "startColumn": 4, + "startOffset": 3210, + "endColumn": 159, + "endOffset": 3365 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-de/values-de.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1266, + "endColumn": 159, + "endOffset": 1421 + } + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 3370, + "endColumn": 44, + "endOffset": 3410 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-de/values-de.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1426, + "endColumn": 44, + "endOffset": 1466 + } + } + }, + { + "to": { + "startLine": 41, + "startColumn": 4, + "startOffset": 3415, + "endColumn": 53, + "endOffset": 3464 + }, + "from": { + "file": "/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/values-de/values-de.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 53, + "endOffset": 104 + } + } + }, + { + "to": { + "startLine": 42, + "startColumn": 4, + "startOffset": 3469, + "endColumn": 74, + "endOffset": 3539 + }, + "from": { + "file": "/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/values-de/values-de.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 109, + "endColumn": 74, + "endOffset": 179 + } + } + }, + { + "to": { + "startLine": 43, + "startColumn": 4, + "startOffset": 3544, + "endColumn": 78, + "endOffset": 3618 + }, + "from": { + "file": "/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/values-de/values-de.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 184, + "endColumn": 78, + "endOffset": 258 + } + } + }, + { + "to": { + "startLine": 44, + "startColumn": 4, + "startOffset": 3623, + "endColumn": 70, + "endOffset": 3689 + }, + "from": { + "file": "/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/values-de/values-de.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 263, + "endColumn": 70, + "endOffset": 329 + } + } + }, + { + "to": { + "startLine": 45, + "startColumn": 4, + "startOffset": 3694, + "endColumn": 70, + "endOffset": 3760 + }, + "from": { + "file": "/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/values-de/values-de.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 334, + "endColumn": 70, + "endOffset": 400 + } + } + }, + { + "to": { + "startLine": 46, + "startColumn": 4, + "startOffset": 3765, + "endColumn": 55, + "endOffset": 3816 + }, + "from": { + "file": "/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/values-de/values-de.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 405, + "endColumn": 55, + "endOffset": 456 + } + } + }, + { + "to": { + "startLine": 47, + "startColumn": 4, + "startOffset": 3821, + "endColumn": 58, + "endOffset": 3875 + }, + "from": { + "file": "/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/values-de/values-de.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 461, + "endColumn": 58, + "endOffset": 515 + } + } + }, + { + "to": { + "startLine": 48, + "startColumn": 4, + "startOffset": 3880, + "endColumn": 73, + "endOffset": 3949 + }, + "from": { + "file": "/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/values-de/values-de.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 520, + "endColumn": 73, + "endOffset": 589 + } + } + }, + { + "to": { + "startLine": 49, + "startColumn": 4, + "startOffset": 3954, + "endColumn": 48, + "endOffset": 3998 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-de/values-de.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 1471, + "endColumn": 48, + "endOffset": 1515 + } + } + }, + { + "to": { + "startLine": 50, + "startColumn": 4, + "startOffset": 4003, + "endColumn": 100, + "endOffset": 4099 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-de/values-de.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 1520, + "endColumn": 100, + "endOffset": 1616 + } + } + }, + { + "to": { + "startLine": 51, + "startColumn": 4, + "startOffset": 4104, + "endColumn": 79, + "endOffset": 4179 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-de/values-de.xml", + "position": { + "startLine": 24, + "startColumn": 4, + "startOffset": 1621, + "endColumn": 79, + "endOffset": 1696 + } + } + }, + { + "to": { + "startLine": 52, + "startColumn": 4, + "startOffset": 4184, + "endColumn": 102, + "endOffset": 4282 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-de/values-de.xml", + "position": { + "startLine": 25, + "startColumn": 4, + "startOffset": 1701, + "endColumn": 102, + "endOffset": 1799 + } + } + }, + { + "to": { + "startLine": 53, + "startColumn": 4, + "startOffset": 4287, + "endColumn": 52, + "endOffset": 4335 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-de/values-de.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 1804, + "endColumn": 52, + "endOffset": 1852 + } + } + }, + { + "to": { + "startLine": 54, + "startColumn": 4, + "startOffset": 4340, + "endColumn": 66, + "endOffset": 4402 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-de/values-de.xml", + "position": { + "startLine": 27, + "startColumn": 4, + "startOffset": 1857, + "endColumn": 66, + "endOffset": 1919 + } + } + }, + { + "to": { + "startLine": 55, + "startColumn": 4, + "startOffset": 4407, + "endColumn": 150, + "endOffset": 4553 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-de/values-de.xml", + "position": { + "startLine": 28, + "startColumn": 4, + "startOffset": 1924, + "endColumn": 150, + "endOffset": 2070 + } + } + }, + { + "to": { + "startLine": 56, + "startColumn": 4, + "startOffset": 4558, + "endColumn": 53, + "endOffset": 4607 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-de/values-de.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 2075, + "endColumn": 53, + "endOffset": 2124 + } + } + }, + { + "to": { + "startLine": 57, + "startColumn": 4, + "startOffset": 4612, + "endColumn": 75, + "endOffset": 4683 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-de/values-de.xml", + "position": { + "startLine": 30, + "startColumn": 4, + "startOffset": 2129, + "endColumn": 75, + "endOffset": 2200 + } + } + }, + { + "to": { + "startLine": 58, + "startColumn": 4, + "startOffset": 4688, + "endColumn": 76, + "endOffset": 4760 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-de/values-de.xml", + "position": { + "startLine": 31, + "startColumn": 4, + "startOffset": 2205, + "endColumn": 76, + "endOffset": 2277 + } + } + }, + { + "to": { + "startLine": 59, + "startColumn": 4, + "startOffset": 4765, + "endColumn": 65, + "endOffset": 4826 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-de/values-de.xml", + "position": { + "startLine": 32, + "startColumn": 4, + "startOffset": 2282, + "endColumn": 65, + "endOffset": 2343 + } + } + }, + { + "to": { + "startLine": 60, + "startColumn": 4, + "startOffset": 4831, + "endColumn": 64, + "endOffset": 4891 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-de/values-de.xml", + "position": { + "startLine": 33, + "startColumn": 4, + "startOffset": 2348, + "endColumn": 64, + "endOffset": 2408 + } + } + }, + { + "to": { + "startLine": 61, + "startColumn": 4, + "startOffset": 4896, + "endColumn": 61, + "endOffset": 4953 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-de/values-de.xml", + "position": { + "startLine": 34, + "startColumn": 4, + "startOffset": 2413, + "endColumn": 61, + "endOffset": 2470 + } + } + }, + { + "to": { + "startLine": 62, + "startColumn": 4, + "startOffset": 4958, + "endColumn": 235, + "endOffset": 5189 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-de/values-de.xml", + "position": { + "startLine": 35, + "startColumn": 4, + "startOffset": 2475, + "endColumn": 235, + "endOffset": 2706 + } + } + }, + { + "to": { + "startLine": 63, + "startColumn": 4, + "startOffset": 5194, + "endColumn": 60, + "endOffset": 5250 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-de/values-de.xml", + "position": { + "startLine": 36, + "startColumn": 4, + "startOffset": 2711, + "endColumn": 60, + "endOffset": 2767 + } + } + }, + { + "to": { + "startLine": 64, + "startColumn": 4, + "startOffset": 5255, + "endColumn": 50, + "endOffset": 5301 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-de/values-de.xml", + "position": { + "startLine": 37, + "startColumn": 4, + "startOffset": 2772, + "endColumn": 50, + "endOffset": 2818 + } + } + }, + { + "to": { + "startLine": 65, + "startColumn": 4, + "startOffset": 5306, + "endColumn": 59, + "endOffset": 5361 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-de/values-de.xml", + "position": { + "startLine": 38, + "startColumn": 4, + "startOffset": 2823, + "endColumn": 59, + "endOffset": 2878 + } + } + }, + { + "to": { + "startLine": 66, + "startColumn": 4, + "startOffset": 5366, + "endColumn": 70, + "endOffset": 5432 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-de/values-de.xml", + "position": { + "startLine": 39, + "startColumn": 4, + "startOffset": 2883, + "endColumn": 70, + "endOffset": 2949 + } + } + }, + { + "to": { + "startLine": 67, + "startColumn": 4, + "startOffset": 5437, + "endColumn": 54, + "endOffset": 5487 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-de/values-de.xml", + "position": { + "startLine": 40, + "startColumn": 4, + "startOffset": 2954, + "endColumn": 54, + "endOffset": 3004 + } + } + }, + { + "to": { + "startLine": 68, + "startColumn": 4, + "startOffset": 5492, + "endColumn": 84, + "endOffset": 5572 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-de/values-de.xml", + "position": { + "startLine": 41, + "startColumn": 4, + "startOffset": 3009, + "endColumn": 84, + "endOffset": 3089 + } + } + }, + { + "to": { + "startLine": 69, + "startColumn": 4, + "startOffset": 5577, + "endColumn": 276, + "endOffset": 5849 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-de/values-de.xml", + "position": { + "startLine": 42, + "startColumn": 4, + "startOffset": 3094, + "endColumn": 276, + "endOffset": 3366 + } + } + }, + { + "to": { + "startLine": 70, + "startColumn": 4, + "startOffset": 5854, + "endColumn": 223, + "endOffset": 6073 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-de/values-de.xml", + "position": { + "startLine": 43, + "startColumn": 4, + "startOffset": 3371, + "endColumn": 223, + "endOffset": 3590 + } + } + }, + { + "to": { + "startLine": 71, + "startColumn": 4, + "startOffset": 6078, + "endColumn": 92, + "endOffset": 6166 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-de/values-de.xml", + "position": { + "startLine": 44, + "startColumn": 4, + "startOffset": 3595, + "endColumn": 92, + "endOffset": 3683 + } + } + }, + { + "to": { + "startLine": 72, + "startColumn": 4, + "startOffset": 6171, + "endColumn": 117, + "endOffset": 6284 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-de/values-de.xml", + "position": { + "startLine": 45, + "startColumn": 4, + "startOffset": 3688, + "endColumn": 117, + "endOffset": 3801 + } + } + }, + { + "to": { + "startLine": 73, + "startColumn": 4, + "startOffset": 6289, + "endColumn": 57, + "endOffset": 6342 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-de/values-de.xml", + "position": { + "startLine": 46, + "startColumn": 4, + "startOffset": 3806, + "endColumn": 57, + "endOffset": 3859 + } + } + }, + { + "to": { + "startLine": 74, + "startColumn": 4, + "startOffset": 6347, + "endColumn": 83, + "endOffset": 6426 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-de/values-de.xml", + "position": { + "startLine": 47, + "startColumn": 4, + "startOffset": 3864, + "endColumn": 83, + "endOffset": 3943 + } + } + }, + { + "to": { + "startLine": 75, + "startColumn": 4, + "startOffset": 6431, + "endColumn": 50, + "endOffset": 6477 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-de/values-de.xml", + "position": { + "startLine": 48, + "startColumn": 4, + "startOffset": 3948, + "endColumn": 50, + "endOffset": 3994 + } + } + }, + { + "to": { + "startLine": 76, + "startColumn": 4, + "startOffset": 6482, + "endColumn": 54, + "endOffset": 6532 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-de/values-de.xml", + "position": { + "startLine": 49, + "startColumn": 4, + "startOffset": 3999, + "endColumn": 54, + "endOffset": 4049 + } + } + }, + { + "to": { + "startLine": 77, + "startColumn": 4, + "startOffset": 6537, + "endColumn": 141, + "endOffset": 6674 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-de/values-de.xml", + "position": { + "startLine": 50, + "startColumn": 4, + "startOffset": 4054, + "endColumn": 141, + "endOffset": 4191 + } + } + }, + { + "to": { + "startLine": 78, + "startColumn": 4, + "startOffset": 6679, + "endColumn": 94, + "endOffset": 6769 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-de/values-de.xml", + "position": { + "startLine": 51, + "startColumn": 4, + "startOffset": 4196, + "endColumn": 94, + "endOffset": 4286 + } + } + }, + { + "to": { + "startLine": 79, + "startColumn": 4, + "startOffset": 6774, + "endColumn": 60, + "endOffset": 6830 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-de/values-de.xml", + "position": { + "startLine": 52, + "startColumn": 4, + "startOffset": 4291, + "endColumn": 60, + "endOffset": 4347 + } + } + }, + { + "to": { + "startLine": 80, + "startColumn": 4, + "startOffset": 6835, + "endColumn": 61, + "endOffset": 6892 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-de/values-de.xml", + "position": { + "startLine": 53, + "startColumn": 4, + "startOffset": 4352, + "endColumn": 61, + "endOffset": 4409 + } + } + }, + { + "to": { + "startLine": 81, + "startColumn": 4, + "startOffset": 6897, + "endColumn": 192, + "endOffset": 7085 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-de/values-de.xml", + "position": { + "startLine": 54, + "startColumn": 4, + "startOffset": 4414, + "endColumn": 192, + "endOffset": 4602 + } + } + }, + { + "to": { + "startLine": 82, + "startColumn": 4, + "startOffset": 7090, + "endColumn": 65, + "endOffset": 7151 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-de/values-de.xml", + "position": { + "startLine": 55, + "startColumn": 4, + "startOffset": 4607, + "endColumn": 65, + "endOffset": 4668 + } + } + }, + { + "to": { + "startLine": 83, + "startColumn": 4, + "startOffset": 7156, + "endColumn": 100, + "endOffset": 7252 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-de/values-de.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1999, + "endColumn": 100, + "endOffset": 2095 + } + } + }, + { + "to": { + "startLine": 84, + "startColumn": 4, + "startOffset": 7257, + "endColumn": 57, + "endOffset": 7310 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-de/values-de.xml", + "position": { + "startLine": 56, + "startColumn": 4, + "startOffset": 4673, + "endColumn": 57, + "endOffset": 4726 + } + } + }, + { + "to": { + "startLine": 85, + "startColumn": 4, + "startOffset": 7315, + "endColumn": 96, + "endOffset": 7407 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-de/values-de.xml", + "position": { + "startLine": 57, + "startColumn": 4, + "startOffset": 4731, + "endColumn": 96, + "endOffset": 4823 + } + } + }, + { + "to": { + "startLine": 86, + "startColumn": 4, + "startOffset": 7412, + "endColumn": 52, + "endOffset": 7460 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-de/values-de.xml", + "position": { + "startLine": 58, + "startColumn": 4, + "startOffset": 4828, + "endColumn": 52, + "endOffset": 4876 + } + } + }, + { + "to": { + "startLine": 87, + "startColumn": 4, + "startOffset": 7465, + "endColumn": 86, + "endOffset": 7547 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-de/values-de.xml", + "position": { + "startLine": 59, + "startColumn": 4, + "startOffset": 4881, + "endColumn": 86, + "endOffset": 4963 + } + } + }, + { + "to": { + "startLine": 88, + "startColumn": 4, + "startOffset": 7552, + "endColumn": 85, + "endOffset": 7633 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-de/values-de.xml", + "position": { + "startLine": 60, + "startColumn": 4, + "startOffset": 4968, + "endColumn": 85, + "endOffset": 5049 + } + } + }, + { + "to": { + "startLine": 89, + "startColumn": 4, + "startOffset": 7638, + "endColumn": 58, + "endOffset": 7692 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-de/values-de.xml", + "position": { + "startLine": 61, + "startColumn": 4, + "startOffset": 5054, + "endColumn": 58, + "endOffset": 5108 + } + } + }, + { + "to": { + "startLine": 90, + "startColumn": 4, + "startOffset": 7697, + "endColumn": 59, + "endOffset": 7752 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-de/values-de.xml", + "position": { + "startLine": 62, + "startColumn": 4, + "startOffset": 5113, + "endColumn": 59, + "endOffset": 5168 + } + } + }, + { + "to": { + "startLine": 91, + "startColumn": 4, + "startOffset": 7757, + "endColumn": 142, + "endOffset": 7895 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-de/values-de.xml", + "position": { + "startLine": 63, + "startColumn": 4, + "startOffset": 5173, + "endColumn": 142, + "endOffset": 5311 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/multi/values-el.json b/android/build/intermediates/blame/res/androidTest/debug/multi/values-el.json new file mode 100644 index 000000000..5aa00d824 --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/multi/values-el.json @@ -0,0 +1,539 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-el/values-el.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 117, + "endOffset": 168 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-el/values-el.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 117, + "endOffset": 168 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 173, + "endColumn": 107, + "endOffset": 276 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-el/values-el.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 173, + "endColumn": 107, + "endOffset": 276 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 281, + "endColumn": 122, + "endOffset": 399 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-el/values-el.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 281, + "endColumn": 122, + "endOffset": 399 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 404, + "endColumn": 110, + "endOffset": 510 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-el/values-el.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 404, + "endColumn": 110, + "endOffset": 510 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 515, + "endColumn": 116, + "endOffset": 627 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-el/values-el.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 515, + "endColumn": 116, + "endOffset": 627 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 632, + "endColumn": 84, + "endOffset": 712 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-el/values-el.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 632, + "endColumn": 84, + "endOffset": 712 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 717, + "endColumn": 104, + "endOffset": 817 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-el/values-el.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 717, + "endColumn": 104, + "endOffset": 817 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 822, + "endColumn": 125, + "endOffset": 943 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-el/values-el.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 822, + "endColumn": 125, + "endOffset": 943 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 948, + "endColumn": 87, + "endOffset": 1031 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-el/values-el.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 948, + "endColumn": 87, + "endOffset": 1031 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1036, + "endColumn": 85, + "endOffset": 1117 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-el/values-el.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1036, + "endColumn": 85, + "endOffset": 1117 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1122, + "endColumn": 84, + "endOffset": 1202 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-el/values-el.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1122, + "endColumn": 84, + "endOffset": 1202 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1207, + "endColumn": 110, + "endOffset": 1313 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-el/values-el.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1207, + "endColumn": 110, + "endOffset": 1313 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1318, + "endColumn": 109, + "endOffset": 1423 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-el/values-el.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1318, + "endColumn": 109, + "endOffset": 1423 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1428, + "endColumn": 101, + "endOffset": 1525 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-el/values-el.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1428, + "endColumn": 101, + "endOffset": 1525 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1530, + "endColumn": 110, + "endOffset": 1636 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-el/values-el.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1530, + "endColumn": 110, + "endOffset": 1636 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1641, + "endColumn": 108, + "endOffset": 1745 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-el/values-el.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1641, + "endColumn": 108, + "endOffset": 1745 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1750, + "endColumn": 107, + "endOffset": 1853 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-el/values-el.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1750, + "endColumn": 107, + "endOffset": 1853 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1858, + "endColumn": 122, + "endOffset": 1976 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-el/values-el.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1858, + "endColumn": 122, + "endOffset": 1976 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1981, + "endColumn": 99, + "endOffset": 2076 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-el/values-el.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1981, + "endColumn": 99, + "endOffset": 2076 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2081, + "endColumn": 53, + "endOffset": 2130 + }, + "from": { + "file": "/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/values-el/values-el.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 53, + "endOffset": 104 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2135, + "endColumn": 72, + "endOffset": 2203 + }, + "from": { + "file": "/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/values-el/values-el.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 109, + "endColumn": 72, + "endOffset": 177 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2208, + "endColumn": 78, + "endOffset": 2282 + }, + "from": { + "file": "/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/values-el/values-el.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 182, + "endColumn": 78, + "endOffset": 256 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2287, + "endColumn": 70, + "endOffset": 2353 + }, + "from": { + "file": "/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/values-el/values-el.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 261, + "endColumn": 70, + "endOffset": 327 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2358, + "endColumn": 63, + "endOffset": 2417 + }, + "from": { + "file": "/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/values-el/values-el.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 332, + "endColumn": 63, + "endOffset": 391 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2422, + "endColumn": 55, + "endOffset": 2473 + }, + "from": { + "file": "/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/values-el/values-el.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 396, + "endColumn": 55, + "endOffset": 447 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 2478, + "endColumn": 58, + "endOffset": 2532 + }, + "from": { + "file": "/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/values-el/values-el.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 452, + "endColumn": 58, + "endOffset": 506 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 2537, + "endColumn": 73, + "endOffset": 2606 + }, + "from": { + "file": "/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/values-el/values-el.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 511, + "endColumn": 73, + "endOffset": 580 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 2611, + "endColumn": 100, + "endOffset": 2707 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-el/values-el.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2081, + "endColumn": 100, + "endOffset": 2177 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/multi/values-en-rAU.json b/android/build/intermediates/blame/res/androidTest/debug/multi/values-en-rAU.json new file mode 100644 index 000000000..cff345843 --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/multi/values-en-rAU.json @@ -0,0 +1,387 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-en-rAU/values-en-rAU.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 103, + "endOffset": 154 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rAU/values-en-rAU.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 103, + "endOffset": 154 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 159, + "endColumn": 107, + "endOffset": 262 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rAU/values-en-rAU.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 159, + "endColumn": 107, + "endOffset": 262 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 267, + "endColumn": 122, + "endOffset": 385 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rAU/values-en-rAU.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 267, + "endColumn": 122, + "endOffset": 385 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 390, + "endColumn": 99, + "endOffset": 485 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rAU/values-en-rAU.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 390, + "endColumn": 99, + "endOffset": 485 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 490, + "endColumn": 107, + "endOffset": 593 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rAU/values-en-rAU.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 490, + "endColumn": 107, + "endOffset": 593 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 598, + "endColumn": 83, + "endOffset": 677 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rAU/values-en-rAU.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 598, + "endColumn": 83, + "endOffset": 677 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 682, + "endColumn": 99, + "endOffset": 777 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rAU/values-en-rAU.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 682, + "endColumn": 99, + "endOffset": 777 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 782, + "endColumn": 114, + "endOffset": 892 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rAU/values-en-rAU.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 782, + "endColumn": 114, + "endOffset": 892 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 897, + "endColumn": 76, + "endOffset": 969 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rAU/values-en-rAU.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 897, + "endColumn": 76, + "endOffset": 969 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 974, + "endColumn": 75, + "endOffset": 1045 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rAU/values-en-rAU.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 974, + "endColumn": 75, + "endOffset": 1045 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1050, + "endColumn": 81, + "endOffset": 1127 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rAU/values-en-rAU.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1050, + "endColumn": 81, + "endOffset": 1127 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1132, + "endColumn": 102, + "endOffset": 1230 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rAU/values-en-rAU.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1132, + "endColumn": 102, + "endOffset": 1230 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1235, + "endColumn": 103, + "endOffset": 1334 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rAU/values-en-rAU.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1235, + "endColumn": 103, + "endOffset": 1334 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1339, + "endColumn": 98, + "endOffset": 1433 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rAU/values-en-rAU.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1339, + "endColumn": 98, + "endOffset": 1433 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1438, + "endColumn": 104, + "endOffset": 1538 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rAU/values-en-rAU.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1438, + "endColumn": 104, + "endOffset": 1538 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1543, + "endColumn": 102, + "endOffset": 1641 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rAU/values-en-rAU.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1543, + "endColumn": 102, + "endOffset": 1641 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1646, + "endColumn": 103, + "endOffset": 1745 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rAU/values-en-rAU.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1646, + "endColumn": 103, + "endOffset": 1745 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1750, + "endColumn": 118, + "endOffset": 1864 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rAU/values-en-rAU.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1750, + "endColumn": 118, + "endOffset": 1864 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1869, + "endColumn": 99, + "endOffset": 1964 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rAU/values-en-rAU.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1869, + "endColumn": 99, + "endOffset": 1964 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1969, + "endColumn": 100, + "endOffset": 2065 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rAU/values-en-rAU.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1969, + "endColumn": 100, + "endOffset": 2065 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/multi/values-en-rGB.json b/android/build/intermediates/blame/res/androidTest/debug/multi/values-en-rGB.json new file mode 100644 index 000000000..05638011c --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/multi/values-en-rGB.json @@ -0,0 +1,539 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-en-rGB/values-en-rGB.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 103, + "endOffset": 154 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rGB/values-en-rGB.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 103, + "endOffset": 154 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 159, + "endColumn": 107, + "endOffset": 262 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rGB/values-en-rGB.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 159, + "endColumn": 107, + "endOffset": 262 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 267, + "endColumn": 122, + "endOffset": 385 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rGB/values-en-rGB.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 267, + "endColumn": 122, + "endOffset": 385 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 390, + "endColumn": 99, + "endOffset": 485 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rGB/values-en-rGB.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 390, + "endColumn": 99, + "endOffset": 485 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 490, + "endColumn": 107, + "endOffset": 593 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rGB/values-en-rGB.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 490, + "endColumn": 107, + "endOffset": 593 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 598, + "endColumn": 83, + "endOffset": 677 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rGB/values-en-rGB.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 598, + "endColumn": 83, + "endOffset": 677 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 682, + "endColumn": 99, + "endOffset": 777 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rGB/values-en-rGB.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 682, + "endColumn": 99, + "endOffset": 777 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 782, + "endColumn": 114, + "endOffset": 892 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rGB/values-en-rGB.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 782, + "endColumn": 114, + "endOffset": 892 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 897, + "endColumn": 76, + "endOffset": 969 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rGB/values-en-rGB.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 897, + "endColumn": 76, + "endOffset": 969 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 974, + "endColumn": 75, + "endOffset": 1045 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rGB/values-en-rGB.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 974, + "endColumn": 75, + "endOffset": 1045 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1050, + "endColumn": 81, + "endOffset": 1127 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rGB/values-en-rGB.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1050, + "endColumn": 81, + "endOffset": 1127 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1132, + "endColumn": 102, + "endOffset": 1230 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rGB/values-en-rGB.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1132, + "endColumn": 102, + "endOffset": 1230 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1235, + "endColumn": 103, + "endOffset": 1334 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rGB/values-en-rGB.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1235, + "endColumn": 103, + "endOffset": 1334 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1339, + "endColumn": 98, + "endOffset": 1433 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rGB/values-en-rGB.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1339, + "endColumn": 98, + "endOffset": 1433 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1438, + "endColumn": 104, + "endOffset": 1538 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rGB/values-en-rGB.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1438, + "endColumn": 104, + "endOffset": 1538 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1543, + "endColumn": 102, + "endOffset": 1641 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rGB/values-en-rGB.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1543, + "endColumn": 102, + "endOffset": 1641 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1646, + "endColumn": 103, + "endOffset": 1745 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rGB/values-en-rGB.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1646, + "endColumn": 103, + "endOffset": 1745 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1750, + "endColumn": 118, + "endOffset": 1864 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rGB/values-en-rGB.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1750, + "endColumn": 118, + "endOffset": 1864 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1869, + "endColumn": 99, + "endOffset": 1964 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rGB/values-en-rGB.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1869, + "endColumn": 99, + "endOffset": 1964 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1969, + "endColumn": 53, + "endOffset": 2018 + }, + "from": { + "file": "/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/values-en-rGB/values-en-rGB.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 53, + "endOffset": 104 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2023, + "endColumn": 69, + "endOffset": 2088 + }, + "from": { + "file": "/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/values-en-rGB/values-en-rGB.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 109, + "endColumn": 69, + "endOffset": 174 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2093, + "endColumn": 78, + "endOffset": 2167 + }, + "from": { + "file": "/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/values-en-rGB/values-en-rGB.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 179, + "endColumn": 78, + "endOffset": 253 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2172, + "endColumn": 70, + "endOffset": 2238 + }, + "from": { + "file": "/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/values-en-rGB/values-en-rGB.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 258, + "endColumn": 70, + "endOffset": 324 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2243, + "endColumn": 64, + "endOffset": 2303 + }, + "from": { + "file": "/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/values-en-rGB/values-en-rGB.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 329, + "endColumn": 64, + "endOffset": 389 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2308, + "endColumn": 55, + "endOffset": 2359 + }, + "from": { + "file": "/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/values-en-rGB/values-en-rGB.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 394, + "endColumn": 55, + "endOffset": 445 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 2364, + "endColumn": 58, + "endOffset": 2418 + }, + "from": { + "file": "/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/values-en-rGB/values-en-rGB.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 450, + "endColumn": 58, + "endOffset": 504 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 2423, + "endColumn": 73, + "endOffset": 2492 + }, + "from": { + "file": "/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/values-en-rGB/values-en-rGB.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 509, + "endColumn": 73, + "endOffset": 578 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 2497, + "endColumn": 100, + "endOffset": 2593 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rGB/values-en-rGB.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1969, + "endColumn": 100, + "endOffset": 2065 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/multi/values-en-rIN.json b/android/build/intermediates/blame/res/androidTest/debug/multi/values-en-rIN.json new file mode 100644 index 000000000..9cb49f654 --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/multi/values-en-rIN.json @@ -0,0 +1,387 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-en-rIN/values-en-rIN.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 103, + "endOffset": 154 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rIN/values-en-rIN.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 103, + "endOffset": 154 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 159, + "endColumn": 107, + "endOffset": 262 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rIN/values-en-rIN.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 159, + "endColumn": 107, + "endOffset": 262 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 267, + "endColumn": 122, + "endOffset": 385 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rIN/values-en-rIN.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 267, + "endColumn": 122, + "endOffset": 385 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 390, + "endColumn": 99, + "endOffset": 485 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rIN/values-en-rIN.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 390, + "endColumn": 99, + "endOffset": 485 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 490, + "endColumn": 107, + "endOffset": 593 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rIN/values-en-rIN.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 490, + "endColumn": 107, + "endOffset": 593 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 598, + "endColumn": 83, + "endOffset": 677 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rIN/values-en-rIN.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 598, + "endColumn": 83, + "endOffset": 677 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 682, + "endColumn": 99, + "endOffset": 777 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rIN/values-en-rIN.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 682, + "endColumn": 99, + "endOffset": 777 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 782, + "endColumn": 114, + "endOffset": 892 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rIN/values-en-rIN.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 782, + "endColumn": 114, + "endOffset": 892 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 897, + "endColumn": 76, + "endOffset": 969 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rIN/values-en-rIN.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 897, + "endColumn": 76, + "endOffset": 969 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 974, + "endColumn": 75, + "endOffset": 1045 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rIN/values-en-rIN.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 974, + "endColumn": 75, + "endOffset": 1045 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1050, + "endColumn": 81, + "endOffset": 1127 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rIN/values-en-rIN.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1050, + "endColumn": 81, + "endOffset": 1127 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1132, + "endColumn": 102, + "endOffset": 1230 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rIN/values-en-rIN.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1132, + "endColumn": 102, + "endOffset": 1230 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1235, + "endColumn": 103, + "endOffset": 1334 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rIN/values-en-rIN.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1235, + "endColumn": 103, + "endOffset": 1334 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1339, + "endColumn": 98, + "endOffset": 1433 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rIN/values-en-rIN.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1339, + "endColumn": 98, + "endOffset": 1433 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1438, + "endColumn": 104, + "endOffset": 1538 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rIN/values-en-rIN.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1438, + "endColumn": 104, + "endOffset": 1538 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1543, + "endColumn": 102, + "endOffset": 1641 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rIN/values-en-rIN.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1543, + "endColumn": 102, + "endOffset": 1641 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1646, + "endColumn": 103, + "endOffset": 1745 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rIN/values-en-rIN.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1646, + "endColumn": 103, + "endOffset": 1745 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1750, + "endColumn": 118, + "endOffset": 1864 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rIN/values-en-rIN.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1750, + "endColumn": 118, + "endOffset": 1864 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1869, + "endColumn": 99, + "endOffset": 1964 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rIN/values-en-rIN.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1869, + "endColumn": 99, + "endOffset": 1964 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1969, + "endColumn": 100, + "endOffset": 2065 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rIN/values-en-rIN.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1969, + "endColumn": 100, + "endOffset": 2065 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/multi/values-es-rES.json b/android/build/intermediates/blame/res/androidTest/debug/multi/values-es-rES.json new file mode 100644 index 000000000..8c30920f6 --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/multi/values-es-rES.json @@ -0,0 +1,159 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-es-rES/values-es-rES.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 53, + "endOffset": 104 + }, + "from": { + "file": "/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/values-es-rES/values-es-rES.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 53, + "endOffset": 104 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 109, + "endColumn": 76, + "endOffset": 181 + }, + "from": { + "file": "/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/values-es-rES/values-es-rES.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 109, + "endColumn": 76, + "endOffset": 181 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 186, + "endColumn": 78, + "endOffset": 260 + }, + "from": { + "file": "/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/values-es-rES/values-es-rES.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 186, + "endColumn": 78, + "endOffset": 260 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 265, + "endColumn": 70, + "endOffset": 331 + }, + "from": { + "file": "/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/values-es-rES/values-es-rES.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 265, + "endColumn": 70, + "endOffset": 331 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 336, + "endColumn": 59, + "endOffset": 391 + }, + "from": { + "file": "/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/values-es-rES/values-es-rES.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 336, + "endColumn": 59, + "endOffset": 391 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 396, + "endColumn": 55, + "endOffset": 447 + }, + "from": { + "file": "/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/values-es-rES/values-es-rES.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 396, + "endColumn": 55, + "endOffset": 447 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 452, + "endColumn": 58, + "endOffset": 506 + }, + "from": { + "file": "/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/values-es-rES/values-es-rES.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 452, + "endColumn": 58, + "endOffset": 506 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 511, + "endColumn": 73, + "endOffset": 580 + }, + "from": { + "file": "/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/values-es-rES/values-es-rES.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 511, + "endColumn": 73, + "endOffset": 580 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/multi/values-es-rUS.json b/android/build/intermediates/blame/res/androidTest/debug/multi/values-es-rUS.json new file mode 100644 index 000000000..3ec388bed --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/multi/values-es-rUS.json @@ -0,0 +1,387 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-es-rUS/values-es-rUS.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 119, + "endOffset": 170 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-es-rUS/values-es-rUS.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 119, + "endOffset": 170 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 175, + "endColumn": 107, + "endOffset": 278 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-es-rUS/values-es-rUS.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 175, + "endColumn": 107, + "endOffset": 278 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 283, + "endColumn": 122, + "endOffset": 401 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-es-rUS/values-es-rUS.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 283, + "endColumn": 122, + "endOffset": 401 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 406, + "endColumn": 108, + "endOffset": 510 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-es-rUS/values-es-rUS.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 406, + "endColumn": 108, + "endOffset": 510 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 515, + "endColumn": 107, + "endOffset": 618 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-es-rUS/values-es-rUS.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 515, + "endColumn": 107, + "endOffset": 618 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 623, + "endColumn": 84, + "endOffset": 703 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-es-rUS/values-es-rUS.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 623, + "endColumn": 84, + "endOffset": 703 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 708, + "endColumn": 100, + "endOffset": 804 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-es-rUS/values-es-rUS.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 708, + "endColumn": 100, + "endOffset": 804 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 809, + "endColumn": 122, + "endOffset": 927 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-es-rUS/values-es-rUS.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 809, + "endColumn": 122, + "endOffset": 927 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 932, + "endColumn": 83, + "endOffset": 1011 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-es-rUS/values-es-rUS.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 932, + "endColumn": 83, + "endOffset": 1011 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1016, + "endColumn": 80, + "endOffset": 1092 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-es-rUS/values-es-rUS.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1016, + "endColumn": 80, + "endOffset": 1092 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1097, + "endColumn": 81, + "endOffset": 1174 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-es-rUS/values-es-rUS.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1097, + "endColumn": 81, + "endOffset": 1174 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1179, + "endColumn": 111, + "endOffset": 1286 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-es-rUS/values-es-rUS.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1179, + "endColumn": 111, + "endOffset": 1286 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1291, + "endColumn": 111, + "endOffset": 1398 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-es-rUS/values-es-rUS.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1291, + "endColumn": 111, + "endOffset": 1398 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1403, + "endColumn": 100, + "endOffset": 1499 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-es-rUS/values-es-rUS.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1403, + "endColumn": 100, + "endOffset": 1499 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1504, + "endColumn": 107, + "endOffset": 1607 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-es-rUS/values-es-rUS.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1504, + "endColumn": 107, + "endOffset": 1607 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1612, + "endColumn": 106, + "endOffset": 1714 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-es-rUS/values-es-rUS.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1612, + "endColumn": 106, + "endOffset": 1714 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1719, + "endColumn": 106, + "endOffset": 1821 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-es-rUS/values-es-rUS.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1719, + "endColumn": 106, + "endOffset": 1821 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1826, + "endColumn": 121, + "endOffset": 1943 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-es-rUS/values-es-rUS.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1826, + "endColumn": 121, + "endOffset": 1943 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1948, + "endColumn": 99, + "endOffset": 2043 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-es-rUS/values-es-rUS.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1948, + "endColumn": 99, + "endOffset": 2043 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2048, + "endColumn": 100, + "endOffset": 2144 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-es-rUS/values-es-rUS.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2048, + "endColumn": 100, + "endOffset": 2144 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/multi/values-es.json b/android/build/intermediates/blame/res/androidTest/debug/multi/values-es.json new file mode 100644 index 000000000..aab6d278d --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/multi/values-es.json @@ -0,0 +1,1717 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-es/values-es.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 116, + "endOffset": 167 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-es/values-es.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 116, + "endOffset": 167 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 172, + "endColumn": 107, + "endOffset": 275 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-es/values-es.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 172, + "endColumn": 107, + "endOffset": 275 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 280, + "endColumn": 122, + "endOffset": 398 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-es/values-es.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 280, + "endColumn": 122, + "endOffset": 398 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 403, + "endColumn": 112, + "endOffset": 511 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-es/values-es.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 403, + "endColumn": 112, + "endOffset": 511 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 516, + "endColumn": 107, + "endOffset": 619 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-es/values-es.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 516, + "endColumn": 107, + "endOffset": 619 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 624, + "endColumn": 84, + "endOffset": 704 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-es/values-es.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 624, + "endColumn": 84, + "endOffset": 704 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 709, + "endColumn": 100, + "endOffset": 805 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-es/values-es.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 709, + "endColumn": 100, + "endOffset": 805 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 810, + "endColumn": 127, + "endOffset": 933 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-es/values-es.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 810, + "endColumn": 127, + "endOffset": 933 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 938, + "endColumn": 75, + "endOffset": 1009 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-es/values-es.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 938, + "endColumn": 75, + "endOffset": 1009 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1014, + "endColumn": 75, + "endOffset": 1085 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-es/values-es.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1014, + "endColumn": 75, + "endOffset": 1085 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1090, + "endColumn": 81, + "endOffset": 1167 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-es/values-es.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1090, + "endColumn": 81, + "endOffset": 1167 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1172, + "endColumn": 106, + "endOffset": 1274 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-es/values-es.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1172, + "endColumn": 106, + "endOffset": 1274 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1279, + "endColumn": 99, + "endOffset": 1374 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-es/values-es.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1279, + "endColumn": 99, + "endOffset": 1374 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1379, + "endColumn": 98, + "endOffset": 1473 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-es/values-es.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1379, + "endColumn": 98, + "endOffset": 1473 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1478, + "endColumn": 107, + "endOffset": 1581 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-es/values-es.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1478, + "endColumn": 107, + "endOffset": 1581 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1586, + "endColumn": 106, + "endOffset": 1688 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-es/values-es.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1586, + "endColumn": 106, + "endOffset": 1688 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1693, + "endColumn": 106, + "endOffset": 1795 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-es/values-es.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1693, + "endColumn": 106, + "endOffset": 1795 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1800, + "endColumn": 121, + "endOffset": 1917 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-es/values-es.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1800, + "endColumn": 121, + "endOffset": 1917 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1922, + "endColumn": 99, + "endOffset": 2017 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-es/values-es.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1922, + "endColumn": 99, + "endOffset": 2017 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2022, + "endColumn": 54, + "endOffset": 2072 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-es/values-es.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 54, + "endOffset": 105 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2077, + "endColumn": 50, + "endOffset": 2123 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-es/values-es.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 110, + "endColumn": 50, + "endOffset": 156 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2128, + "endColumn": 50, + "endOffset": 2174 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-es/values-es.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 161, + "endColumn": 50, + "endOffset": 207 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2179, + "endColumn": 50, + "endOffset": 2225 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-es/values-es.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 212, + "endColumn": 50, + "endOffset": 258 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2230, + "endColumn": 47, + "endOffset": 2273 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-es/values-es.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 263, + "endColumn": 47, + "endOffset": 306 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2278, + "endColumn": 68, + "endOffset": 2342 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-es/values-es.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 311, + "endColumn": 68, + "endOffset": 375 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 2347, + "endColumn": 50, + "endOffset": 2393 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-es/values-es.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 380, + "endColumn": 50, + "endOffset": 426 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 2398, + "endColumn": 48, + "endOffset": 2442 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-es/values-es.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 431, + "endColumn": 48, + "endOffset": 475 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 2447, + "endColumn": 40, + "endOffset": 2483 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-es/values-es.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 480, + "endColumn": 40, + "endOffset": 516 + } + } + }, + { + "to": { + "startLine": 30, + "startColumn": 4, + "startOffset": 2488, + "endColumn": 41, + "endOffset": 2525 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-es/values-es.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 521, + "endColumn": 41, + "endOffset": 558 + } + } + }, + { + "to": { + "startLine": 31, + "startColumn": 4, + "startOffset": 2530, + "endColumn": 54, + "endOffset": 2580 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-es/values-es.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 563, + "endColumn": 54, + "endOffset": 613 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 2585, + "endColumn": 162, + "endOffset": 2743 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-es/values-es.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 618, + "endColumn": 162, + "endOffset": 776 + } + } + }, + { + "to": { + "startLine": 33, + "startColumn": 4, + "startOffset": 2748, + "endColumn": 52, + "endOffset": 2796 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-es/values-es.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 781, + "endColumn": 52, + "endOffset": 829 + } + } + }, + { + "to": { + "startLine": 34, + "startColumn": 4, + "startOffset": 2801, + "endColumn": 67, + "endOffset": 2864 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-es/values-es.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 834, + "endColumn": 67, + "endOffset": 897 + } + } + }, + { + "to": { + "startLine": 35, + "startColumn": 4, + "startOffset": 2869, + "endColumn": 162, + "endOffset": 3027 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-es/values-es.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 902, + "endColumn": 162, + "endOffset": 1060 + } + } + }, + { + "to": { + "startLine": 36, + "startColumn": 4, + "startOffset": 3032, + "endColumn": 63, + "endOffset": 3091 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-es/values-es.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1065, + "endColumn": 63, + "endOffset": 1124 + } + } + }, + { + "to": { + "startLine": 37, + "startColumn": 4, + "startOffset": 3096, + "endColumn": 80, + "endOffset": 3172 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-es/values-es.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1129, + "endColumn": 80, + "endOffset": 1205 + } + } + }, + { + "to": { + "startLine": 38, + "startColumn": 4, + "startOffset": 3177, + "endColumn": 56, + "endOffset": 3229 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-es/values-es.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1210, + "endColumn": 56, + "endOffset": 1262 + } + } + }, + { + "to": { + "startLine": 39, + "startColumn": 4, + "startOffset": 3234, + "endColumn": 148, + "endOffset": 3378 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-es/values-es.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1267, + "endColumn": 148, + "endOffset": 1411 + } + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 3383, + "endColumn": 54, + "endOffset": 3433 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-es/values-es.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1416, + "endColumn": 54, + "endOffset": 1466 + } + } + }, + { + "to": { + "startLine": 41, + "startColumn": 4, + "startOffset": 3438, + "endColumn": 53, + "endOffset": 3487 + }, + "from": { + "file": "/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/values-es/values-es.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 53, + "endOffset": 104 + } + } + }, + { + "to": { + "startLine": 42, + "startColumn": 4, + "startOffset": 3492, + "endColumn": 76, + "endOffset": 3564 + }, + "from": { + "file": "/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/values-es/values-es.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 109, + "endColumn": 76, + "endOffset": 181 + } + } + }, + { + "to": { + "startLine": 43, + "startColumn": 4, + "startOffset": 3569, + "endColumn": 78, + "endOffset": 3643 + }, + "from": { + "file": "/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/values-es/values-es.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 186, + "endColumn": 78, + "endOffset": 260 + } + } + }, + { + "to": { + "startLine": 44, + "startColumn": 4, + "startOffset": 3648, + "endColumn": 70, + "endOffset": 3714 + }, + "from": { + "file": "/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/values-es/values-es.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 265, + "endColumn": 70, + "endOffset": 331 + } + } + }, + { + "to": { + "startLine": 45, + "startColumn": 4, + "startOffset": 3719, + "endColumn": 59, + "endOffset": 3774 + }, + "from": { + "file": "/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/values-es/values-es.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 336, + "endColumn": 59, + "endOffset": 391 + } + } + }, + { + "to": { + "startLine": 46, + "startColumn": 4, + "startOffset": 3779, + "endColumn": 55, + "endOffset": 3830 + }, + "from": { + "file": "/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/values-es/values-es.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 396, + "endColumn": 55, + "endOffset": 447 + } + } + }, + { + "to": { + "startLine": 47, + "startColumn": 4, + "startOffset": 3835, + "endColumn": 58, + "endOffset": 3889 + }, + "from": { + "file": "/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/values-es/values-es.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 452, + "endColumn": 58, + "endOffset": 506 + } + } + }, + { + "to": { + "startLine": 48, + "startColumn": 4, + "startOffset": 3894, + "endColumn": 73, + "endOffset": 3963 + }, + "from": { + "file": "/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/values-es/values-es.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 511, + "endColumn": 73, + "endOffset": 580 + } + } + }, + { + "to": { + "startLine": 49, + "startColumn": 4, + "startOffset": 3968, + "endColumn": 48, + "endOffset": 4012 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-es/values-es.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 1471, + "endColumn": 48, + "endOffset": 1515 + } + } + }, + { + "to": { + "startLine": 50, + "startColumn": 4, + "startOffset": 4017, + "endColumn": 102, + "endOffset": 4115 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-es/values-es.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 1520, + "endColumn": 102, + "endOffset": 1618 + } + } + }, + { + "to": { + "startLine": 51, + "startColumn": 4, + "startOffset": 4120, + "endColumn": 78, + "endOffset": 4194 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-es/values-es.xml", + "position": { + "startLine": 24, + "startColumn": 4, + "startOffset": 1623, + "endColumn": 78, + "endOffset": 1697 + } + } + }, + { + "to": { + "startLine": 52, + "startColumn": 4, + "startOffset": 4199, + "endColumn": 98, + "endOffset": 4293 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-es/values-es.xml", + "position": { + "startLine": 25, + "startColumn": 4, + "startOffset": 1702, + "endColumn": 98, + "endOffset": 1796 + } + } + }, + { + "to": { + "startLine": 53, + "startColumn": 4, + "startOffset": 4298, + "endColumn": 51, + "endOffset": 4345 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-es/values-es.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 1801, + "endColumn": 51, + "endOffset": 1848 + } + } + }, + { + "to": { + "startLine": 54, + "startColumn": 4, + "startOffset": 4350, + "endColumn": 49, + "endOffset": 4395 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-es/values-es.xml", + "position": { + "startLine": 27, + "startColumn": 4, + "startOffset": 1853, + "endColumn": 49, + "endOffset": 1898 + } + } + }, + { + "to": { + "startLine": 55, + "startColumn": 4, + "startOffset": 4400, + "endColumn": 160, + "endOffset": 4556 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-es/values-es.xml", + "position": { + "startLine": 28, + "startColumn": 4, + "startOffset": 1903, + "endColumn": 160, + "endOffset": 2059 + } + } + }, + { + "to": { + "startLine": 56, + "startColumn": 4, + "startOffset": 4561, + "endColumn": 51, + "endOffset": 4608 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-es/values-es.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 2064, + "endColumn": 51, + "endOffset": 2111 + } + } + }, + { + "to": { + "startLine": 57, + "startColumn": 4, + "startOffset": 4613, + "endColumn": 73, + "endOffset": 4682 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-es/values-es.xml", + "position": { + "startLine": 30, + "startColumn": 4, + "startOffset": 2116, + "endColumn": 73, + "endOffset": 2185 + } + } + }, + { + "to": { + "startLine": 58, + "startColumn": 4, + "startOffset": 4687, + "endColumn": 83, + "endOffset": 4766 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-es/values-es.xml", + "position": { + "startLine": 31, + "startColumn": 4, + "startOffset": 2190, + "endColumn": 83, + "endOffset": 2269 + } + } + }, + { + "to": { + "startLine": 59, + "startColumn": 4, + "startOffset": 4771, + "endColumn": 74, + "endOffset": 4841 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-es/values-es.xml", + "position": { + "startLine": 32, + "startColumn": 4, + "startOffset": 2274, + "endColumn": 74, + "endOffset": 2344 + } + } + }, + { + "to": { + "startLine": 60, + "startColumn": 4, + "startOffset": 4846, + "endColumn": 70, + "endOffset": 4912 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-es/values-es.xml", + "position": { + "startLine": 33, + "startColumn": 4, + "startOffset": 2349, + "endColumn": 70, + "endOffset": 2415 + } + } + }, + { + "to": { + "startLine": 61, + "startColumn": 4, + "startOffset": 4917, + "endColumn": 61, + "endOffset": 4974 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-es/values-es.xml", + "position": { + "startLine": 34, + "startColumn": 4, + "startOffset": 2420, + "endColumn": 61, + "endOffset": 2477 + } + } + }, + { + "to": { + "startLine": 62, + "startColumn": 4, + "startOffset": 4979, + "endColumn": 216, + "endOffset": 5191 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-es/values-es.xml", + "position": { + "startLine": 35, + "startColumn": 4, + "startOffset": 2482, + "endColumn": 216, + "endOffset": 2694 + } + } + }, + { + "to": { + "startLine": 63, + "startColumn": 4, + "startOffset": 5196, + "endColumn": 59, + "endOffset": 5251 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-es/values-es.xml", + "position": { + "startLine": 36, + "startColumn": 4, + "startOffset": 2699, + "endColumn": 59, + "endOffset": 2754 + } + } + }, + { + "to": { + "startLine": 64, + "startColumn": 4, + "startOffset": 5256, + "endColumn": 50, + "endOffset": 5302 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-es/values-es.xml", + "position": { + "startLine": 37, + "startColumn": 4, + "startOffset": 2759, + "endColumn": 50, + "endOffset": 2805 + } + } + }, + { + "to": { + "startLine": 65, + "startColumn": 4, + "startOffset": 5307, + "endColumn": 62, + "endOffset": 5365 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-es/values-es.xml", + "position": { + "startLine": 38, + "startColumn": 4, + "startOffset": 2810, + "endColumn": 62, + "endOffset": 2868 + } + } + }, + { + "to": { + "startLine": 66, + "startColumn": 4, + "startOffset": 5370, + "endColumn": 66, + "endOffset": 5432 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-es/values-es.xml", + "position": { + "startLine": 39, + "startColumn": 4, + "startOffset": 2873, + "endColumn": 66, + "endOffset": 2935 + } + } + }, + { + "to": { + "startLine": 67, + "startColumn": 4, + "startOffset": 5437, + "endColumn": 50, + "endOffset": 5483 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-es/values-es.xml", + "position": { + "startLine": 40, + "startColumn": 4, + "startOffset": 2940, + "endColumn": 50, + "endOffset": 2986 + } + } + }, + { + "to": { + "startLine": 68, + "startColumn": 4, + "startOffset": 5488, + "endColumn": 70, + "endOffset": 5554 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-es/values-es.xml", + "position": { + "startLine": 41, + "startColumn": 4, + "startOffset": 2991, + "endColumn": 70, + "endOffset": 3057 + } + } + }, + { + "to": { + "startLine": 69, + "startColumn": 4, + "startOffset": 5559, + "endColumn": 222, + "endOffset": 5777 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-es/values-es.xml", + "position": { + "startLine": 42, + "startColumn": 4, + "startOffset": 3062, + "endColumn": 222, + "endOffset": 3280 + } + } + }, + { + "to": { + "startLine": 70, + "startColumn": 4, + "startOffset": 5782, + "endColumn": 182, + "endOffset": 5960 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-es/values-es.xml", + "position": { + "startLine": 43, + "startColumn": 4, + "startOffset": 3285, + "endColumn": 182, + "endOffset": 3463 + } + } + }, + { + "to": { + "startLine": 71, + "startColumn": 4, + "startOffset": 5965, + "endColumn": 78, + "endOffset": 6039 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-es/values-es.xml", + "position": { + "startLine": 44, + "startColumn": 4, + "startOffset": 3468, + "endColumn": 78, + "endOffset": 3542 + } + } + }, + { + "to": { + "startLine": 72, + "startColumn": 4, + "startOffset": 6044, + "endColumn": 109, + "endOffset": 6149 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-es/values-es.xml", + "position": { + "startLine": 45, + "startColumn": 4, + "startOffset": 3547, + "endColumn": 109, + "endOffset": 3652 + } + } + }, + { + "to": { + "startLine": 73, + "startColumn": 4, + "startOffset": 6154, + "endColumn": 55, + "endOffset": 6205 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-es/values-es.xml", + "position": { + "startLine": 46, + "startColumn": 4, + "startOffset": 3657, + "endColumn": 55, + "endOffset": 3708 + } + } + }, + { + "to": { + "startLine": 74, + "startColumn": 4, + "startOffset": 6210, + "endColumn": 85, + "endOffset": 6291 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-es/values-es.xml", + "position": { + "startLine": 47, + "startColumn": 4, + "startOffset": 3713, + "endColumn": 85, + "endOffset": 3794 + } + } + }, + { + "to": { + "startLine": 75, + "startColumn": 4, + "startOffset": 6296, + "endColumn": 50, + "endOffset": 6342 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-es/values-es.xml", + "position": { + "startLine": 48, + "startColumn": 4, + "startOffset": 3799, + "endColumn": 50, + "endOffset": 3845 + } + } + }, + { + "to": { + "startLine": 76, + "startColumn": 4, + "startOffset": 6347, + "endColumn": 63, + "endOffset": 6406 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-es/values-es.xml", + "position": { + "startLine": 49, + "startColumn": 4, + "startOffset": 3850, + "endColumn": 63, + "endOffset": 3909 + } + } + }, + { + "to": { + "startLine": 77, + "startColumn": 4, + "startOffset": 6411, + "endColumn": 147, + "endOffset": 6554 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-es/values-es.xml", + "position": { + "startLine": 50, + "startColumn": 4, + "startOffset": 3914, + "endColumn": 147, + "endOffset": 4057 + } + } + }, + { + "to": { + "startLine": 78, + "startColumn": 4, + "startOffset": 6559, + "endColumn": 94, + "endOffset": 6649 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-es/values-es.xml", + "position": { + "startLine": 51, + "startColumn": 4, + "startOffset": 4062, + "endColumn": 94, + "endOffset": 4152 + } + } + }, + { + "to": { + "startLine": 79, + "startColumn": 4, + "startOffset": 6654, + "endColumn": 64, + "endOffset": 6714 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-es/values-es.xml", + "position": { + "startLine": 52, + "startColumn": 4, + "startOffset": 4157, + "endColumn": 64, + "endOffset": 4217 + } + } + }, + { + "to": { + "startLine": 80, + "startColumn": 4, + "startOffset": 6719, + "endColumn": 65, + "endOffset": 6780 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-es/values-es.xml", + "position": { + "startLine": 53, + "startColumn": 4, + "startOffset": 4222, + "endColumn": 65, + "endOffset": 4283 + } + } + }, + { + "to": { + "startLine": 81, + "startColumn": 4, + "startOffset": 6785, + "endColumn": 219, + "endOffset": 7000 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-es/values-es.xml", + "position": { + "startLine": 54, + "startColumn": 4, + "startOffset": 4288, + "endColumn": 219, + "endOffset": 4503 + } + } + }, + { + "to": { + "startLine": 82, + "startColumn": 4, + "startOffset": 7005, + "endColumn": 65, + "endOffset": 7066 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-es/values-es.xml", + "position": { + "startLine": 55, + "startColumn": 4, + "startOffset": 4508, + "endColumn": 65, + "endOffset": 4569 + } + } + }, + { + "to": { + "startLine": 83, + "startColumn": 4, + "startOffset": 7071, + "endColumn": 100, + "endOffset": 7167 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-es/values-es.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2022, + "endColumn": 100, + "endOffset": 2118 + } + } + }, + { + "to": { + "startLine": 84, + "startColumn": 4, + "startOffset": 7172, + "endColumn": 68, + "endOffset": 7236 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-es/values-es.xml", + "position": { + "startLine": 56, + "startColumn": 4, + "startOffset": 4574, + "endColumn": 68, + "endOffset": 4638 + } + } + }, + { + "to": { + "startLine": 85, + "startColumn": 4, + "startOffset": 7241, + "endColumn": 110, + "endOffset": 7347 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-es/values-es.xml", + "position": { + "startLine": 57, + "startColumn": 4, + "startOffset": 4643, + "endColumn": 110, + "endOffset": 4749 + } + } + }, + { + "to": { + "startLine": 86, + "startColumn": 4, + "startOffset": 7352, + "endColumn": 54, + "endOffset": 7402 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-es/values-es.xml", + "position": { + "startLine": 58, + "startColumn": 4, + "startOffset": 4754, + "endColumn": 54, + "endOffset": 4804 + } + } + }, + { + "to": { + "startLine": 87, + "startColumn": 4, + "startOffset": 7407, + "endColumn": 79, + "endOffset": 7482 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-es/values-es.xml", + "position": { + "startLine": 59, + "startColumn": 4, + "startOffset": 4809, + "endColumn": 79, + "endOffset": 4884 + } + } + }, + { + "to": { + "startLine": 88, + "startColumn": 4, + "startOffset": 7487, + "endColumn": 79, + "endOffset": 7562 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-es/values-es.xml", + "position": { + "startLine": 60, + "startColumn": 4, + "startOffset": 4889, + "endColumn": 79, + "endOffset": 4964 + } + } + }, + { + "to": { + "startLine": 89, + "startColumn": 4, + "startOffset": 7567, + "endColumn": 58, + "endOffset": 7621 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-es/values-es.xml", + "position": { + "startLine": 61, + "startColumn": 4, + "startOffset": 4969, + "endColumn": 58, + "endOffset": 5023 + } + } + }, + { + "to": { + "startLine": 90, + "startColumn": 4, + "startOffset": 7626, + "endColumn": 59, + "endOffset": 7681 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-es/values-es.xml", + "position": { + "startLine": 62, + "startColumn": 4, + "startOffset": 5028, + "endColumn": 59, + "endOffset": 5083 + } + } + }, + { + "to": { + "startLine": 91, + "startColumn": 4, + "startOffset": 7686, + "endColumn": 136, + "endOffset": 7818 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-es/values-es.xml", + "position": { + "startLine": 63, + "startColumn": 4, + "startOffset": 5088, + "endColumn": 136, + "endOffset": 5220 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/multi/values-et-rEE.json b/android/build/intermediates/blame/res/androidTest/debug/multi/values-et-rEE.json new file mode 100644 index 000000000..a5359cc74 --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/multi/values-et-rEE.json @@ -0,0 +1,387 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-et-rEE/values-et-rEE.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 116, + "endOffset": 167 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-et-rEE/values-et-rEE.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 116, + "endOffset": 167 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 172, + "endColumn": 107, + "endOffset": 275 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-et-rEE/values-et-rEE.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 172, + "endColumn": 107, + "endOffset": 275 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 280, + "endColumn": 122, + "endOffset": 398 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-et-rEE/values-et-rEE.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 280, + "endColumn": 122, + "endOffset": 398 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 403, + "endColumn": 106, + "endOffset": 505 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-et-rEE/values-et-rEE.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 403, + "endColumn": 106, + "endOffset": 505 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 510, + "endColumn": 110, + "endOffset": 616 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-et-rEE/values-et-rEE.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 510, + "endColumn": 110, + "endOffset": 616 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 621, + "endColumn": 85, + "endOffset": 702 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-et-rEE/values-et-rEE.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 621, + "endColumn": 85, + "endOffset": 702 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 707, + "endColumn": 101, + "endOffset": 804 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-et-rEE/values-et-rEE.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 707, + "endColumn": 101, + "endOffset": 804 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 809, + "endColumn": 116, + "endOffset": 921 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-et-rEE/values-et-rEE.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 809, + "endColumn": 116, + "endOffset": 921 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 926, + "endColumn": 79, + "endOffset": 1001 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-et-rEE/values-et-rEE.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 926, + "endColumn": 79, + "endOffset": 1001 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1006, + "endColumn": 77, + "endOffset": 1079 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-et-rEE/values-et-rEE.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1006, + "endColumn": 77, + "endOffset": 1079 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1084, + "endColumn": 82, + "endOffset": 1162 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-et-rEE/values-et-rEE.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1084, + "endColumn": 82, + "endOffset": 1162 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1167, + "endColumn": 110, + "endOffset": 1273 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-et-rEE/values-et-rEE.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1167, + "endColumn": 110, + "endOffset": 1273 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1278, + "endColumn": 104, + "endOffset": 1378 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-et-rEE/values-et-rEE.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1278, + "endColumn": 104, + "endOffset": 1378 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1383, + "endColumn": 98, + "endOffset": 1477 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-et-rEE/values-et-rEE.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1383, + "endColumn": 98, + "endOffset": 1477 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1482, + "endColumn": 109, + "endOffset": 1587 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-et-rEE/values-et-rEE.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1482, + "endColumn": 109, + "endOffset": 1587 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1592, + "endColumn": 100, + "endOffset": 1688 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-et-rEE/values-et-rEE.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1592, + "endColumn": 100, + "endOffset": 1688 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1693, + "endColumn": 102, + "endOffset": 1791 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-et-rEE/values-et-rEE.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1693, + "endColumn": 102, + "endOffset": 1791 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1796, + "endColumn": 127, + "endOffset": 1919 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-et-rEE/values-et-rEE.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1796, + "endColumn": 127, + "endOffset": 1919 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1924, + "endColumn": 101, + "endOffset": 2021 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-et-rEE/values-et-rEE.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1924, + "endColumn": 101, + "endOffset": 2021 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2026, + "endColumn": 100, + "endOffset": 2122 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-et-rEE/values-et-rEE.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2026, + "endColumn": 100, + "endOffset": 2122 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/multi/values-eu-rES.json b/android/build/intermediates/blame/res/androidTest/debug/multi/values-eu-rES.json new file mode 100644 index 000000000..738b752d0 --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/multi/values-eu-rES.json @@ -0,0 +1,387 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-eu-rES/values-eu-rES.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 108, + "endOffset": 159 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-eu-rES/values-eu-rES.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 108, + "endOffset": 159 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 164, + "endColumn": 107, + "endOffset": 267 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-eu-rES/values-eu-rES.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 164, + "endColumn": 107, + "endOffset": 267 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 272, + "endColumn": 122, + "endOffset": 390 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-eu-rES/values-eu-rES.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 272, + "endColumn": 122, + "endOffset": 390 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 395, + "endColumn": 97, + "endOffset": 488 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-eu-rES/values-eu-rES.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 395, + "endColumn": 97, + "endOffset": 488 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 493, + "endColumn": 109, + "endOffset": 598 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-eu-rES/values-eu-rES.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 493, + "endColumn": 109, + "endOffset": 598 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 603, + "endColumn": 85, + "endOffset": 684 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-eu-rES/values-eu-rES.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 603, + "endColumn": 85, + "endOffset": 684 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 689, + "endColumn": 105, + "endOffset": 790 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-eu-rES/values-eu-rES.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 689, + "endColumn": 105, + "endOffset": 790 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 795, + "endColumn": 123, + "endOffset": 914 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-eu-rES/values-eu-rES.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 795, + "endColumn": 123, + "endOffset": 914 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 919, + "endColumn": 86, + "endOffset": 1001 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-eu-rES/values-eu-rES.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 919, + "endColumn": 86, + "endOffset": 1001 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1006, + "endColumn": 83, + "endOffset": 1085 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-eu-rES/values-eu-rES.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1006, + "endColumn": 83, + "endOffset": 1085 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1090, + "endColumn": 81, + "endOffset": 1167 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-eu-rES/values-eu-rES.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1090, + "endColumn": 81, + "endOffset": 1167 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1172, + "endColumn": 108, + "endOffset": 1276 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-eu-rES/values-eu-rES.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1172, + "endColumn": 108, + "endOffset": 1276 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1281, + "endColumn": 109, + "endOffset": 1386 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-eu-rES/values-eu-rES.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1281, + "endColumn": 109, + "endOffset": 1386 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1391, + "endColumn": 98, + "endOffset": 1485 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-eu-rES/values-eu-rES.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1391, + "endColumn": 98, + "endOffset": 1485 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1490, + "endColumn": 108, + "endOffset": 1594 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-eu-rES/values-eu-rES.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1490, + "endColumn": 108, + "endOffset": 1594 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1599, + "endColumn": 112, + "endOffset": 1707 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-eu-rES/values-eu-rES.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1599, + "endColumn": 112, + "endOffset": 1707 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1712, + "endColumn": 110, + "endOffset": 1818 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-eu-rES/values-eu-rES.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1712, + "endColumn": 110, + "endOffset": 1818 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1823, + "endColumn": 136, + "endOffset": 1955 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-eu-rES/values-eu-rES.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1823, + "endColumn": 136, + "endOffset": 1955 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1960, + "endColumn": 98, + "endOffset": 2054 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-eu-rES/values-eu-rES.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1960, + "endColumn": 98, + "endOffset": 2054 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2059, + "endColumn": 100, + "endOffset": 2155 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-eu-rES/values-eu-rES.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2059, + "endColumn": 100, + "endOffset": 2155 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/multi/values-fa.json b/android/build/intermediates/blame/res/androidTest/debug/multi/values-fa.json new file mode 100644 index 000000000..a01ba09df --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/multi/values-fa.json @@ -0,0 +1,387 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-fa/values-fa.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 109, + "endOffset": 160 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fa/values-fa.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 109, + "endOffset": 160 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 165, + "endColumn": 109, + "endOffset": 270 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fa/values-fa.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 165, + "endColumn": 109, + "endOffset": 270 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 275, + "endColumn": 125, + "endOffset": 396 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fa/values-fa.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 275, + "endColumn": 125, + "endOffset": 396 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 401, + "endColumn": 102, + "endOffset": 499 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fa/values-fa.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 401, + "endColumn": 102, + "endOffset": 499 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 504, + "endColumn": 110, + "endOffset": 610 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fa/values-fa.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 504, + "endColumn": 110, + "endOffset": 610 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 615, + "endColumn": 83, + "endOffset": 694 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fa/values-fa.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 615, + "endColumn": 83, + "endOffset": 694 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 699, + "endColumn": 102, + "endOffset": 797 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fa/values-fa.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 699, + "endColumn": 102, + "endOffset": 797 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 802, + "endColumn": 114, + "endOffset": 912 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fa/values-fa.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 802, + "endColumn": 114, + "endOffset": 912 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 917, + "endColumn": 78, + "endOffset": 991 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fa/values-fa.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 917, + "endColumn": 78, + "endOffset": 991 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 996, + "endColumn": 77, + "endOffset": 1069 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fa/values-fa.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 996, + "endColumn": 77, + "endOffset": 1069 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1074, + "endColumn": 80, + "endOffset": 1150 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fa/values-fa.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1074, + "endColumn": 80, + "endOffset": 1150 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1155, + "endColumn": 111, + "endOffset": 1262 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fa/values-fa.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1155, + "endColumn": 111, + "endOffset": 1262 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1267, + "endColumn": 102, + "endOffset": 1365 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fa/values-fa.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1267, + "endColumn": 102, + "endOffset": 1365 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1370, + "endColumn": 97, + "endOffset": 1463 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fa/values-fa.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1370, + "endColumn": 97, + "endOffset": 1463 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1468, + "endColumn": 109, + "endOffset": 1573 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fa/values-fa.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1468, + "endColumn": 109, + "endOffset": 1573 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1578, + "endColumn": 102, + "endOffset": 1676 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fa/values-fa.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1578, + "endColumn": 102, + "endOffset": 1676 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1681, + "endColumn": 108, + "endOffset": 1785 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fa/values-fa.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1681, + "endColumn": 108, + "endOffset": 1785 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1790, + "endColumn": 124, + "endOffset": 1910 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fa/values-fa.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1790, + "endColumn": 124, + "endOffset": 1910 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1915, + "endColumn": 100, + "endOffset": 2011 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fa/values-fa.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1915, + "endColumn": 100, + "endOffset": 2011 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2016, + "endColumn": 100, + "endOffset": 2112 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fa/values-fa.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2016, + "endColumn": 100, + "endOffset": 2112 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/multi/values-fb-rLL.json b/android/build/intermediates/blame/res/androidTest/debug/multi/values-fb-rLL.json new file mode 100644 index 000000000..1bd7fde22 --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/multi/values-fb-rLL.json @@ -0,0 +1,159 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-fb-rLL/values-fb-rLL.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 53, + "endOffset": 104 + }, + "from": { + "file": "/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/values-fb-rLL/values-fb-rLL.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 53, + "endOffset": 104 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 109, + "endColumn": 80, + "endOffset": 185 + }, + "from": { + "file": "/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/values-fb-rLL/values-fb-rLL.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 109, + "endColumn": 80, + "endOffset": 185 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 190, + "endColumn": 78, + "endOffset": 264 + }, + "from": { + "file": "/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/values-fb-rLL/values-fb-rLL.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 190, + "endColumn": 78, + "endOffset": 264 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 269, + "endColumn": 70, + "endOffset": 335 + }, + "from": { + "file": "/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/values-fb-rLL/values-fb-rLL.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 269, + "endColumn": 70, + "endOffset": 335 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 340, + "endColumn": 78, + "endOffset": 414 + }, + "from": { + "file": "/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/values-fb-rLL/values-fb-rLL.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 340, + "endColumn": 78, + "endOffset": 414 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 419, + "endColumn": 55, + "endOffset": 470 + }, + "from": { + "file": "/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/values-fb-rLL/values-fb-rLL.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 419, + "endColumn": 55, + "endOffset": 470 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 475, + "endColumn": 58, + "endOffset": 529 + }, + "from": { + "file": "/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/values-fb-rLL/values-fb-rLL.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 475, + "endColumn": 58, + "endOffset": 529 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 534, + "endColumn": 73, + "endOffset": 603 + }, + "from": { + "file": "/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/values-fb-rLL/values-fb-rLL.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 534, + "endColumn": 73, + "endOffset": 603 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/multi/values-fb.json b/android/build/intermediates/blame/res/androidTest/debug/multi/values-fb.json new file mode 100644 index 000000000..749ec80d7 --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/multi/values-fb.json @@ -0,0 +1,159 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-fb/values-fb.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 90, + "endOffset": 141 + }, + "from": { + "file": "/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/values-fb/values-fb.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 90, + "endOffset": 141 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 146, + "endColumn": 106, + "endOffset": 248 + }, + "from": { + "file": "/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/values-fb/values-fb.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 146, + "endColumn": 106, + "endOffset": 248 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 253, + "endColumn": 115, + "endOffset": 364 + }, + "from": { + "file": "/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/values-fb/values-fb.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 253, + "endColumn": 115, + "endOffset": 364 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 369, + "endColumn": 107, + "endOffset": 472 + }, + "from": { + "file": "/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/values-fb/values-fb.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 369, + "endColumn": 107, + "endOffset": 472 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 477, + "endColumn": 101, + "endOffset": 574 + }, + "from": { + "file": "/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/values-fb/values-fb.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 477, + "endColumn": 101, + "endOffset": 574 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 579, + "endColumn": 92, + "endOffset": 667 + }, + "from": { + "file": "/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/values-fb/values-fb.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 579, + "endColumn": 92, + "endOffset": 667 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 672, + "endColumn": 95, + "endOffset": 763 + }, + "from": { + "file": "/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/values-fb/values-fb.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 672, + "endColumn": 95, + "endOffset": 763 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 768, + "endColumn": 110, + "endOffset": 874 + }, + "from": { + "file": "/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/values-fb/values-fb.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 768, + "endColumn": 110, + "endOffset": 874 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/multi/values-fi.json b/android/build/intermediates/blame/res/androidTest/debug/multi/values-fi.json new file mode 100644 index 000000000..fd63028f2 --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/multi/values-fi.json @@ -0,0 +1,539 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-fi/values-fi.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 107, + "endOffset": 158 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fi/values-fi.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 107, + "endOffset": 158 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 163, + "endColumn": 107, + "endOffset": 266 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fi/values-fi.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 163, + "endColumn": 107, + "endOffset": 266 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 271, + "endColumn": 122, + "endOffset": 389 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fi/values-fi.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 271, + "endColumn": 122, + "endOffset": 389 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 394, + "endColumn": 99, + "endOffset": 489 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fi/values-fi.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 394, + "endColumn": 99, + "endOffset": 489 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 494, + "endColumn": 100, + "endOffset": 590 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fi/values-fi.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 494, + "endColumn": 100, + "endOffset": 590 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 595, + "endColumn": 85, + "endOffset": 676 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fi/values-fi.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 595, + "endColumn": 85, + "endOffset": 676 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 681, + "endColumn": 104, + "endOffset": 781 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fi/values-fi.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 681, + "endColumn": 104, + "endOffset": 781 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 786, + "endColumn": 117, + "endOffset": 899 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fi/values-fi.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 786, + "endColumn": 117, + "endOffset": 899 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 904, + "endColumn": 86, + "endOffset": 986 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fi/values-fi.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 904, + "endColumn": 86, + "endOffset": 986 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 991, + "endColumn": 81, + "endOffset": 1068 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fi/values-fi.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 991, + "endColumn": 81, + "endOffset": 1068 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1073, + "endColumn": 79, + "endOffset": 1148 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fi/values-fi.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1073, + "endColumn": 79, + "endOffset": 1148 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1153, + "endColumn": 106, + "endOffset": 1255 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fi/values-fi.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1153, + "endColumn": 106, + "endOffset": 1255 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1260, + "endColumn": 102, + "endOffset": 1358 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fi/values-fi.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1260, + "endColumn": 102, + "endOffset": 1358 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1363, + "endColumn": 96, + "endOffset": 1455 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fi/values-fi.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1363, + "endColumn": 96, + "endOffset": 1455 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1460, + "endColumn": 105, + "endOffset": 1561 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fi/values-fi.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1460, + "endColumn": 105, + "endOffset": 1561 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1566, + "endColumn": 98, + "endOffset": 1660 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fi/values-fi.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1566, + "endColumn": 98, + "endOffset": 1660 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1665, + "endColumn": 103, + "endOffset": 1764 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fi/values-fi.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1665, + "endColumn": 103, + "endOffset": 1764 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1769, + "endColumn": 118, + "endOffset": 1883 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fi/values-fi.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1769, + "endColumn": 118, + "endOffset": 1883 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1888, + "endColumn": 98, + "endOffset": 1982 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fi/values-fi.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1888, + "endColumn": 98, + "endOffset": 1982 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1987, + "endColumn": 53, + "endOffset": 2036 + }, + "from": { + "file": "/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/values-fi/values-fi.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 53, + "endOffset": 104 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2041, + "endColumn": 73, + "endOffset": 2110 + }, + "from": { + "file": "/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/values-fi/values-fi.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 109, + "endColumn": 73, + "endOffset": 178 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2115, + "endColumn": 78, + "endOffset": 2189 + }, + "from": { + "file": "/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/values-fi/values-fi.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 183, + "endColumn": 78, + "endOffset": 257 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2194, + "endColumn": 70, + "endOffset": 2260 + }, + "from": { + "file": "/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/values-fi/values-fi.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 262, + "endColumn": 70, + "endOffset": 328 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2265, + "endColumn": 56, + "endOffset": 2317 + }, + "from": { + "file": "/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/values-fi/values-fi.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 333, + "endColumn": 56, + "endOffset": 385 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2322, + "endColumn": 55, + "endOffset": 2373 + }, + "from": { + "file": "/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/values-fi/values-fi.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 390, + "endColumn": 55, + "endOffset": 441 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 2378, + "endColumn": 58, + "endOffset": 2432 + }, + "from": { + "file": "/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/values-fi/values-fi.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 446, + "endColumn": 58, + "endOffset": 500 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 2437, + "endColumn": 73, + "endOffset": 2506 + }, + "from": { + "file": "/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/values-fi/values-fi.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 505, + "endColumn": 73, + "endOffset": 574 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 2511, + "endColumn": 100, + "endOffset": 2607 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fi/values-fi.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1987, + "endColumn": 100, + "endOffset": 2083 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/multi/values-fr-rCA.json b/android/build/intermediates/blame/res/androidTest/debug/multi/values-fr-rCA.json new file mode 100644 index 000000000..e60f66cf3 --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/multi/values-fr-rCA.json @@ -0,0 +1,387 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-fr-rCA/values-fr-rCA.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 110, + "endOffset": 161 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fr-rCA/values-fr-rCA.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 110, + "endOffset": 161 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 166, + "endColumn": 107, + "endOffset": 269 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fr-rCA/values-fr-rCA.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 166, + "endColumn": 107, + "endOffset": 269 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 274, + "endColumn": 122, + "endOffset": 392 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fr-rCA/values-fr-rCA.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 274, + "endColumn": 122, + "endOffset": 392 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 397, + "endColumn": 114, + "endOffset": 507 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fr-rCA/values-fr-rCA.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 397, + "endColumn": 114, + "endOffset": 507 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 512, + "endColumn": 110, + "endOffset": 618 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fr-rCA/values-fr-rCA.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 512, + "endColumn": 110, + "endOffset": 618 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 623, + "endColumn": 86, + "endOffset": 705 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fr-rCA/values-fr-rCA.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 623, + "endColumn": 86, + "endOffset": 705 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 710, + "endColumn": 115, + "endOffset": 821 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fr-rCA/values-fr-rCA.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 710, + "endColumn": 115, + "endOffset": 821 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 826, + "endColumn": 129, + "endOffset": 951 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fr-rCA/values-fr-rCA.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 826, + "endColumn": 129, + "endOffset": 951 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 956, + "endColumn": 82, + "endOffset": 1034 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fr-rCA/values-fr-rCA.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 956, + "endColumn": 82, + "endOffset": 1034 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1039, + "endColumn": 79, + "endOffset": 1114 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fr-rCA/values-fr-rCA.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1039, + "endColumn": 79, + "endOffset": 1114 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1119, + "endColumn": 95, + "endOffset": 1210 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fr-rCA/values-fr-rCA.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1119, + "endColumn": 95, + "endOffset": 1210 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1215, + "endColumn": 109, + "endOffset": 1320 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fr-rCA/values-fr-rCA.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1215, + "endColumn": 109, + "endOffset": 1320 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1325, + "endColumn": 111, + "endOffset": 1432 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fr-rCA/values-fr-rCA.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1325, + "endColumn": 111, + "endOffset": 1432 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1437, + "endColumn": 102, + "endOffset": 1535 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fr-rCA/values-fr-rCA.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1437, + "endColumn": 102, + "endOffset": 1535 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1540, + "endColumn": 110, + "endOffset": 1646 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fr-rCA/values-fr-rCA.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1540, + "endColumn": 110, + "endOffset": 1646 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1651, + "endColumn": 106, + "endOffset": 1753 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fr-rCA/values-fr-rCA.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1651, + "endColumn": 106, + "endOffset": 1753 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1758, + "endColumn": 101, + "endOffset": 1855 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fr-rCA/values-fr-rCA.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1758, + "endColumn": 101, + "endOffset": 1855 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1860, + "endColumn": 121, + "endOffset": 1977 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fr-rCA/values-fr-rCA.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1860, + "endColumn": 121, + "endOffset": 1977 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1982, + "endColumn": 98, + "endOffset": 2076 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fr-rCA/values-fr-rCA.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1982, + "endColumn": 98, + "endOffset": 2076 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2081, + "endColumn": 100, + "endOffset": 2177 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fr-rCA/values-fr-rCA.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2081, + "endColumn": 100, + "endOffset": 2177 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/multi/values-fr.json b/android/build/intermediates/blame/res/androidTest/debug/multi/values-fr.json new file mode 100644 index 000000000..413b3e56b --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/multi/values-fr.json @@ -0,0 +1,1717 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-fr/values-fr.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 110, + "endOffset": 161 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fr/values-fr.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 110, + "endOffset": 161 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 166, + "endColumn": 107, + "endOffset": 269 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fr/values-fr.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 166, + "endColumn": 107, + "endOffset": 269 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 274, + "endColumn": 122, + "endOffset": 392 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fr/values-fr.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 274, + "endColumn": 122, + "endOffset": 392 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 397, + "endColumn": 114, + "endOffset": 507 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fr/values-fr.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 397, + "endColumn": 114, + "endOffset": 507 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 512, + "endColumn": 110, + "endOffset": 618 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fr/values-fr.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 512, + "endColumn": 110, + "endOffset": 618 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 623, + "endColumn": 81, + "endOffset": 700 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fr/values-fr.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 623, + "endColumn": 81, + "endOffset": 700 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 705, + "endColumn": 105, + "endOffset": 806 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fr/values-fr.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 705, + "endColumn": 105, + "endOffset": 806 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 811, + "endColumn": 129, + "endOffset": 936 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fr/values-fr.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 811, + "endColumn": 129, + "endOffset": 936 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 941, + "endColumn": 82, + "endOffset": 1019 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fr/values-fr.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 941, + "endColumn": 82, + "endOffset": 1019 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1024, + "endColumn": 79, + "endOffset": 1099 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fr/values-fr.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1024, + "endColumn": 79, + "endOffset": 1099 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1104, + "endColumn": 85, + "endOffset": 1185 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fr/values-fr.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1104, + "endColumn": 85, + "endOffset": 1185 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1190, + "endColumn": 109, + "endOffset": 1295 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fr/values-fr.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1190, + "endColumn": 109, + "endOffset": 1295 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1300, + "endColumn": 111, + "endOffset": 1407 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fr/values-fr.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1300, + "endColumn": 111, + "endOffset": 1407 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1412, + "endColumn": 102, + "endOffset": 1510 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fr/values-fr.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1412, + "endColumn": 102, + "endOffset": 1510 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1515, + "endColumn": 110, + "endOffset": 1621 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fr/values-fr.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1515, + "endColumn": 110, + "endOffset": 1621 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1626, + "endColumn": 106, + "endOffset": 1728 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fr/values-fr.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1626, + "endColumn": 106, + "endOffset": 1728 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1733, + "endColumn": 106, + "endOffset": 1835 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fr/values-fr.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1733, + "endColumn": 106, + "endOffset": 1835 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1840, + "endColumn": 121, + "endOffset": 1957 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fr/values-fr.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1840, + "endColumn": 121, + "endOffset": 1957 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1962, + "endColumn": 98, + "endOffset": 2056 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fr/values-fr.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1962, + "endColumn": 98, + "endOffset": 2056 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2061, + "endColumn": 54, + "endOffset": 2111 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-fr/values-fr.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 54, + "endOffset": 105 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2116, + "endColumn": 49, + "endOffset": 2161 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-fr/values-fr.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 110, + "endColumn": 49, + "endOffset": 155 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2166, + "endColumn": 51, + "endOffset": 2213 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-fr/values-fr.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 160, + "endColumn": 51, + "endOffset": 207 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2218, + "endColumn": 49, + "endOffset": 2263 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-fr/values-fr.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 212, + "endColumn": 49, + "endOffset": 257 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2268, + "endColumn": 48, + "endOffset": 2312 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-fr/values-fr.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 262, + "endColumn": 48, + "endOffset": 306 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2317, + "endColumn": 64, + "endOffset": 2377 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-fr/values-fr.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 311, + "endColumn": 64, + "endOffset": 371 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 2382, + "endColumn": 49, + "endOffset": 2427 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-fr/values-fr.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 376, + "endColumn": 49, + "endOffset": 421 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 2432, + "endColumn": 50, + "endOffset": 2478 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-fr/values-fr.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 426, + "endColumn": 50, + "endOffset": 472 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 2483, + "endColumn": 41, + "endOffset": 2520 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-fr/values-fr.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 477, + "endColumn": 41, + "endOffset": 514 + } + } + }, + { + "to": { + "startLine": 30, + "startColumn": 4, + "startOffset": 2525, + "endColumn": 42, + "endOffset": 2563 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-fr/values-fr.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 519, + "endColumn": 42, + "endOffset": 557 + } + } + }, + { + "to": { + "startLine": 31, + "startColumn": 4, + "startOffset": 2568, + "endColumn": 54, + "endOffset": 2618 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-fr/values-fr.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 562, + "endColumn": 54, + "endOffset": 612 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 2623, + "endColumn": 162, + "endOffset": 2781 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-fr/values-fr.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 617, + "endColumn": 162, + "endOffset": 775 + } + } + }, + { + "to": { + "startLine": 33, + "startColumn": 4, + "startOffset": 2786, + "endColumn": 53, + "endOffset": 2835 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-fr/values-fr.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 780, + "endColumn": 53, + "endOffset": 829 + } + } + }, + { + "to": { + "startLine": 34, + "startColumn": 4, + "startOffset": 2840, + "endColumn": 68, + "endOffset": 2904 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-fr/values-fr.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 834, + "endColumn": 68, + "endOffset": 898 + } + } + }, + { + "to": { + "startLine": 35, + "startColumn": 4, + "startOffset": 2909, + "endColumn": 134, + "endOffset": 3039 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-fr/values-fr.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 903, + "endColumn": 134, + "endOffset": 1033 + } + } + }, + { + "to": { + "startLine": 36, + "startColumn": 4, + "startOffset": 3044, + "endColumn": 64, + "endOffset": 3104 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-fr/values-fr.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1038, + "endColumn": 64, + "endOffset": 1098 + } + } + }, + { + "to": { + "startLine": 37, + "startColumn": 4, + "startOffset": 3109, + "endColumn": 82, + "endOffset": 3187 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-fr/values-fr.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1103, + "endColumn": 82, + "endOffset": 1181 + } + } + }, + { + "to": { + "startLine": 38, + "startColumn": 4, + "startOffset": 3192, + "endColumn": 67, + "endOffset": 3255 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-fr/values-fr.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1186, + "endColumn": 67, + "endOffset": 1249 + } + } + }, + { + "to": { + "startLine": 39, + "startColumn": 4, + "startOffset": 3260, + "endColumn": 148, + "endOffset": 3404 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-fr/values-fr.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1254, + "endColumn": 148, + "endOffset": 1398 + } + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 3409, + "endColumn": 54, + "endOffset": 3459 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-fr/values-fr.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1403, + "endColumn": 54, + "endOffset": 1453 + } + } + }, + { + "to": { + "startLine": 41, + "startColumn": 4, + "startOffset": 3464, + "endColumn": 53, + "endOffset": 3513 + }, + "from": { + "file": "/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/values-fr/values-fr.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 53, + "endOffset": 104 + } + } + }, + { + "to": { + "startLine": 42, + "startColumn": 4, + "startOffset": 3518, + "endColumn": 74, + "endOffset": 3588 + }, + "from": { + "file": "/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/values-fr/values-fr.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 109, + "endColumn": 74, + "endOffset": 179 + } + } + }, + { + "to": { + "startLine": 43, + "startColumn": 4, + "startOffset": 3593, + "endColumn": 78, + "endOffset": 3667 + }, + "from": { + "file": "/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/values-fr/values-fr.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 184, + "endColumn": 78, + "endOffset": 258 + } + } + }, + { + "to": { + "startLine": 44, + "startColumn": 4, + "startOffset": 3672, + "endColumn": 70, + "endOffset": 3738 + }, + "from": { + "file": "/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/values-fr/values-fr.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 263, + "endColumn": 70, + "endOffset": 329 + } + } + }, + { + "to": { + "startLine": 45, + "startColumn": 4, + "startOffset": 3743, + "endColumn": 71, + "endOffset": 3810 + }, + "from": { + "file": "/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/values-fr/values-fr.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 334, + "endColumn": 71, + "endOffset": 401 + } + } + }, + { + "to": { + "startLine": 46, + "startColumn": 4, + "startOffset": 3815, + "endColumn": 55, + "endOffset": 3866 + }, + "from": { + "file": "/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/values-fr/values-fr.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 406, + "endColumn": 55, + "endOffset": 457 + } + } + }, + { + "to": { + "startLine": 47, + "startColumn": 4, + "startOffset": 3871, + "endColumn": 58, + "endOffset": 3925 + }, + "from": { + "file": "/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/values-fr/values-fr.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 462, + "endColumn": 58, + "endOffset": 516 + } + } + }, + { + "to": { + "startLine": 48, + "startColumn": 4, + "startOffset": 3930, + "endColumn": 73, + "endOffset": 3999 + }, + "from": { + "file": "/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/values-fr/values-fr.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 521, + "endColumn": 73, + "endOffset": 590 + } + } + }, + { + "to": { + "startLine": 49, + "startColumn": 4, + "startOffset": 4004, + "endColumn": 50, + "endOffset": 4050 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-fr/values-fr.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 1458, + "endColumn": 50, + "endOffset": 1504 + } + } + }, + { + "to": { + "startLine": 50, + "startColumn": 4, + "startOffset": 4055, + "endColumn": 105, + "endOffset": 4156 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-fr/values-fr.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 1509, + "endColumn": 105, + "endOffset": 1610 + } + } + }, + { + "to": { + "startLine": 51, + "startColumn": 4, + "startOffset": 4161, + "endColumn": 83, + "endOffset": 4240 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-fr/values-fr.xml", + "position": { + "startLine": 24, + "startColumn": 4, + "startOffset": 1615, + "endColumn": 83, + "endOffset": 1694 + } + } + }, + { + "to": { + "startLine": 52, + "startColumn": 4, + "startOffset": 4245, + "endColumn": 104, + "endOffset": 4345 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-fr/values-fr.xml", + "position": { + "startLine": 25, + "startColumn": 4, + "startOffset": 1699, + "endColumn": 104, + "endOffset": 1799 + } + } + }, + { + "to": { + "startLine": 53, + "startColumn": 4, + "startOffset": 4350, + "endColumn": 51, + "endOffset": 4397 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-fr/values-fr.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 1804, + "endColumn": 51, + "endOffset": 1851 + } + } + }, + { + "to": { + "startLine": 54, + "startColumn": 4, + "startOffset": 4402, + "endColumn": 53, + "endOffset": 4451 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-fr/values-fr.xml", + "position": { + "startLine": 27, + "startColumn": 4, + "startOffset": 1856, + "endColumn": 53, + "endOffset": 1905 + } + } + }, + { + "to": { + "startLine": 55, + "startColumn": 4, + "startOffset": 4456, + "endColumn": 129, + "endOffset": 4581 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-fr/values-fr.xml", + "position": { + "startLine": 28, + "startColumn": 4, + "startOffset": 1910, + "endColumn": 129, + "endOffset": 2035 + } + } + }, + { + "to": { + "startLine": 56, + "startColumn": 4, + "startOffset": 4586, + "endColumn": 63, + "endOffset": 4645 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-fr/values-fr.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 2040, + "endColumn": 63, + "endOffset": 2099 + } + } + }, + { + "to": { + "startLine": 57, + "startColumn": 4, + "startOffset": 4650, + "endColumn": 88, + "endOffset": 4734 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-fr/values-fr.xml", + "position": { + "startLine": 30, + "startColumn": 4, + "startOffset": 2104, + "endColumn": 88, + "endOffset": 2188 + } + } + }, + { + "to": { + "startLine": 58, + "startColumn": 4, + "startOffset": 4739, + "endColumn": 94, + "endOffset": 4829 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-fr/values-fr.xml", + "position": { + "startLine": 31, + "startColumn": 4, + "startOffset": 2193, + "endColumn": 94, + "endOffset": 2283 + } + } + }, + { + "to": { + "startLine": 59, + "startColumn": 4, + "startOffset": 4834, + "endColumn": 71, + "endOffset": 4901 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-fr/values-fr.xml", + "position": { + "startLine": 32, + "startColumn": 4, + "startOffset": 2288, + "endColumn": 71, + "endOffset": 2355 + } + } + }, + { + "to": { + "startLine": 60, + "startColumn": 4, + "startOffset": 4906, + "endColumn": 67, + "endOffset": 4969 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-fr/values-fr.xml", + "position": { + "startLine": 33, + "startColumn": 4, + "startOffset": 2360, + "endColumn": 67, + "endOffset": 2423 + } + } + }, + { + "to": { + "startLine": 61, + "startColumn": 4, + "startOffset": 4974, + "endColumn": 68, + "endOffset": 5038 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-fr/values-fr.xml", + "position": { + "startLine": 34, + "startColumn": 4, + "startOffset": 2428, + "endColumn": 68, + "endOffset": 2492 + } + } + }, + { + "to": { + "startLine": 62, + "startColumn": 4, + "startOffset": 5043, + "endColumn": 249, + "endOffset": 5288 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-fr/values-fr.xml", + "position": { + "startLine": 35, + "startColumn": 4, + "startOffset": 2497, + "endColumn": 249, + "endOffset": 2742 + } + } + }, + { + "to": { + "startLine": 63, + "startColumn": 4, + "startOffset": 5293, + "endColumn": 67, + "endOffset": 5356 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-fr/values-fr.xml", + "position": { + "startLine": 36, + "startColumn": 4, + "startOffset": 2747, + "endColumn": 67, + "endOffset": 2810 + } + } + }, + { + "to": { + "startLine": 64, + "startColumn": 4, + "startOffset": 5361, + "endColumn": 50, + "endOffset": 5407 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-fr/values-fr.xml", + "position": { + "startLine": 37, + "startColumn": 4, + "startOffset": 2815, + "endColumn": 50, + "endOffset": 2861 + } + } + }, + { + "to": { + "startLine": 65, + "startColumn": 4, + "startOffset": 5412, + "endColumn": 60, + "endOffset": 5468 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-fr/values-fr.xml", + "position": { + "startLine": 38, + "startColumn": 4, + "startOffset": 2866, + "endColumn": 60, + "endOffset": 2922 + } + } + }, + { + "to": { + "startLine": 66, + "startColumn": 4, + "startOffset": 5473, + "endColumn": 67, + "endOffset": 5536 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-fr/values-fr.xml", + "position": { + "startLine": 39, + "startColumn": 4, + "startOffset": 2927, + "endColumn": 67, + "endOffset": 2990 + } + } + }, + { + "to": { + "startLine": 67, + "startColumn": 4, + "startOffset": 5541, + "endColumn": 50, + "endOffset": 5587 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-fr/values-fr.xml", + "position": { + "startLine": 40, + "startColumn": 4, + "startOffset": 2995, + "endColumn": 50, + "endOffset": 3041 + } + } + }, + { + "to": { + "startLine": 68, + "startColumn": 4, + "startOffset": 5592, + "endColumn": 91, + "endOffset": 5679 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-fr/values-fr.xml", + "position": { + "startLine": 41, + "startColumn": 4, + "startOffset": 3046, + "endColumn": 91, + "endOffset": 3133 + } + } + }, + { + "to": { + "startLine": 69, + "startColumn": 4, + "startOffset": 5684, + "endColumn": 292, + "endOffset": 5972 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-fr/values-fr.xml", + "position": { + "startLine": 42, + "startColumn": 4, + "startOffset": 3138, + "endColumn": 292, + "endOffset": 3426 + } + } + }, + { + "to": { + "startLine": 70, + "startColumn": 4, + "startOffset": 5977, + "endColumn": 231, + "endOffset": 6204 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-fr/values-fr.xml", + "position": { + "startLine": 43, + "startColumn": 4, + "startOffset": 3431, + "endColumn": 231, + "endOffset": 3658 + } + } + }, + { + "to": { + "startLine": 71, + "startColumn": 4, + "startOffset": 6209, + "endColumn": 90, + "endOffset": 6295 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-fr/values-fr.xml", + "position": { + "startLine": 44, + "startColumn": 4, + "startOffset": 3663, + "endColumn": 90, + "endOffset": 3749 + } + } + }, + { + "to": { + "startLine": 72, + "startColumn": 4, + "startOffset": 6300, + "endColumn": 114, + "endOffset": 6410 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-fr/values-fr.xml", + "position": { + "startLine": 45, + "startColumn": 4, + "startOffset": 3754, + "endColumn": 114, + "endOffset": 3864 + } + } + }, + { + "to": { + "startLine": 73, + "startColumn": 4, + "startOffset": 6415, + "endColumn": 59, + "endOffset": 6470 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-fr/values-fr.xml", + "position": { + "startLine": 46, + "startColumn": 4, + "startOffset": 3869, + "endColumn": 59, + "endOffset": 3924 + } + } + }, + { + "to": { + "startLine": 74, + "startColumn": 4, + "startOffset": 6475, + "endColumn": 82, + "endOffset": 6553 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-fr/values-fr.xml", + "position": { + "startLine": 47, + "startColumn": 4, + "startOffset": 3929, + "endColumn": 82, + "endOffset": 4007 + } + } + }, + { + "to": { + "startLine": 75, + "startColumn": 4, + "startOffset": 6558, + "endColumn": 47, + "endOffset": 6601 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-fr/values-fr.xml", + "position": { + "startLine": 48, + "startColumn": 4, + "startOffset": 4012, + "endColumn": 47, + "endOffset": 4055 + } + } + }, + { + "to": { + "startLine": 76, + "startColumn": 4, + "startOffset": 6606, + "endColumn": 64, + "endOffset": 6666 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-fr/values-fr.xml", + "position": { + "startLine": 49, + "startColumn": 4, + "startOffset": 4060, + "endColumn": 64, + "endOffset": 4120 + } + } + }, + { + "to": { + "startLine": 77, + "startColumn": 4, + "startOffset": 6671, + "endColumn": 168, + "endOffset": 6835 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-fr/values-fr.xml", + "position": { + "startLine": 50, + "startColumn": 4, + "startOffset": 4125, + "endColumn": 168, + "endOffset": 4289 + } + } + }, + { + "to": { + "startLine": 78, + "startColumn": 4, + "startOffset": 6840, + "endColumn": 107, + "endOffset": 6943 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-fr/values-fr.xml", + "position": { + "startLine": 51, + "startColumn": 4, + "startOffset": 4294, + "endColumn": 107, + "endOffset": 4397 + } + } + }, + { + "to": { + "startLine": 79, + "startColumn": 4, + "startOffset": 6948, + "endColumn": 71, + "endOffset": 7015 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-fr/values-fr.xml", + "position": { + "startLine": 52, + "startColumn": 4, + "startOffset": 4402, + "endColumn": 71, + "endOffset": 4469 + } + } + }, + { + "to": { + "startLine": 80, + "startColumn": 4, + "startOffset": 7020, + "endColumn": 66, + "endOffset": 7082 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-fr/values-fr.xml", + "position": { + "startLine": 53, + "startColumn": 4, + "startOffset": 4474, + "endColumn": 66, + "endOffset": 4536 + } + } + }, + { + "to": { + "startLine": 81, + "startColumn": 4, + "startOffset": 7087, + "endColumn": 243, + "endOffset": 7326 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-fr/values-fr.xml", + "position": { + "startLine": 54, + "startColumn": 4, + "startOffset": 4541, + "endColumn": 243, + "endOffset": 4780 + } + } + }, + { + "to": { + "startLine": 82, + "startColumn": 4, + "startOffset": 7331, + "endColumn": 66, + "endOffset": 7393 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-fr/values-fr.xml", + "position": { + "startLine": 55, + "startColumn": 4, + "startOffset": 4785, + "endColumn": 66, + "endOffset": 4847 + } + } + }, + { + "to": { + "startLine": 83, + "startColumn": 4, + "startOffset": 7398, + "endColumn": 100, + "endOffset": 7494 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fr/values-fr.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2061, + "endColumn": 100, + "endOffset": 2157 + } + } + }, + { + "to": { + "startLine": 84, + "startColumn": 4, + "startOffset": 7499, + "endColumn": 68, + "endOffset": 7563 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-fr/values-fr.xml", + "position": { + "startLine": 56, + "startColumn": 4, + "startOffset": 4852, + "endColumn": 68, + "endOffset": 4916 + } + } + }, + { + "to": { + "startLine": 85, + "startColumn": 4, + "startOffset": 7568, + "endColumn": 103, + "endOffset": 7667 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-fr/values-fr.xml", + "position": { + "startLine": 57, + "startColumn": 4, + "startOffset": 4921, + "endColumn": 103, + "endOffset": 5020 + } + } + }, + { + "to": { + "startLine": 86, + "startColumn": 4, + "startOffset": 7672, + "endColumn": 52, + "endOffset": 7720 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-fr/values-fr.xml", + "position": { + "startLine": 58, + "startColumn": 4, + "startOffset": 5025, + "endColumn": 52, + "endOffset": 5073 + } + } + }, + { + "to": { + "startLine": 87, + "startColumn": 4, + "startOffset": 7725, + "endColumn": 88, + "endOffset": 7809 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-fr/values-fr.xml", + "position": { + "startLine": 59, + "startColumn": 4, + "startOffset": 5078, + "endColumn": 88, + "endOffset": 5162 + } + } + }, + { + "to": { + "startLine": 88, + "startColumn": 4, + "startOffset": 7814, + "endColumn": 84, + "endOffset": 7894 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-fr/values-fr.xml", + "position": { + "startLine": 60, + "startColumn": 4, + "startOffset": 5167, + "endColumn": 84, + "endOffset": 5247 + } + } + }, + { + "to": { + "startLine": 89, + "startColumn": 4, + "startOffset": 7899, + "endColumn": 58, + "endOffset": 7953 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-fr/values-fr.xml", + "position": { + "startLine": 61, + "startColumn": 4, + "startOffset": 5252, + "endColumn": 58, + "endOffset": 5306 + } + } + }, + { + "to": { + "startLine": 90, + "startColumn": 4, + "startOffset": 7958, + "endColumn": 67, + "endOffset": 8021 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-fr/values-fr.xml", + "position": { + "startLine": 62, + "startColumn": 4, + "startOffset": 5311, + "endColumn": 67, + "endOffset": 5374 + } + } + }, + { + "to": { + "startLine": 91, + "startColumn": 4, + "startOffset": 8026, + "endColumn": 174, + "endOffset": 8196 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-fr/values-fr.xml", + "position": { + "startLine": 63, + "startColumn": 4, + "startOffset": 5379, + "endColumn": 174, + "endOffset": 5549 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/multi/values-gl-rES.json b/android/build/intermediates/blame/res/androidTest/debug/multi/values-gl-rES.json new file mode 100644 index 000000000..016deb9db --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/multi/values-gl-rES.json @@ -0,0 +1,387 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-gl-rES/values-gl-rES.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 111, + "endOffset": 162 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-gl-rES/values-gl-rES.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 111, + "endOffset": 162 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 167, + "endColumn": 107, + "endOffset": 270 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-gl-rES/values-gl-rES.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 167, + "endColumn": 107, + "endOffset": 270 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 275, + "endColumn": 122, + "endOffset": 393 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-gl-rES/values-gl-rES.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 275, + "endColumn": 122, + "endOffset": 393 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 398, + "endColumn": 111, + "endOffset": 505 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-gl-rES/values-gl-rES.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 398, + "endColumn": 111, + "endOffset": 505 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 510, + "endColumn": 107, + "endOffset": 613 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-gl-rES/values-gl-rES.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 510, + "endColumn": 107, + "endOffset": 613 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 618, + "endColumn": 84, + "endOffset": 698 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-gl-rES/values-gl-rES.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 618, + "endColumn": 84, + "endOffset": 698 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 703, + "endColumn": 101, + "endOffset": 800 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-gl-rES/values-gl-rES.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 703, + "endColumn": 101, + "endOffset": 800 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 805, + "endColumn": 125, + "endOffset": 926 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-gl-rES/values-gl-rES.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 805, + "endColumn": 125, + "endOffset": 926 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 931, + "endColumn": 83, + "endOffset": 1010 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-gl-rES/values-gl-rES.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 931, + "endColumn": 83, + "endOffset": 1010 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1015, + "endColumn": 80, + "endOffset": 1091 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-gl-rES/values-gl-rES.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1015, + "endColumn": 80, + "endOffset": 1091 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1096, + "endColumn": 81, + "endOffset": 1173 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-gl-rES/values-gl-rES.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1096, + "endColumn": 81, + "endOffset": 1173 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1178, + "endColumn": 106, + "endOffset": 1280 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-gl-rES/values-gl-rES.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1178, + "endColumn": 106, + "endOffset": 1280 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1285, + "endColumn": 108, + "endOffset": 1389 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-gl-rES/values-gl-rES.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1285, + "endColumn": 108, + "endOffset": 1389 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1394, + "endColumn": 98, + "endOffset": 1488 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-gl-rES/values-gl-rES.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1394, + "endColumn": 98, + "endOffset": 1488 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1493, + "endColumn": 107, + "endOffset": 1596 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-gl-rES/values-gl-rES.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1493, + "endColumn": 107, + "endOffset": 1596 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1601, + "endColumn": 102, + "endOffset": 1699 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-gl-rES/values-gl-rES.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1601, + "endColumn": 102, + "endOffset": 1699 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1704, + "endColumn": 106, + "endOffset": 1806 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-gl-rES/values-gl-rES.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1704, + "endColumn": 106, + "endOffset": 1806 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1811, + "endColumn": 121, + "endOffset": 1928 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-gl-rES/values-gl-rES.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1811, + "endColumn": 121, + "endOffset": 1928 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1933, + "endColumn": 99, + "endOffset": 2028 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-gl-rES/values-gl-rES.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1933, + "endColumn": 99, + "endOffset": 2028 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2033, + "endColumn": 100, + "endOffset": 2129 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-gl-rES/values-gl-rES.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2033, + "endColumn": 100, + "endOffset": 2129 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/multi/values-gu-rIN.json b/android/build/intermediates/blame/res/androidTest/debug/multi/values-gu-rIN.json new file mode 100644 index 000000000..5a69d710b --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/multi/values-gu-rIN.json @@ -0,0 +1,387 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-gu-rIN/values-gu-rIN.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 108, + "endOffset": 159 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-gu-rIN/values-gu-rIN.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 108, + "endOffset": 159 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 164, + "endColumn": 107, + "endOffset": 267 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-gu-rIN/values-gu-rIN.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 164, + "endColumn": 107, + "endOffset": 267 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 272, + "endColumn": 122, + "endOffset": 390 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-gu-rIN/values-gu-rIN.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 272, + "endColumn": 122, + "endOffset": 390 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 395, + "endColumn": 103, + "endOffset": 494 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-gu-rIN/values-gu-rIN.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 395, + "endColumn": 103, + "endOffset": 494 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 499, + "endColumn": 106, + "endOffset": 601 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-gu-rIN/values-gu-rIN.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 499, + "endColumn": 106, + "endOffset": 601 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 606, + "endColumn": 86, + "endOffset": 688 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-gu-rIN/values-gu-rIN.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 606, + "endColumn": 86, + "endOffset": 688 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 693, + "endColumn": 100, + "endOffset": 789 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-gu-rIN/values-gu-rIN.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 693, + "endColumn": 100, + "endOffset": 789 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 794, + "endColumn": 122, + "endOffset": 912 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-gu-rIN/values-gu-rIN.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 794, + "endColumn": 122, + "endOffset": 912 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 917, + "endColumn": 76, + "endOffset": 989 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-gu-rIN/values-gu-rIN.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 917, + "endColumn": 76, + "endOffset": 989 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 994, + "endColumn": 77, + "endOffset": 1067 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-gu-rIN/values-gu-rIN.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 994, + "endColumn": 77, + "endOffset": 1067 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1072, + "endColumn": 79, + "endOffset": 1147 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-gu-rIN/values-gu-rIN.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1072, + "endColumn": 79, + "endOffset": 1147 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1152, + "endColumn": 105, + "endOffset": 1253 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-gu-rIN/values-gu-rIN.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1152, + "endColumn": 105, + "endOffset": 1253 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1258, + "endColumn": 101, + "endOffset": 1355 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-gu-rIN/values-gu-rIN.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1258, + "endColumn": 101, + "endOffset": 1355 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1360, + "endColumn": 96, + "endOffset": 1452 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-gu-rIN/values-gu-rIN.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1360, + "endColumn": 96, + "endOffset": 1452 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1457, + "endColumn": 108, + "endOffset": 1561 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-gu-rIN/values-gu-rIN.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1457, + "endColumn": 108, + "endOffset": 1561 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1566, + "endColumn": 98, + "endOffset": 1660 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-gu-rIN/values-gu-rIN.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1566, + "endColumn": 98, + "endOffset": 1660 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1665, + "endColumn": 109, + "endOffset": 1770 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-gu-rIN/values-gu-rIN.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1665, + "endColumn": 109, + "endOffset": 1770 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1775, + "endColumn": 120, + "endOffset": 1891 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-gu-rIN/values-gu-rIN.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1775, + "endColumn": 120, + "endOffset": 1891 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1896, + "endColumn": 102, + "endOffset": 1994 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-gu-rIN/values-gu-rIN.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1896, + "endColumn": 102, + "endOffset": 1994 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1999, + "endColumn": 100, + "endOffset": 2095 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-gu-rIN/values-gu-rIN.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1999, + "endColumn": 100, + "endOffset": 2095 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/multi/values-h320dp-v13.json b/android/build/intermediates/blame/res/androidTest/debug/multi/values-h320dp-v13.json new file mode 100644 index 000000000..f9fa97ddf --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/multi/values-h320dp-v13.json @@ -0,0 +1,26 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-h320dp-v13/values-h320dp-v13.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 57, + "endOffset": 108 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-h320dp-v13/values-h320dp-v13.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 57, + "endOffset": 108 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/multi/values-h720dp-v13.json b/android/build/intermediates/blame/res/androidTest/debug/multi/values-h720dp-v13.json new file mode 100644 index 000000000..c79156013 --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/multi/values-h720dp-v13.json @@ -0,0 +1,26 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-h720dp-v13/values-h720dp-v13.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 66, + "endOffset": 117 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-h720dp-v13/values-h720dp-v13.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 66, + "endOffset": 117 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/multi/values-hdpi-v4.json b/android/build/intermediates/blame/res/androidTest/debug/multi/values-hdpi-v4.json new file mode 100644 index 000000000..04a6dee1f --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/multi/values-hdpi-v4.json @@ -0,0 +1,28 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-hdpi-v4/values-hdpi-v4.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endLine": 6, + "endColumn": 13, + "endOffset": 327 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hdpi-v4/values-hdpi-v4.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endLine": 6, + "endColumn": 13, + "endOffset": 327 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/multi/values-hi.json b/android/build/intermediates/blame/res/androidTest/debug/multi/values-hi.json new file mode 100644 index 000000000..8736dc87f --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/multi/values-hi.json @@ -0,0 +1,387 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-hi/values-hi.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 116, + "endOffset": 167 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hi/values-hi.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 116, + "endOffset": 167 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 172, + "endColumn": 107, + "endOffset": 275 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hi/values-hi.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 172, + "endColumn": 107, + "endOffset": 275 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 280, + "endColumn": 122, + "endOffset": 398 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hi/values-hi.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 280, + "endColumn": 122, + "endOffset": 398 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 403, + "endColumn": 104, + "endOffset": 503 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hi/values-hi.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 403, + "endColumn": 104, + "endOffset": 503 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 508, + "endColumn": 106, + "endOffset": 610 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hi/values-hi.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 508, + "endColumn": 106, + "endOffset": 610 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 615, + "endColumn": 84, + "endOffset": 695 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hi/values-hi.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 615, + "endColumn": 84, + "endOffset": 695 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 700, + "endColumn": 101, + "endOffset": 797 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hi/values-hi.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 700, + "endColumn": 101, + "endOffset": 797 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 802, + "endColumn": 121, + "endOffset": 919 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hi/values-hi.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 802, + "endColumn": 121, + "endOffset": 919 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 924, + "endColumn": 76, + "endOffset": 996 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hi/values-hi.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 924, + "endColumn": 76, + "endOffset": 996 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1001, + "endColumn": 77, + "endOffset": 1074 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hi/values-hi.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1001, + "endColumn": 77, + "endOffset": 1074 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1079, + "endColumn": 89, + "endOffset": 1164 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hi/values-hi.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1079, + "endColumn": 89, + "endOffset": 1164 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1169, + "endColumn": 108, + "endOffset": 1273 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hi/values-hi.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1169, + "endColumn": 108, + "endOffset": 1273 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1278, + "endColumn": 101, + "endOffset": 1375 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hi/values-hi.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1278, + "endColumn": 101, + "endOffset": 1375 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1380, + "endColumn": 97, + "endOffset": 1473 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hi/values-hi.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1380, + "endColumn": 97, + "endOffset": 1473 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1478, + "endColumn": 109, + "endOffset": 1583 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hi/values-hi.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1478, + "endColumn": 109, + "endOffset": 1583 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1588, + "endColumn": 99, + "endOffset": 1683 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hi/values-hi.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1588, + "endColumn": 99, + "endOffset": 1683 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1688, + "endColumn": 114, + "endOffset": 1798 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hi/values-hi.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1688, + "endColumn": 114, + "endOffset": 1798 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1803, + "endColumn": 124, + "endOffset": 1923 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hi/values-hi.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1803, + "endColumn": 124, + "endOffset": 1923 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1928, + "endColumn": 105, + "endOffset": 2029 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hi/values-hi.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1928, + "endColumn": 105, + "endOffset": 2029 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2034, + "endColumn": 100, + "endOffset": 2130 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hi/values-hi.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2034, + "endColumn": 100, + "endOffset": 2130 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/multi/values-hr.json b/android/build/intermediates/blame/res/androidTest/debug/multi/values-hr.json new file mode 100644 index 000000000..12062cd1f --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/multi/values-hr.json @@ -0,0 +1,387 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-hr/values-hr.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 104, + "endOffset": 155 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hr/values-hr.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 104, + "endOffset": 155 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 160, + "endColumn": 107, + "endOffset": 263 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hr/values-hr.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 160, + "endColumn": 107, + "endOffset": 263 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 268, + "endColumn": 122, + "endOffset": 386 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hr/values-hr.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 268, + "endColumn": 122, + "endOffset": 386 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 391, + "endColumn": 96, + "endOffset": 483 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hr/values-hr.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 391, + "endColumn": 96, + "endOffset": 483 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 488, + "endColumn": 109, + "endOffset": 593 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hr/values-hr.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 488, + "endColumn": 109, + "endOffset": 593 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 598, + "endColumn": 85, + "endOffset": 679 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hr/values-hr.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 598, + "endColumn": 85, + "endOffset": 679 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 684, + "endColumn": 103, + "endOffset": 783 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hr/values-hr.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 684, + "endColumn": 103, + "endOffset": 783 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 788, + "endColumn": 118, + "endOffset": 902 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hr/values-hr.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 788, + "endColumn": 118, + "endOffset": 902 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 907, + "endColumn": 83, + "endOffset": 986 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hr/values-hr.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 907, + "endColumn": 83, + "endOffset": 986 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 991, + "endColumn": 82, + "endOffset": 1069 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hr/values-hr.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 991, + "endColumn": 82, + "endOffset": 1069 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1074, + "endColumn": 85, + "endOffset": 1155 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hr/values-hr.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1074, + "endColumn": 85, + "endOffset": 1155 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1160, + "endColumn": 103, + "endOffset": 1259 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hr/values-hr.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1160, + "endColumn": 103, + "endOffset": 1259 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1264, + "endColumn": 112, + "endOffset": 1372 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hr/values-hr.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1264, + "endColumn": 112, + "endOffset": 1372 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1377, + "endColumn": 105, + "endOffset": 1478 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hr/values-hr.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1377, + "endColumn": 105, + "endOffset": 1478 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1483, + "endColumn": 104, + "endOffset": 1583 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hr/values-hr.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1483, + "endColumn": 104, + "endOffset": 1583 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1588, + "endColumn": 112, + "endOffset": 1696 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hr/values-hr.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1588, + "endColumn": 112, + "endOffset": 1696 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1701, + "endColumn": 106, + "endOffset": 1803 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hr/values-hr.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1701, + "endColumn": 106, + "endOffset": 1803 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1808, + "endColumn": 122, + "endOffset": 1926 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hr/values-hr.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1808, + "endColumn": 122, + "endOffset": 1926 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1931, + "endColumn": 96, + "endOffset": 2023 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hr/values-hr.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1931, + "endColumn": 96, + "endOffset": 2023 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2028, + "endColumn": 100, + "endOffset": 2124 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hr/values-hr.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2028, + "endColumn": 100, + "endOffset": 2124 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/multi/values-hu.json b/android/build/intermediates/blame/res/androidTest/debug/multi/values-hu.json new file mode 100644 index 000000000..90fad9791 --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/multi/values-hu.json @@ -0,0 +1,539 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-hu/values-hu.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 107, + "endOffset": 158 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hu/values-hu.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 107, + "endOffset": 158 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 163, + "endColumn": 107, + "endOffset": 266 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hu/values-hu.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 163, + "endColumn": 107, + "endOffset": 266 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 271, + "endColumn": 122, + "endOffset": 389 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hu/values-hu.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 271, + "endColumn": 122, + "endOffset": 389 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 394, + "endColumn": 104, + "endOffset": 494 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hu/values-hu.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 394, + "endColumn": 104, + "endOffset": 494 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 499, + "endColumn": 114, + "endOffset": 609 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hu/values-hu.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 499, + "endColumn": 114, + "endOffset": 609 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 614, + "endColumn": 83, + "endOffset": 693 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hu/values-hu.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 614, + "endColumn": 83, + "endOffset": 693 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 698, + "endColumn": 111, + "endOffset": 805 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hu/values-hu.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 698, + "endColumn": 111, + "endOffset": 805 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 810, + "endColumn": 129, + "endOffset": 935 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hu/values-hu.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 810, + "endColumn": 129, + "endOffset": 935 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 940, + "endColumn": 75, + "endOffset": 1011 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hu/values-hu.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 940, + "endColumn": 75, + "endOffset": 1011 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1016, + "endColumn": 75, + "endOffset": 1087 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hu/values-hu.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1016, + "endColumn": 75, + "endOffset": 1087 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1092, + "endColumn": 82, + "endOffset": 1170 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hu/values-hu.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1092, + "endColumn": 82, + "endOffset": 1170 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1175, + "endColumn": 109, + "endOffset": 1280 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hu/values-hu.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1175, + "endColumn": 109, + "endOffset": 1280 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1285, + "endColumn": 110, + "endOffset": 1391 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hu/values-hu.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1285, + "endColumn": 110, + "endOffset": 1391 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1396, + "endColumn": 99, + "endOffset": 1491 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hu/values-hu.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1396, + "endColumn": 99, + "endOffset": 1491 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1496, + "endColumn": 110, + "endOffset": 1602 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hu/values-hu.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1496, + "endColumn": 110, + "endOffset": 1602 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1607, + "endColumn": 107, + "endOffset": 1710 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hu/values-hu.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1607, + "endColumn": 107, + "endOffset": 1710 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1715, + "endColumn": 118, + "endOffset": 1829 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hu/values-hu.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1715, + "endColumn": 118, + "endOffset": 1829 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1834, + "endColumn": 133, + "endOffset": 1963 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hu/values-hu.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1834, + "endColumn": 133, + "endOffset": 1963 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1968, + "endColumn": 102, + "endOffset": 2066 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hu/values-hu.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1968, + "endColumn": 102, + "endOffset": 2066 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2071, + "endColumn": 53, + "endOffset": 2120 + }, + "from": { + "file": "/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/values-hu/values-hu.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 53, + "endOffset": 104 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2125, + "endColumn": 72, + "endOffset": 2193 + }, + "from": { + "file": "/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/values-hu/values-hu.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 109, + "endColumn": 72, + "endOffset": 177 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2198, + "endColumn": 78, + "endOffset": 2272 + }, + "from": { + "file": "/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/values-hu/values-hu.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 182, + "endColumn": 78, + "endOffset": 256 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2277, + "endColumn": 70, + "endOffset": 2343 + }, + "from": { + "file": "/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/values-hu/values-hu.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 261, + "endColumn": 70, + "endOffset": 327 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2348, + "endColumn": 65, + "endOffset": 2409 + }, + "from": { + "file": "/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/values-hu/values-hu.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 332, + "endColumn": 65, + "endOffset": 393 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2414, + "endColumn": 55, + "endOffset": 2465 + }, + "from": { + "file": "/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/values-hu/values-hu.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 398, + "endColumn": 55, + "endOffset": 449 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 2470, + "endColumn": 58, + "endOffset": 2524 + }, + "from": { + "file": "/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/values-hu/values-hu.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 454, + "endColumn": 58, + "endOffset": 508 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 2529, + "endColumn": 73, + "endOffset": 2598 + }, + "from": { + "file": "/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/values-hu/values-hu.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 513, + "endColumn": 73, + "endOffset": 582 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 2603, + "endColumn": 100, + "endOffset": 2699 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hu/values-hu.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2071, + "endColumn": 100, + "endOffset": 2167 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/multi/values-hy-rAM.json b/android/build/intermediates/blame/res/androidTest/debug/multi/values-hy-rAM.json new file mode 100644 index 000000000..97b9a7f1c --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/multi/values-hy-rAM.json @@ -0,0 +1,387 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-hy-rAM/values-hy-rAM.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 102, + "endOffset": 153 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hy-rAM/values-hy-rAM.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 102, + "endOffset": 153 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 158, + "endColumn": 107, + "endOffset": 261 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hy-rAM/values-hy-rAM.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 158, + "endColumn": 107, + "endOffset": 261 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 266, + "endColumn": 122, + "endOffset": 384 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hy-rAM/values-hy-rAM.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 266, + "endColumn": 122, + "endOffset": 384 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 389, + "endColumn": 100, + "endOffset": 485 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hy-rAM/values-hy-rAM.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 389, + "endColumn": 100, + "endOffset": 485 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 490, + "endColumn": 109, + "endOffset": 595 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hy-rAM/values-hy-rAM.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 490, + "endColumn": 109, + "endOffset": 595 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 600, + "endColumn": 89, + "endOffset": 685 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hy-rAM/values-hy-rAM.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 600, + "endColumn": 89, + "endOffset": 685 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 690, + "endColumn": 105, + "endOffset": 791 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hy-rAM/values-hy-rAM.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 690, + "endColumn": 105, + "endOffset": 791 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 796, + "endColumn": 114, + "endOffset": 906 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hy-rAM/values-hy-rAM.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 796, + "endColumn": 114, + "endOffset": 906 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 911, + "endColumn": 81, + "endOffset": 988 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hy-rAM/values-hy-rAM.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 911, + "endColumn": 81, + "endOffset": 988 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 993, + "endColumn": 80, + "endOffset": 1069 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hy-rAM/values-hy-rAM.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 993, + "endColumn": 80, + "endOffset": 1069 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1074, + "endColumn": 84, + "endOffset": 1154 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hy-rAM/values-hy-rAM.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1074, + "endColumn": 84, + "endOffset": 1154 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1159, + "endColumn": 106, + "endOffset": 1261 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hy-rAM/values-hy-rAM.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1159, + "endColumn": 106, + "endOffset": 1261 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1266, + "endColumn": 106, + "endOffset": 1368 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hy-rAM/values-hy-rAM.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1266, + "endColumn": 106, + "endOffset": 1368 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1373, + "endColumn": 98, + "endOffset": 1467 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hy-rAM/values-hy-rAM.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1373, + "endColumn": 98, + "endOffset": 1467 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1472, + "endColumn": 109, + "endOffset": 1577 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hy-rAM/values-hy-rAM.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1472, + "endColumn": 109, + "endOffset": 1577 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1582, + "endColumn": 106, + "endOffset": 1684 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hy-rAM/values-hy-rAM.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1582, + "endColumn": 106, + "endOffset": 1684 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1689, + "endColumn": 100, + "endOffset": 1785 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hy-rAM/values-hy-rAM.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1689, + "endColumn": 100, + "endOffset": 1785 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1790, + "endColumn": 119, + "endOffset": 1905 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hy-rAM/values-hy-rAM.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1790, + "endColumn": 119, + "endOffset": 1905 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1910, + "endColumn": 98, + "endOffset": 2004 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hy-rAM/values-hy-rAM.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1910, + "endColumn": 98, + "endOffset": 2004 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2009, + "endColumn": 100, + "endOffset": 2105 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hy-rAM/values-hy-rAM.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2009, + "endColumn": 100, + "endOffset": 2105 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/multi/values-in.json b/android/build/intermediates/blame/res/androidTest/debug/multi/values-in.json new file mode 100644 index 000000000..7a067dd23 --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/multi/values-in.json @@ -0,0 +1,539 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-in/values-in.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 109, + "endOffset": 160 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-in/values-in.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 109, + "endOffset": 160 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 165, + "endColumn": 107, + "endOffset": 268 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-in/values-in.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 165, + "endColumn": 107, + "endOffset": 268 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 273, + "endColumn": 122, + "endOffset": 391 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-in/values-in.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 273, + "endColumn": 122, + "endOffset": 391 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 396, + "endColumn": 101, + "endOffset": 493 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-in/values-in.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 396, + "endColumn": 101, + "endOffset": 493 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 498, + "endColumn": 104, + "endOffset": 598 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-in/values-in.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 498, + "endColumn": 104, + "endOffset": 598 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 603, + "endColumn": 86, + "endOffset": 685 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-in/values-in.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 603, + "endColumn": 86, + "endOffset": 685 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 690, + "endColumn": 103, + "endOffset": 789 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-in/values-in.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 690, + "endColumn": 103, + "endOffset": 789 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 794, + "endColumn": 115, + "endOffset": 905 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-in/values-in.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 794, + "endColumn": 115, + "endOffset": 905 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 910, + "endColumn": 81, + "endOffset": 987 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-in/values-in.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 910, + "endColumn": 81, + "endOffset": 987 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 992, + "endColumn": 78, + "endOffset": 1066 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-in/values-in.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 992, + "endColumn": 78, + "endOffset": 1066 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1071, + "endColumn": 85, + "endOffset": 1152 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-in/values-in.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1071, + "endColumn": 85, + "endOffset": 1152 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1157, + "endColumn": 102, + "endOffset": 1255 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-in/values-in.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1157, + "endColumn": 102, + "endOffset": 1255 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1260, + "endColumn": 108, + "endOffset": 1364 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-in/values-in.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1260, + "endColumn": 108, + "endOffset": 1364 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1369, + "endColumn": 100, + "endOffset": 1465 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-in/values-in.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1369, + "endColumn": 100, + "endOffset": 1465 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1470, + "endColumn": 103, + "endOffset": 1569 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-in/values-in.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1470, + "endColumn": 103, + "endOffset": 1569 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1574, + "endColumn": 107, + "endOffset": 1677 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-in/values-in.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1574, + "endColumn": 107, + "endOffset": 1677 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1682, + "endColumn": 107, + "endOffset": 1785 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-in/values-in.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1682, + "endColumn": 107, + "endOffset": 1785 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1790, + "endColumn": 122, + "endOffset": 1908 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-in/values-in.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1790, + "endColumn": 122, + "endOffset": 1908 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1913, + "endColumn": 98, + "endOffset": 2007 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-in/values-in.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1913, + "endColumn": 98, + "endOffset": 2007 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2012, + "endColumn": 53, + "endOffset": 2061 + }, + "from": { + "file": "/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/values-in/values-in.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 53, + "endOffset": 104 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2066, + "endColumn": 69, + "endOffset": 2131 + }, + "from": { + "file": "/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/values-in/values-in.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 109, + "endColumn": 69, + "endOffset": 174 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2136, + "endColumn": 78, + "endOffset": 2210 + }, + "from": { + "file": "/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/values-in/values-in.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 179, + "endColumn": 78, + "endOffset": 253 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2215, + "endColumn": 70, + "endOffset": 2281 + }, + "from": { + "file": "/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/values-in/values-in.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 258, + "endColumn": 70, + "endOffset": 324 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2286, + "endColumn": 65, + "endOffset": 2347 + }, + "from": { + "file": "/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/values-in/values-in.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 329, + "endColumn": 65, + "endOffset": 390 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2352, + "endColumn": 55, + "endOffset": 2403 + }, + "from": { + "file": "/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/values-in/values-in.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 395, + "endColumn": 55, + "endOffset": 446 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 2408, + "endColumn": 58, + "endOffset": 2462 + }, + "from": { + "file": "/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/values-in/values-in.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 451, + "endColumn": 58, + "endOffset": 505 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 2467, + "endColumn": 73, + "endOffset": 2536 + }, + "from": { + "file": "/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/values-in/values-in.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 510, + "endColumn": 73, + "endOffset": 579 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 2541, + "endColumn": 100, + "endOffset": 2637 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-in/values-in.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2012, + "endColumn": 100, + "endOffset": 2108 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/multi/values-is-rIS.json b/android/build/intermediates/blame/res/androidTest/debug/multi/values-is-rIS.json new file mode 100644 index 000000000..4dd24f2e5 --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/multi/values-is-rIS.json @@ -0,0 +1,387 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-is-rIS/values-is-rIS.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 99, + "endOffset": 150 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-is-rIS/values-is-rIS.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 99, + "endOffset": 150 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 155, + "endColumn": 107, + "endOffset": 258 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-is-rIS/values-is-rIS.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 155, + "endColumn": 107, + "endOffset": 258 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 263, + "endColumn": 122, + "endOffset": 381 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-is-rIS/values-is-rIS.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 263, + "endColumn": 122, + "endOffset": 381 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 386, + "endColumn": 96, + "endOffset": 478 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-is-rIS/values-is-rIS.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 386, + "endColumn": 96, + "endOffset": 478 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 483, + "endColumn": 111, + "endOffset": 590 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-is-rIS/values-is-rIS.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 483, + "endColumn": 111, + "endOffset": 590 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 595, + "endColumn": 84, + "endOffset": 675 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-is-rIS/values-is-rIS.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 595, + "endColumn": 84, + "endOffset": 675 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 680, + "endColumn": 100, + "endOffset": 776 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-is-rIS/values-is-rIS.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 680, + "endColumn": 100, + "endOffset": 776 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 781, + "endColumn": 113, + "endOffset": 890 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-is-rIS/values-is-rIS.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 781, + "endColumn": 113, + "endOffset": 890 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 895, + "endColumn": 79, + "endOffset": 970 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-is-rIS/values-is-rIS.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 895, + "endColumn": 79, + "endOffset": 970 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 975, + "endColumn": 79, + "endOffset": 1050 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-is-rIS/values-is-rIS.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 975, + "endColumn": 79, + "endOffset": 1050 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1055, + "endColumn": 80, + "endOffset": 1131 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-is-rIS/values-is-rIS.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1055, + "endColumn": 80, + "endOffset": 1131 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1136, + "endColumn": 109, + "endOffset": 1241 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-is-rIS/values-is-rIS.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1136, + "endColumn": 109, + "endOffset": 1241 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1246, + "endColumn": 107, + "endOffset": 1349 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-is-rIS/values-is-rIS.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1246, + "endColumn": 107, + "endOffset": 1349 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1354, + "endColumn": 97, + "endOffset": 1447 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-is-rIS/values-is-rIS.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1354, + "endColumn": 97, + "endOffset": 1447 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1452, + "endColumn": 108, + "endOffset": 1556 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-is-rIS/values-is-rIS.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1452, + "endColumn": 108, + "endOffset": 1556 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1561, + "endColumn": 98, + "endOffset": 1655 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-is-rIS/values-is-rIS.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1561, + "endColumn": 98, + "endOffset": 1655 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1660, + "endColumn": 102, + "endOffset": 1758 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-is-rIS/values-is-rIS.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1660, + "endColumn": 102, + "endOffset": 1758 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1763, + "endColumn": 117, + "endOffset": 1876 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-is-rIS/values-is-rIS.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1763, + "endColumn": 117, + "endOffset": 1876 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1881, + "endColumn": 97, + "endOffset": 1974 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-is-rIS/values-is-rIS.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1881, + "endColumn": 97, + "endOffset": 1974 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1979, + "endColumn": 100, + "endOffset": 2075 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-is-rIS/values-is-rIS.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1979, + "endColumn": 100, + "endOffset": 2075 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/multi/values-it.json b/android/build/intermediates/blame/res/androidTest/debug/multi/values-it.json new file mode 100644 index 000000000..e7614566d --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/multi/values-it.json @@ -0,0 +1,1717 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-it/values-it.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 108, + "endOffset": 159 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-it/values-it.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 108, + "endOffset": 159 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 164, + "endColumn": 107, + "endOffset": 267 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-it/values-it.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 164, + "endColumn": 107, + "endOffset": 267 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 272, + "endColumn": 122, + "endOffset": 390 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-it/values-it.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 272, + "endColumn": 122, + "endOffset": 390 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 395, + "endColumn": 99, + "endOffset": 490 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-it/values-it.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 395, + "endColumn": 99, + "endOffset": 490 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 495, + "endColumn": 108, + "endOffset": 599 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-it/values-it.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 495, + "endColumn": 108, + "endOffset": 599 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 604, + "endColumn": 83, + "endOffset": 683 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-it/values-it.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 604, + "endColumn": 83, + "endOffset": 683 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 688, + "endColumn": 108, + "endOffset": 792 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-it/values-it.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 688, + "endColumn": 108, + "endOffset": 792 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 797, + "endColumn": 124, + "endOffset": 917 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-it/values-it.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 797, + "endColumn": 124, + "endOffset": 917 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 922, + "endColumn": 76, + "endOffset": 994 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-it/values-it.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 922, + "endColumn": 76, + "endOffset": 994 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 999, + "endColumn": 75, + "endOffset": 1070 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-it/values-it.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 999, + "endColumn": 75, + "endOffset": 1070 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1075, + "endColumn": 80, + "endOffset": 1151 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-it/values-it.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1075, + "endColumn": 80, + "endOffset": 1151 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1156, + "endColumn": 105, + "endOffset": 1257 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-it/values-it.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1156, + "endColumn": 105, + "endOffset": 1257 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1262, + "endColumn": 107, + "endOffset": 1365 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-it/values-it.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1262, + "endColumn": 107, + "endOffset": 1365 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1370, + "endColumn": 97, + "endOffset": 1463 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-it/values-it.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1370, + "endColumn": 97, + "endOffset": 1463 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1468, + "endColumn": 103, + "endOffset": 1567 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-it/values-it.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1468, + "endColumn": 103, + "endOffset": 1567 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1572, + "endColumn": 104, + "endOffset": 1672 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-it/values-it.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1572, + "endColumn": 104, + "endOffset": 1672 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1677, + "endColumn": 106, + "endOffset": 1779 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-it/values-it.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1677, + "endColumn": 106, + "endOffset": 1779 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1784, + "endColumn": 121, + "endOffset": 1901 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-it/values-it.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1784, + "endColumn": 121, + "endOffset": 1901 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1906, + "endColumn": 99, + "endOffset": 2001 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-it/values-it.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1906, + "endColumn": 99, + "endOffset": 2001 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2006, + "endColumn": 54, + "endOffset": 2056 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-it/values-it.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 54, + "endOffset": 105 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2061, + "endColumn": 53, + "endOffset": 2110 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-it/values-it.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 110, + "endColumn": 53, + "endOffset": 159 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2115, + "endColumn": 49, + "endOffset": 2160 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-it/values-it.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 164, + "endColumn": 49, + "endOffset": 209 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2165, + "endColumn": 50, + "endOffset": 2211 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-it/values-it.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 214, + "endColumn": 50, + "endOffset": 260 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2216, + "endColumn": 48, + "endOffset": 2260 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-it/values-it.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 265, + "endColumn": 48, + "endOffset": 309 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2265, + "endColumn": 65, + "endOffset": 2326 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-it/values-it.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 314, + "endColumn": 65, + "endOffset": 375 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 2331, + "endColumn": 49, + "endOffset": 2376 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-it/values-it.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 380, + "endColumn": 49, + "endOffset": 425 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 2381, + "endColumn": 50, + "endOffset": 2427 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-it/values-it.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 430, + "endColumn": 50, + "endOffset": 476 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 2432, + "endColumn": 40, + "endOffset": 2468 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-it/values-it.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 481, + "endColumn": 40, + "endOffset": 517 + } + } + }, + { + "to": { + "startLine": 30, + "startColumn": 4, + "startOffset": 2473, + "endColumn": 41, + "endOffset": 2510 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-it/values-it.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 522, + "endColumn": 41, + "endOffset": 559 + } + } + }, + { + "to": { + "startLine": 31, + "startColumn": 4, + "startOffset": 2515, + "endColumn": 54, + "endOffset": 2565 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-it/values-it.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 564, + "endColumn": 54, + "endOffset": 614 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 2570, + "endColumn": 143, + "endOffset": 2709 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-it/values-it.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 619, + "endColumn": 143, + "endOffset": 758 + } + } + }, + { + "to": { + "startLine": 33, + "startColumn": 4, + "startOffset": 2714, + "endColumn": 56, + "endOffset": 2766 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-it/values-it.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 763, + "endColumn": 56, + "endOffset": 815 + } + } + }, + { + "to": { + "startLine": 34, + "startColumn": 4, + "startOffset": 2771, + "endColumn": 67, + "endOffset": 2834 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-it/values-it.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 820, + "endColumn": 67, + "endOffset": 883 + } + } + }, + { + "to": { + "startLine": 35, + "startColumn": 4, + "startOffset": 2839, + "endColumn": 157, + "endOffset": 2992 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-it/values-it.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 888, + "endColumn": 157, + "endOffset": 1041 + } + } + }, + { + "to": { + "startLine": 36, + "startColumn": 4, + "startOffset": 2997, + "endColumn": 63, + "endOffset": 3056 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-it/values-it.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1046, + "endColumn": 63, + "endOffset": 1105 + } + } + }, + { + "to": { + "startLine": 37, + "startColumn": 4, + "startOffset": 3061, + "endColumn": 80, + "endOffset": 3137 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-it/values-it.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1110, + "endColumn": 80, + "endOffset": 1186 + } + } + }, + { + "to": { + "startLine": 38, + "startColumn": 4, + "startOffset": 3142, + "endColumn": 61, + "endOffset": 3199 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-it/values-it.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1191, + "endColumn": 61, + "endOffset": 1248 + } + } + }, + { + "to": { + "startLine": 39, + "startColumn": 4, + "startOffset": 3204, + "endColumn": 170, + "endOffset": 3370 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-it/values-it.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1253, + "endColumn": 170, + "endOffset": 1419 + } + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 3375, + "endColumn": 57, + "endOffset": 3428 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-it/values-it.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1424, + "endColumn": 57, + "endOffset": 1477 + } + } + }, + { + "to": { + "startLine": 41, + "startColumn": 4, + "startOffset": 3433, + "endColumn": 53, + "endOffset": 3482 + }, + "from": { + "file": "/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/values-it/values-it.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 53, + "endOffset": 104 + } + } + }, + { + "to": { + "startLine": 42, + "startColumn": 4, + "startOffset": 3487, + "endColumn": 71, + "endOffset": 3554 + }, + "from": { + "file": "/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/values-it/values-it.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 109, + "endColumn": 71, + "endOffset": 176 + } + } + }, + { + "to": { + "startLine": 43, + "startColumn": 4, + "startOffset": 3559, + "endColumn": 78, + "endOffset": 3633 + }, + "from": { + "file": "/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/values-it/values-it.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 181, + "endColumn": 78, + "endOffset": 255 + } + } + }, + { + "to": { + "startLine": 44, + "startColumn": 4, + "startOffset": 3638, + "endColumn": 70, + "endOffset": 3704 + }, + "from": { + "file": "/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/values-it/values-it.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 260, + "endColumn": 70, + "endOffset": 326 + } + } + }, + { + "to": { + "startLine": 45, + "startColumn": 4, + "startOffset": 3709, + "endColumn": 60, + "endOffset": 3765 + }, + "from": { + "file": "/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/values-it/values-it.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 331, + "endColumn": 60, + "endOffset": 387 + } + } + }, + { + "to": { + "startLine": 46, + "startColumn": 4, + "startOffset": 3770, + "endColumn": 55, + "endOffset": 3821 + }, + "from": { + "file": "/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/values-it/values-it.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 392, + "endColumn": 55, + "endOffset": 443 + } + } + }, + { + "to": { + "startLine": 47, + "startColumn": 4, + "startOffset": 3826, + "endColumn": 58, + "endOffset": 3880 + }, + "from": { + "file": "/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/values-it/values-it.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 448, + "endColumn": 58, + "endOffset": 502 + } + } + }, + { + "to": { + "startLine": 48, + "startColumn": 4, + "startOffset": 3885, + "endColumn": 73, + "endOffset": 3954 + }, + "from": { + "file": "/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/values-it/values-it.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 507, + "endColumn": 73, + "endOffset": 576 + } + } + }, + { + "to": { + "startLine": 49, + "startColumn": 4, + "startOffset": 3959, + "endColumn": 53, + "endOffset": 4008 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-it/values-it.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 1482, + "endColumn": 53, + "endOffset": 1531 + } + } + }, + { + "to": { + "startLine": 50, + "startColumn": 4, + "startOffset": 4013, + "endColumn": 91, + "endOffset": 4100 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-it/values-it.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 1536, + "endColumn": 91, + "endOffset": 1623 + } + } + }, + { + "to": { + "startLine": 51, + "startColumn": 4, + "startOffset": 4105, + "endColumn": 74, + "endOffset": 4175 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-it/values-it.xml", + "position": { + "startLine": 24, + "startColumn": 4, + "startOffset": 1628, + "endColumn": 74, + "endOffset": 1698 + } + } + }, + { + "to": { + "startLine": 52, + "startColumn": 4, + "startOffset": 4180, + "endColumn": 86, + "endOffset": 4262 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-it/values-it.xml", + "position": { + "startLine": 25, + "startColumn": 4, + "startOffset": 1703, + "endColumn": 86, + "endOffset": 1785 + } + } + }, + { + "to": { + "startLine": 53, + "startColumn": 4, + "startOffset": 4267, + "endColumn": 50, + "endOffset": 4313 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-it/values-it.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 1790, + "endColumn": 50, + "endOffset": 1836 + } + } + }, + { + "to": { + "startLine": 54, + "startColumn": 4, + "startOffset": 4318, + "endColumn": 51, + "endOffset": 4365 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-it/values-it.xml", + "position": { + "startLine": 27, + "startColumn": 4, + "startOffset": 1841, + "endColumn": 51, + "endOffset": 1888 + } + } + }, + { + "to": { + "startLine": 55, + "startColumn": 4, + "startOffset": 4370, + "endColumn": 145, + "endOffset": 4511 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-it/values-it.xml", + "position": { + "startLine": 28, + "startColumn": 4, + "startOffset": 1893, + "endColumn": 145, + "endOffset": 2034 + } + } + }, + { + "to": { + "startLine": 56, + "startColumn": 4, + "startOffset": 4516, + "endColumn": 61, + "endOffset": 4573 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-it/values-it.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 2039, + "endColumn": 61, + "endOffset": 2096 + } + } + }, + { + "to": { + "startLine": 57, + "startColumn": 4, + "startOffset": 4578, + "endColumn": 77, + "endOffset": 4651 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-it/values-it.xml", + "position": { + "startLine": 30, + "startColumn": 4, + "startOffset": 2101, + "endColumn": 77, + "endOffset": 2174 + } + } + }, + { + "to": { + "startLine": 58, + "startColumn": 4, + "startOffset": 4656, + "endColumn": 76, + "endOffset": 4728 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-it/values-it.xml", + "position": { + "startLine": 31, + "startColumn": 4, + "startOffset": 2179, + "endColumn": 76, + "endOffset": 2251 + } + } + }, + { + "to": { + "startLine": 59, + "startColumn": 4, + "startOffset": 4733, + "endColumn": 73, + "endOffset": 4802 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-it/values-it.xml", + "position": { + "startLine": 32, + "startColumn": 4, + "startOffset": 2256, + "endColumn": 73, + "endOffset": 2325 + } + } + }, + { + "to": { + "startLine": 60, + "startColumn": 4, + "startOffset": 4807, + "endColumn": 68, + "endOffset": 4871 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-it/values-it.xml", + "position": { + "startLine": 33, + "startColumn": 4, + "startOffset": 2330, + "endColumn": 68, + "endOffset": 2394 + } + } + }, + { + "to": { + "startLine": 61, + "startColumn": 4, + "startOffset": 4876, + "endColumn": 61, + "endOffset": 4933 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-it/values-it.xml", + "position": { + "startLine": 34, + "startColumn": 4, + "startOffset": 2399, + "endColumn": 61, + "endOffset": 2456 + } + } + }, + { + "to": { + "startLine": 62, + "startColumn": 4, + "startOffset": 4938, + "endColumn": 255, + "endOffset": 5189 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-it/values-it.xml", + "position": { + "startLine": 35, + "startColumn": 4, + "startOffset": 2461, + "endColumn": 255, + "endOffset": 2712 + } + } + }, + { + "to": { + "startLine": 63, + "startColumn": 4, + "startOffset": 5194, + "endColumn": 59, + "endOffset": 5249 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-it/values-it.xml", + "position": { + "startLine": 36, + "startColumn": 4, + "startOffset": 2717, + "endColumn": 59, + "endOffset": 2772 + } + } + }, + { + "to": { + "startLine": 64, + "startColumn": 4, + "startOffset": 5254, + "endColumn": 50, + "endOffset": 5300 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-it/values-it.xml", + "position": { + "startLine": 37, + "startColumn": 4, + "startOffset": 2777, + "endColumn": 50, + "endOffset": 2823 + } + } + }, + { + "to": { + "startLine": 65, + "startColumn": 4, + "startOffset": 5305, + "endColumn": 61, + "endOffset": 5362 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-it/values-it.xml", + "position": { + "startLine": 38, + "startColumn": 4, + "startOffset": 2828, + "endColumn": 61, + "endOffset": 2885 + } + } + }, + { + "to": { + "startLine": 66, + "startColumn": 4, + "startOffset": 5367, + "endColumn": 68, + "endOffset": 5431 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-it/values-it.xml", + "position": { + "startLine": 39, + "startColumn": 4, + "startOffset": 2890, + "endColumn": 68, + "endOffset": 2954 + } + } + }, + { + "to": { + "startLine": 67, + "startColumn": 4, + "startOffset": 5436, + "endColumn": 55, + "endOffset": 5487 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-it/values-it.xml", + "position": { + "startLine": 40, + "startColumn": 4, + "startOffset": 2959, + "endColumn": 55, + "endOffset": 3010 + } + } + }, + { + "to": { + "startLine": 68, + "startColumn": 4, + "startOffset": 5492, + "endColumn": 72, + "endOffset": 5560 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-it/values-it.xml", + "position": { + "startLine": 41, + "startColumn": 4, + "startOffset": 3015, + "endColumn": 72, + "endOffset": 3083 + } + } + }, + { + "to": { + "startLine": 69, + "startColumn": 4, + "startOffset": 5565, + "endColumn": 280, + "endOffset": 5841 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-it/values-it.xml", + "position": { + "startLine": 42, + "startColumn": 4, + "startOffset": 3088, + "endColumn": 280, + "endOffset": 3364 + } + } + }, + { + "to": { + "startLine": 70, + "startColumn": 4, + "startOffset": 5846, + "endColumn": 180, + "endOffset": 6022 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-it/values-it.xml", + "position": { + "startLine": 43, + "startColumn": 4, + "startOffset": 3369, + "endColumn": 180, + "endOffset": 3545 + } + } + }, + { + "to": { + "startLine": 71, + "startColumn": 4, + "startOffset": 6027, + "endColumn": 80, + "endOffset": 6103 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-it/values-it.xml", + "position": { + "startLine": 44, + "startColumn": 4, + "startOffset": 3550, + "endColumn": 80, + "endOffset": 3626 + } + } + }, + { + "to": { + "startLine": 72, + "startColumn": 4, + "startOffset": 6108, + "endColumn": 114, + "endOffset": 6218 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-it/values-it.xml", + "position": { + "startLine": 45, + "startColumn": 4, + "startOffset": 3631, + "endColumn": 114, + "endOffset": 3741 + } + } + }, + { + "to": { + "startLine": 73, + "startColumn": 4, + "startOffset": 6223, + "endColumn": 56, + "endOffset": 6275 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-it/values-it.xml", + "position": { + "startLine": 46, + "startColumn": 4, + "startOffset": 3746, + "endColumn": 56, + "endOffset": 3798 + } + } + }, + { + "to": { + "startLine": 74, + "startColumn": 4, + "startOffset": 6280, + "endColumn": 85, + "endOffset": 6361 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-it/values-it.xml", + "position": { + "startLine": 47, + "startColumn": 4, + "startOffset": 3803, + "endColumn": 85, + "endOffset": 3884 + } + } + }, + { + "to": { + "startLine": 75, + "startColumn": 4, + "startOffset": 6366, + "endColumn": 49, + "endOffset": 6411 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-it/values-it.xml", + "position": { + "startLine": 48, + "startColumn": 4, + "startOffset": 3889, + "endColumn": 49, + "endOffset": 3934 + } + } + }, + { + "to": { + "startLine": 76, + "startColumn": 4, + "startOffset": 6416, + "endColumn": 58, + "endOffset": 6470 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-it/values-it.xml", + "position": { + "startLine": 49, + "startColumn": 4, + "startOffset": 3939, + "endColumn": 58, + "endOffset": 3993 + } + } + }, + { + "to": { + "startLine": 77, + "startColumn": 4, + "startOffset": 6475, + "endColumn": 164, + "endOffset": 6635 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-it/values-it.xml", + "position": { + "startLine": 50, + "startColumn": 4, + "startOffset": 3998, + "endColumn": 164, + "endOffset": 4158 + } + } + }, + { + "to": { + "startLine": 78, + "startColumn": 4, + "startOffset": 6640, + "endColumn": 99, + "endOffset": 6735 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-it/values-it.xml", + "position": { + "startLine": 51, + "startColumn": 4, + "startOffset": 4163, + "endColumn": 99, + "endOffset": 4258 + } + } + }, + { + "to": { + "startLine": 79, + "startColumn": 4, + "startOffset": 6740, + "endColumn": 72, + "endOffset": 6808 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-it/values-it.xml", + "position": { + "startLine": 52, + "startColumn": 4, + "startOffset": 4263, + "endColumn": 72, + "endOffset": 4331 + } + } + }, + { + "to": { + "startLine": 80, + "startColumn": 4, + "startOffset": 6813, + "endColumn": 72, + "endOffset": 6881 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-it/values-it.xml", + "position": { + "startLine": 53, + "startColumn": 4, + "startOffset": 4336, + "endColumn": 72, + "endOffset": 4404 + } + } + }, + { + "to": { + "startLine": 81, + "startColumn": 4, + "startOffset": 6886, + "endColumn": 221, + "endOffset": 7103 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-it/values-it.xml", + "position": { + "startLine": 54, + "startColumn": 4, + "startOffset": 4409, + "endColumn": 221, + "endOffset": 4626 + } + } + }, + { + "to": { + "startLine": 82, + "startColumn": 4, + "startOffset": 7108, + "endColumn": 69, + "endOffset": 7173 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-it/values-it.xml", + "position": { + "startLine": 55, + "startColumn": 4, + "startOffset": 4631, + "endColumn": 69, + "endOffset": 4696 + } + } + }, + { + "to": { + "startLine": 83, + "startColumn": 4, + "startOffset": 7178, + "endColumn": 100, + "endOffset": 7274 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-it/values-it.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2006, + "endColumn": 100, + "endOffset": 2102 + } + } + }, + { + "to": { + "startLine": 84, + "startColumn": 4, + "startOffset": 7279, + "endColumn": 68, + "endOffset": 7343 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-it/values-it.xml", + "position": { + "startLine": 56, + "startColumn": 4, + "startOffset": 4701, + "endColumn": 68, + "endOffset": 4765 + } + } + }, + { + "to": { + "startLine": 85, + "startColumn": 4, + "startOffset": 7348, + "endColumn": 100, + "endOffset": 7444 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-it/values-it.xml", + "position": { + "startLine": 57, + "startColumn": 4, + "startOffset": 4770, + "endColumn": 100, + "endOffset": 4866 + } + } + }, + { + "to": { + "startLine": 86, + "startColumn": 4, + "startOffset": 7449, + "endColumn": 52, + "endOffset": 7497 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-it/values-it.xml", + "position": { + "startLine": 58, + "startColumn": 4, + "startOffset": 4871, + "endColumn": 52, + "endOffset": 4919 + } + } + }, + { + "to": { + "startLine": 87, + "startColumn": 4, + "startOffset": 7502, + "endColumn": 87, + "endOffset": 7585 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-it/values-it.xml", + "position": { + "startLine": 59, + "startColumn": 4, + "startOffset": 4924, + "endColumn": 87, + "endOffset": 5007 + } + } + }, + { + "to": { + "startLine": 88, + "startColumn": 4, + "startOffset": 7590, + "endColumn": 87, + "endOffset": 7673 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-it/values-it.xml", + "position": { + "startLine": 60, + "startColumn": 4, + "startOffset": 5012, + "endColumn": 87, + "endOffset": 5095 + } + } + }, + { + "to": { + "startLine": 89, + "startColumn": 4, + "startOffset": 7678, + "endColumn": 59, + "endOffset": 7733 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-it/values-it.xml", + "position": { + "startLine": 61, + "startColumn": 4, + "startOffset": 5100, + "endColumn": 59, + "endOffset": 5155 + } + } + }, + { + "to": { + "startLine": 90, + "startColumn": 4, + "startOffset": 7738, + "endColumn": 63, + "endOffset": 7797 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-it/values-it.xml", + "position": { + "startLine": 62, + "startColumn": 4, + "startOffset": 5160, + "endColumn": 63, + "endOffset": 5219 + } + } + }, + { + "to": { + "startLine": 91, + "startColumn": 4, + "startOffset": 7802, + "endColumn": 138, + "endOffset": 7936 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-it/values-it.xml", + "position": { + "startLine": 63, + "startColumn": 4, + "startOffset": 5224, + "endColumn": 138, + "endOffset": 5358 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/multi/values-iw.json b/android/build/intermediates/blame/res/androidTest/debug/multi/values-iw.json new file mode 100644 index 000000000..b81af5998 --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/multi/values-iw.json @@ -0,0 +1,387 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-iw/values-iw.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 103, + "endOffset": 154 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-iw/values-iw.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 103, + "endOffset": 154 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 159, + "endColumn": 109, + "endOffset": 264 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-iw/values-iw.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 159, + "endColumn": 109, + "endOffset": 264 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 269, + "endColumn": 125, + "endOffset": 390 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-iw/values-iw.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 269, + "endColumn": 125, + "endOffset": 390 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 395, + "endColumn": 98, + "endOffset": 489 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-iw/values-iw.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 395, + "endColumn": 98, + "endOffset": 489 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 494, + "endColumn": 107, + "endOffset": 597 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-iw/values-iw.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 494, + "endColumn": 107, + "endOffset": 597 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 602, + "endColumn": 83, + "endOffset": 681 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-iw/values-iw.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 602, + "endColumn": 83, + "endOffset": 681 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 686, + "endColumn": 99, + "endOffset": 781 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-iw/values-iw.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 686, + "endColumn": 99, + "endOffset": 781 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 786, + "endColumn": 113, + "endOffset": 895 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-iw/values-iw.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 786, + "endColumn": 113, + "endOffset": 895 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 900, + "endColumn": 77, + "endOffset": 973 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-iw/values-iw.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 900, + "endColumn": 77, + "endOffset": 973 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 978, + "endColumn": 77, + "endOffset": 1051 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-iw/values-iw.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 978, + "endColumn": 77, + "endOffset": 1051 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1056, + "endColumn": 78, + "endOffset": 1130 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-iw/values-iw.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1056, + "endColumn": 78, + "endOffset": 1130 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1135, + "endColumn": 101, + "endOffset": 1232 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-iw/values-iw.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1135, + "endColumn": 101, + "endOffset": 1232 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1237, + "endColumn": 103, + "endOffset": 1336 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-iw/values-iw.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1237, + "endColumn": 103, + "endOffset": 1336 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1341, + "endColumn": 95, + "endOffset": 1432 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-iw/values-iw.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1341, + "endColumn": 95, + "endOffset": 1432 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1437, + "endColumn": 102, + "endOffset": 1535 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-iw/values-iw.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1437, + "endColumn": 102, + "endOffset": 1535 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1540, + "endColumn": 100, + "endOffset": 1636 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-iw/values-iw.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1540, + "endColumn": 100, + "endOffset": 1636 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1641, + "endColumn": 99, + "endOffset": 1736 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-iw/values-iw.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1641, + "endColumn": 99, + "endOffset": 1736 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1741, + "endColumn": 115, + "endOffset": 1852 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-iw/values-iw.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1741, + "endColumn": 115, + "endOffset": 1852 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1857, + "endColumn": 95, + "endOffset": 1948 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-iw/values-iw.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1857, + "endColumn": 95, + "endOffset": 1948 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1953, + "endColumn": 102, + "endOffset": 2051 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-iw/values-iw.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1953, + "endColumn": 102, + "endOffset": 2051 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/multi/values-ja.json b/android/build/intermediates/blame/res/androidTest/debug/multi/values-ja.json new file mode 100644 index 000000000..6d326bcea --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/multi/values-ja.json @@ -0,0 +1,1717 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ja/values-ja.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 96, + "endOffset": 147 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ja/values-ja.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 96, + "endOffset": 147 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 152, + "endColumn": 106, + "endOffset": 254 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ja/values-ja.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 152, + "endColumn": 106, + "endOffset": 254 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 259, + "endColumn": 120, + "endOffset": 375 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ja/values-ja.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 259, + "endColumn": 120, + "endOffset": 375 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 380, + "endColumn": 92, + "endOffset": 468 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ja/values-ja.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 380, + "endColumn": 92, + "endOffset": 468 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 473, + "endColumn": 104, + "endOffset": 573 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ja/values-ja.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 473, + "endColumn": 104, + "endOffset": 573 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 578, + "endColumn": 81, + "endOffset": 655 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ja/values-ja.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 578, + "endColumn": 81, + "endOffset": 655 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 660, + "endColumn": 97, + "endOffset": 753 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ja/values-ja.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 660, + "endColumn": 97, + "endOffset": 753 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 758, + "endColumn": 107, + "endOffset": 861 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ja/values-ja.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 758, + "endColumn": 107, + "endOffset": 861 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 866, + "endColumn": 76, + "endOffset": 938 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ja/values-ja.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 866, + "endColumn": 76, + "endOffset": 938 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 943, + "endColumn": 75, + "endOffset": 1014 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ja/values-ja.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 943, + "endColumn": 75, + "endOffset": 1014 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1019, + "endColumn": 77, + "endOffset": 1092 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ja/values-ja.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1019, + "endColumn": 77, + "endOffset": 1092 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1097, + "endColumn": 101, + "endOffset": 1194 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ja/values-ja.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1097, + "endColumn": 101, + "endOffset": 1194 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1199, + "endColumn": 98, + "endOffset": 1293 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ja/values-ja.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1199, + "endColumn": 98, + "endOffset": 1293 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1298, + "endColumn": 94, + "endOffset": 1388 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ja/values-ja.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1298, + "endColumn": 94, + "endOffset": 1388 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1393, + "endColumn": 102, + "endOffset": 1491 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ja/values-ja.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1393, + "endColumn": 102, + "endOffset": 1491 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1496, + "endColumn": 94, + "endOffset": 1586 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ja/values-ja.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1496, + "endColumn": 94, + "endOffset": 1586 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1591, + "endColumn": 95, + "endOffset": 1682 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ja/values-ja.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1591, + "endColumn": 95, + "endOffset": 1682 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1687, + "endColumn": 110, + "endOffset": 1793 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ja/values-ja.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1687, + "endColumn": 110, + "endOffset": 1793 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1798, + "endColumn": 96, + "endOffset": 1890 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ja/values-ja.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1798, + "endColumn": 96, + "endOffset": 1890 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1895, + "endColumn": 54, + "endOffset": 1945 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-ja/values-ja.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 54, + "endOffset": 105 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 1950, + "endColumn": 48, + "endOffset": 1994 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-ja/values-ja.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 110, + "endColumn": 48, + "endOffset": 154 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 1999, + "endColumn": 44, + "endOffset": 2039 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-ja/values-ja.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 159, + "endColumn": 44, + "endOffset": 199 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2044, + "endColumn": 43, + "endOffset": 2083 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-ja/values-ja.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 204, + "endColumn": 43, + "endOffset": 243 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2088, + "endColumn": 41, + "endOffset": 2125 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-ja/values-ja.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 248, + "endColumn": 41, + "endOffset": 285 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2130, + "endColumn": 49, + "endOffset": 2175 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-ja/values-ja.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 290, + "endColumn": 49, + "endOffset": 335 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 2180, + "endColumn": 47, + "endOffset": 2223 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-ja/values-ja.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 340, + "endColumn": 47, + "endOffset": 383 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 2228, + "endColumn": 43, + "endOffset": 2267 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-ja/values-ja.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 388, + "endColumn": 43, + "endOffset": 427 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 2272, + "endColumn": 41, + "endOffset": 2309 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-ja/values-ja.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 432, + "endColumn": 41, + "endOffset": 469 + } + } + }, + { + "to": { + "startLine": 30, + "startColumn": 4, + "startOffset": 2314, + "endColumn": 41, + "endOffset": 2351 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-ja/values-ja.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 474, + "endColumn": 41, + "endOffset": 511 + } + } + }, + { + "to": { + "startLine": 31, + "startColumn": 4, + "startOffset": 2356, + "endColumn": 54, + "endOffset": 2406 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-ja/values-ja.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 516, + "endColumn": 54, + "endOffset": 566 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 2411, + "endColumn": 129, + "endOffset": 2536 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-ja/values-ja.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 571, + "endColumn": 129, + "endOffset": 696 + } + } + }, + { + "to": { + "startLine": 33, + "startColumn": 4, + "startOffset": 2541, + "endColumn": 42, + "endOffset": 2579 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-ja/values-ja.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 701, + "endColumn": 42, + "endOffset": 739 + } + } + }, + { + "to": { + "startLine": 34, + "startColumn": 4, + "startOffset": 2584, + "endColumn": 52, + "endOffset": 2632 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-ja/values-ja.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 744, + "endColumn": 52, + "endOffset": 792 + } + } + }, + { + "to": { + "startLine": 35, + "startColumn": 4, + "startOffset": 2637, + "endColumn": 98, + "endOffset": 2731 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-ja/values-ja.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 797, + "endColumn": 98, + "endOffset": 891 + } + } + }, + { + "to": { + "startLine": 36, + "startColumn": 4, + "startOffset": 2736, + "endColumn": 47, + "endOffset": 2779 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-ja/values-ja.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 896, + "endColumn": 47, + "endOffset": 939 + } + } + }, + { + "to": { + "startLine": 37, + "startColumn": 4, + "startOffset": 2784, + "endColumn": 66, + "endOffset": 2846 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-ja/values-ja.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 944, + "endColumn": 66, + "endOffset": 1006 + } + } + }, + { + "to": { + "startLine": 38, + "startColumn": 4, + "startOffset": 2851, + "endColumn": 50, + "endOffset": 2897 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-ja/values-ja.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1011, + "endColumn": 50, + "endOffset": 1057 + } + } + }, + { + "to": { + "startLine": 39, + "startColumn": 4, + "startOffset": 2902, + "endColumn": 84, + "endOffset": 2982 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-ja/values-ja.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1062, + "endColumn": 84, + "endOffset": 1142 + } + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 2987, + "endColumn": 40, + "endOffset": 3023 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-ja/values-ja.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1147, + "endColumn": 40, + "endOffset": 1183 + } + } + }, + { + "to": { + "startLine": 41, + "startColumn": 4, + "startOffset": 3028, + "endColumn": 53, + "endOffset": 3077 + }, + "from": { + "file": "/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/values-ja/values-ja.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 53, + "endOffset": 104 + } + } + }, + { + "to": { + "startLine": 42, + "startColumn": 4, + "startOffset": 3082, + "endColumn": 60, + "endOffset": 3138 + }, + "from": { + "file": "/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/values-ja/values-ja.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 109, + "endColumn": 60, + "endOffset": 165 + } + } + }, + { + "to": { + "startLine": 43, + "startColumn": 4, + "startOffset": 3143, + "endColumn": 78, + "endOffset": 3217 + }, + "from": { + "file": "/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/values-ja/values-ja.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 170, + "endColumn": 78, + "endOffset": 244 + } + } + }, + { + "to": { + "startLine": 44, + "startColumn": 4, + "startOffset": 3222, + "endColumn": 70, + "endOffset": 3288 + }, + "from": { + "file": "/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/values-ja/values-ja.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 249, + "endColumn": 70, + "endOffset": 315 + } + } + }, + { + "to": { + "startLine": 45, + "startColumn": 4, + "startOffset": 3293, + "endColumn": 61, + "endOffset": 3350 + }, + "from": { + "file": "/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/values-ja/values-ja.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 320, + "endColumn": 61, + "endOffset": 377 + } + } + }, + { + "to": { + "startLine": 46, + "startColumn": 4, + "startOffset": 3355, + "endColumn": 55, + "endOffset": 3406 + }, + "from": { + "file": "/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/values-ja/values-ja.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 382, + "endColumn": 55, + "endOffset": 433 + } + } + }, + { + "to": { + "startLine": 47, + "startColumn": 4, + "startOffset": 3411, + "endColumn": 58, + "endOffset": 3465 + }, + "from": { + "file": "/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/values-ja/values-ja.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 438, + "endColumn": 58, + "endOffset": 492 + } + } + }, + { + "to": { + "startLine": 48, + "startColumn": 4, + "startOffset": 3470, + "endColumn": 73, + "endOffset": 3539 + }, + "from": { + "file": "/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/values-ja/values-ja.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 497, + "endColumn": 73, + "endOffset": 566 + } + } + }, + { + "to": { + "startLine": 49, + "startColumn": 4, + "startOffset": 3544, + "endColumn": 44, + "endOffset": 3584 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-ja/values-ja.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 1188, + "endColumn": 44, + "endOffset": 1228 + } + } + }, + { + "to": { + "startLine": 50, + "startColumn": 4, + "startOffset": 3589, + "endColumn": 73, + "endOffset": 3658 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-ja/values-ja.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 1233, + "endColumn": 73, + "endOffset": 1302 + } + } + }, + { + "to": { + "startLine": 51, + "startColumn": 4, + "startOffset": 3663, + "endColumn": 60, + "endOffset": 3719 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-ja/values-ja.xml", + "position": { + "startLine": 24, + "startColumn": 4, + "startOffset": 1307, + "endColumn": 60, + "endOffset": 1363 + } + } + }, + { + "to": { + "startLine": 52, + "startColumn": 4, + "startOffset": 3724, + "endColumn": 88, + "endOffset": 3808 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-ja/values-ja.xml", + "position": { + "startLine": 25, + "startColumn": 4, + "startOffset": 1368, + "endColumn": 88, + "endOffset": 1452 + } + } + }, + { + "to": { + "startLine": 53, + "startColumn": 4, + "startOffset": 3813, + "endColumn": 44, + "endOffset": 3853 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-ja/values-ja.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 1457, + "endColumn": 44, + "endOffset": 1497 + } + } + }, + { + "to": { + "startLine": 54, + "startColumn": 4, + "startOffset": 3858, + "endColumn": 50, + "endOffset": 3904 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-ja/values-ja.xml", + "position": { + "startLine": 27, + "startColumn": 4, + "startOffset": 1502, + "endColumn": 50, + "endOffset": 1548 + } + } + }, + { + "to": { + "startLine": 55, + "startColumn": 4, + "startOffset": 3909, + "endColumn": 81, + "endOffset": 3986 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-ja/values-ja.xml", + "position": { + "startLine": 28, + "startColumn": 4, + "startOffset": 1553, + "endColumn": 81, + "endOffset": 1630 + } + } + }, + { + "to": { + "startLine": 56, + "startColumn": 4, + "startOffset": 3991, + "endColumn": 47, + "endOffset": 4034 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-ja/values-ja.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 1635, + "endColumn": 47, + "endOffset": 1678 + } + } + }, + { + "to": { + "startLine": 57, + "startColumn": 4, + "startOffset": 4039, + "endColumn": 70, + "endOffset": 4105 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-ja/values-ja.xml", + "position": { + "startLine": 30, + "startColumn": 4, + "startOffset": 1683, + "endColumn": 70, + "endOffset": 1749 + } + } + }, + { + "to": { + "startLine": 58, + "startColumn": 4, + "startOffset": 4110, + "endColumn": 65, + "endOffset": 4171 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-ja/values-ja.xml", + "position": { + "startLine": 31, + "startColumn": 4, + "startOffset": 1754, + "endColumn": 65, + "endOffset": 1815 + } + } + }, + { + "to": { + "startLine": 59, + "startColumn": 4, + "startOffset": 4176, + "endColumn": 54, + "endOffset": 4226 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-ja/values-ja.xml", + "position": { + "startLine": 32, + "startColumn": 4, + "startOffset": 1820, + "endColumn": 54, + "endOffset": 1870 + } + } + }, + { + "to": { + "startLine": 60, + "startColumn": 4, + "startOffset": 4231, + "endColumn": 53, + "endOffset": 4280 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-ja/values-ja.xml", + "position": { + "startLine": 33, + "startColumn": 4, + "startOffset": 1875, + "endColumn": 53, + "endOffset": 1924 + } + } + }, + { + "to": { + "startLine": 61, + "startColumn": 4, + "startOffset": 4285, + "endColumn": 58, + "endOffset": 4339 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-ja/values-ja.xml", + "position": { + "startLine": 34, + "startColumn": 4, + "startOffset": 1929, + "endColumn": 58, + "endOffset": 1983 + } + } + }, + { + "to": { + "startLine": 62, + "startColumn": 4, + "startOffset": 4344, + "endColumn": 127, + "endOffset": 4467 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-ja/values-ja.xml", + "position": { + "startLine": 35, + "startColumn": 4, + "startOffset": 1988, + "endColumn": 127, + "endOffset": 2111 + } + } + }, + { + "to": { + "startLine": 63, + "startColumn": 4, + "startOffset": 4472, + "endColumn": 54, + "endOffset": 4522 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-ja/values-ja.xml", + "position": { + "startLine": 36, + "startColumn": 4, + "startOffset": 2116, + "endColumn": 54, + "endOffset": 2166 + } + } + }, + { + "to": { + "startLine": 64, + "startColumn": 4, + "startOffset": 4527, + "endColumn": 50, + "endOffset": 4573 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-ja/values-ja.xml", + "position": { + "startLine": 37, + "startColumn": 4, + "startOffset": 2171, + "endColumn": 50, + "endOffset": 2217 + } + } + }, + { + "to": { + "startLine": 65, + "startColumn": 4, + "startOffset": 4578, + "endColumn": 54, + "endOffset": 4628 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-ja/values-ja.xml", + "position": { + "startLine": 38, + "startColumn": 4, + "startOffset": 2222, + "endColumn": 54, + "endOffset": 2272 + } + } + }, + { + "to": { + "startLine": 66, + "startColumn": 4, + "startOffset": 4633, + "endColumn": 65, + "endOffset": 4694 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-ja/values-ja.xml", + "position": { + "startLine": 39, + "startColumn": 4, + "startOffset": 2277, + "endColumn": 65, + "endOffset": 2338 + } + } + }, + { + "to": { + "startLine": 67, + "startColumn": 4, + "startOffset": 4699, + "endColumn": 44, + "endOffset": 4739 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-ja/values-ja.xml", + "position": { + "startLine": 40, + "startColumn": 4, + "startOffset": 2343, + "endColumn": 44, + "endOffset": 2383 + } + } + }, + { + "to": { + "startLine": 68, + "startColumn": 4, + "startOffset": 4744, + "endColumn": 56, + "endOffset": 4796 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-ja/values-ja.xml", + "position": { + "startLine": 41, + "startColumn": 4, + "startOffset": 2388, + "endColumn": 56, + "endOffset": 2440 + } + } + }, + { + "to": { + "startLine": 69, + "startColumn": 4, + "startOffset": 4801, + "endColumn": 127, + "endOffset": 4924 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-ja/values-ja.xml", + "position": { + "startLine": 42, + "startColumn": 4, + "startOffset": 2445, + "endColumn": 127, + "endOffset": 2568 + } + } + }, + { + "to": { + "startLine": 70, + "startColumn": 4, + "startOffset": 4929, + "endColumn": 115, + "endOffset": 5040 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-ja/values-ja.xml", + "position": { + "startLine": 43, + "startColumn": 4, + "startOffset": 2573, + "endColumn": 115, + "endOffset": 2684 + } + } + }, + { + "to": { + "startLine": 71, + "startColumn": 4, + "startOffset": 5045, + "endColumn": 61, + "endOffset": 5102 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-ja/values-ja.xml", + "position": { + "startLine": 44, + "startColumn": 4, + "startOffset": 2689, + "endColumn": 61, + "endOffset": 2746 + } + } + }, + { + "to": { + "startLine": 72, + "startColumn": 4, + "startOffset": 5107, + "endColumn": 72, + "endOffset": 5175 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-ja/values-ja.xml", + "position": { + "startLine": 45, + "startColumn": 4, + "startOffset": 2751, + "endColumn": 72, + "endOffset": 2819 + } + } + }, + { + "to": { + "startLine": 73, + "startColumn": 4, + "startOffset": 5180, + "endColumn": 49, + "endOffset": 5225 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-ja/values-ja.xml", + "position": { + "startLine": 46, + "startColumn": 4, + "startOffset": 2824, + "endColumn": 49, + "endOffset": 2869 + } + } + }, + { + "to": { + "startLine": 74, + "startColumn": 4, + "startOffset": 5230, + "endColumn": 64, + "endOffset": 5290 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-ja/values-ja.xml", + "position": { + "startLine": 47, + "startColumn": 4, + "startOffset": 2874, + "endColumn": 64, + "endOffset": 2934 + } + } + }, + { + "to": { + "startLine": 75, + "startColumn": 4, + "startOffset": 5295, + "endColumn": 39, + "endOffset": 5330 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-ja/values-ja.xml", + "position": { + "startLine": 48, + "startColumn": 4, + "startOffset": 2939, + "endColumn": 39, + "endOffset": 2974 + } + } + }, + { + "to": { + "startLine": 76, + "startColumn": 4, + "startOffset": 5335, + "endColumn": 46, + "endOffset": 5377 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-ja/values-ja.xml", + "position": { + "startLine": 49, + "startColumn": 4, + "startOffset": 2979, + "endColumn": 46, + "endOffset": 3021 + } + } + }, + { + "to": { + "startLine": 77, + "startColumn": 4, + "startOffset": 5382, + "endColumn": 83, + "endOffset": 5461 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-ja/values-ja.xml", + "position": { + "startLine": 50, + "startColumn": 4, + "startOffset": 3026, + "endColumn": 83, + "endOffset": 3105 + } + } + }, + { + "to": { + "startLine": 78, + "startColumn": 4, + "startOffset": 5466, + "endColumn": 66, + "endOffset": 5528 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-ja/values-ja.xml", + "position": { + "startLine": 51, + "startColumn": 4, + "startOffset": 3110, + "endColumn": 66, + "endOffset": 3172 + } + } + }, + { + "to": { + "startLine": 79, + "startColumn": 4, + "startOffset": 5533, + "endColumn": 53, + "endOffset": 5582 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-ja/values-ja.xml", + "position": { + "startLine": 52, + "startColumn": 4, + "startOffset": 3177, + "endColumn": 53, + "endOffset": 3226 + } + } + }, + { + "to": { + "startLine": 80, + "startColumn": 4, + "startOffset": 5587, + "endColumn": 51, + "endOffset": 5634 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-ja/values-ja.xml", + "position": { + "startLine": 53, + "startColumn": 4, + "startOffset": 3231, + "endColumn": 51, + "endOffset": 3278 + } + } + }, + { + "to": { + "startLine": 81, + "startColumn": 4, + "startOffset": 5639, + "endColumn": 113, + "endOffset": 5748 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-ja/values-ja.xml", + "position": { + "startLine": 54, + "startColumn": 4, + "startOffset": 3283, + "endColumn": 113, + "endOffset": 3392 + } + } + }, + { + "to": { + "startLine": 82, + "startColumn": 4, + "startOffset": 5753, + "endColumn": 50, + "endOffset": 5799 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-ja/values-ja.xml", + "position": { + "startLine": 55, + "startColumn": 4, + "startOffset": 3397, + "endColumn": 50, + "endOffset": 3443 + } + } + }, + { + "to": { + "startLine": 83, + "startColumn": 4, + "startOffset": 5804, + "endColumn": 100, + "endOffset": 5900 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ja/values-ja.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1895, + "endColumn": 100, + "endOffset": 1991 + } + } + }, + { + "to": { + "startLine": 84, + "startColumn": 4, + "startOffset": 5905, + "endColumn": 54, + "endOffset": 5955 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-ja/values-ja.xml", + "position": { + "startLine": 56, + "startColumn": 4, + "startOffset": 3448, + "endColumn": 54, + "endOffset": 3498 + } + } + }, + { + "to": { + "startLine": 85, + "startColumn": 4, + "startOffset": 5960, + "endColumn": 74, + "endOffset": 6030 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-ja/values-ja.xml", + "position": { + "startLine": 57, + "startColumn": 4, + "startOffset": 3503, + "endColumn": 74, + "endOffset": 3573 + } + } + }, + { + "to": { + "startLine": 86, + "startColumn": 4, + "startOffset": 6035, + "endColumn": 50, + "endOffset": 6081 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-ja/values-ja.xml", + "position": { + "startLine": 58, + "startColumn": 4, + "startOffset": 3578, + "endColumn": 50, + "endOffset": 3624 + } + } + }, + { + "to": { + "startLine": 87, + "startColumn": 4, + "startOffset": 6086, + "endColumn": 69, + "endOffset": 6151 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-ja/values-ja.xml", + "position": { + "startLine": 59, + "startColumn": 4, + "startOffset": 3629, + "endColumn": 69, + "endOffset": 3694 + } + } + }, + { + "to": { + "startLine": 88, + "startColumn": 4, + "startOffset": 6156, + "endColumn": 68, + "endOffset": 6220 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-ja/values-ja.xml", + "position": { + "startLine": 60, + "startColumn": 4, + "startOffset": 3699, + "endColumn": 68, + "endOffset": 3763 + } + } + }, + { + "to": { + "startLine": 89, + "startColumn": 4, + "startOffset": 6225, + "endColumn": 56, + "endOffset": 6277 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-ja/values-ja.xml", + "position": { + "startLine": 61, + "startColumn": 4, + "startOffset": 3768, + "endColumn": 56, + "endOffset": 3820 + } + } + }, + { + "to": { + "startLine": 90, + "startColumn": 4, + "startOffset": 6282, + "endColumn": 46, + "endOffset": 6324 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-ja/values-ja.xml", + "position": { + "startLine": 62, + "startColumn": 4, + "startOffset": 3825, + "endColumn": 46, + "endOffset": 3867 + } + } + }, + { + "to": { + "startLine": 91, + "startColumn": 4, + "startOffset": 6329, + "endColumn": 87, + "endOffset": 6412 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-ja/values-ja.xml", + "position": { + "startLine": 63, + "startColumn": 4, + "startOffset": 3872, + "endColumn": 87, + "endOffset": 3955 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/multi/values-ka-rGE.json b/android/build/intermediates/blame/res/androidTest/debug/multi/values-ka-rGE.json new file mode 100644 index 000000000..126fc246a --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/multi/values-ka-rGE.json @@ -0,0 +1,387 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ka-rGE/values-ka-rGE.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 108, + "endOffset": 159 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ka-rGE/values-ka-rGE.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 108, + "endOffset": 159 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 164, + "endColumn": 107, + "endOffset": 267 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ka-rGE/values-ka-rGE.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 164, + "endColumn": 107, + "endOffset": 267 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 272, + "endColumn": 122, + "endOffset": 390 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ka-rGE/values-ka-rGE.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 272, + "endColumn": 122, + "endOffset": 390 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 395, + "endColumn": 103, + "endOffset": 494 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ka-rGE/values-ka-rGE.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 395, + "endColumn": 103, + "endOffset": 494 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 499, + "endColumn": 110, + "endOffset": 605 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ka-rGE/values-ka-rGE.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 499, + "endColumn": 110, + "endOffset": 605 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 610, + "endColumn": 87, + "endOffset": 693 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ka-rGE/values-ka-rGE.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 610, + "endColumn": 87, + "endOffset": 693 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 698, + "endColumn": 104, + "endOffset": 798 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ka-rGE/values-ka-rGE.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 698, + "endColumn": 104, + "endOffset": 798 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 803, + "endColumn": 112, + "endOffset": 911 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ka-rGE/values-ka-rGE.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 803, + "endColumn": 112, + "endOffset": 911 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 916, + "endColumn": 83, + "endOffset": 995 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ka-rGE/values-ka-rGE.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 916, + "endColumn": 83, + "endOffset": 995 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1000, + "endColumn": 81, + "endOffset": 1077 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ka-rGE/values-ka-rGE.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1000, + "endColumn": 81, + "endOffset": 1077 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1082, + "endColumn": 82, + "endOffset": 1160 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ka-rGE/values-ka-rGE.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1082, + "endColumn": 82, + "endOffset": 1160 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1165, + "endColumn": 112, + "endOffset": 1273 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ka-rGE/values-ka-rGE.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1165, + "endColumn": 112, + "endOffset": 1273 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1278, + "endColumn": 106, + "endOffset": 1380 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ka-rGE/values-ka-rGE.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1278, + "endColumn": 106, + "endOffset": 1380 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1385, + "endColumn": 97, + "endOffset": 1478 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ka-rGE/values-ka-rGE.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1385, + "endColumn": 97, + "endOffset": 1478 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1483, + "endColumn": 112, + "endOffset": 1591 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ka-rGE/values-ka-rGE.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1483, + "endColumn": 112, + "endOffset": 1591 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1596, + "endColumn": 103, + "endOffset": 1695 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ka-rGE/values-ka-rGE.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1596, + "endColumn": 103, + "endOffset": 1695 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1700, + "endColumn": 103, + "endOffset": 1799 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ka-rGE/values-ka-rGE.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1700, + "endColumn": 103, + "endOffset": 1799 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1804, + "endColumn": 121, + "endOffset": 1921 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ka-rGE/values-ka-rGE.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1804, + "endColumn": 121, + "endOffset": 1921 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1926, + "endColumn": 97, + "endOffset": 2019 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ka-rGE/values-ka-rGE.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1926, + "endColumn": 97, + "endOffset": 2019 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2024, + "endColumn": 100, + "endOffset": 2120 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ka-rGE/values-ka-rGE.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2024, + "endColumn": 100, + "endOffset": 2120 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/multi/values-kk-rKZ.json b/android/build/intermediates/blame/res/androidTest/debug/multi/values-kk-rKZ.json new file mode 100644 index 000000000..62aadacf3 --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/multi/values-kk-rKZ.json @@ -0,0 +1,387 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-kk-rKZ/values-kk-rKZ.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 111, + "endOffset": 162 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-kk-rKZ/values-kk-rKZ.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 111, + "endOffset": 162 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 167, + "endColumn": 107, + "endOffset": 270 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-kk-rKZ/values-kk-rKZ.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 167, + "endColumn": 107, + "endOffset": 270 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 275, + "endColumn": 122, + "endOffset": 393 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-kk-rKZ/values-kk-rKZ.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 275, + "endColumn": 122, + "endOffset": 393 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 398, + "endColumn": 102, + "endOffset": 496 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-kk-rKZ/values-kk-rKZ.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 398, + "endColumn": 102, + "endOffset": 496 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 501, + "endColumn": 109, + "endOffset": 606 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-kk-rKZ/values-kk-rKZ.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 501, + "endColumn": 109, + "endOffset": 606 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 611, + "endColumn": 84, + "endOffset": 691 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-kk-rKZ/values-kk-rKZ.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 611, + "endColumn": 84, + "endOffset": 691 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 696, + "endColumn": 105, + "endOffset": 797 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-kk-rKZ/values-kk-rKZ.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 696, + "endColumn": 105, + "endOffset": 797 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 802, + "endColumn": 118, + "endOffset": 916 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-kk-rKZ/values-kk-rKZ.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 802, + "endColumn": 118, + "endOffset": 916 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 921, + "endColumn": 80, + "endOffset": 997 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-kk-rKZ/values-kk-rKZ.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 921, + "endColumn": 80, + "endOffset": 997 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1002, + "endColumn": 79, + "endOffset": 1077 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-kk-rKZ/values-kk-rKZ.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1002, + "endColumn": 79, + "endOffset": 1077 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1082, + "endColumn": 80, + "endOffset": 1158 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-kk-rKZ/values-kk-rKZ.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1082, + "endColumn": 80, + "endOffset": 1158 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1163, + "endColumn": 102, + "endOffset": 1261 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-kk-rKZ/values-kk-rKZ.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1163, + "endColumn": 102, + "endOffset": 1261 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1266, + "endColumn": 104, + "endOffset": 1366 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-kk-rKZ/values-kk-rKZ.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1266, + "endColumn": 104, + "endOffset": 1366 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1371, + "endColumn": 97, + "endOffset": 1464 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-kk-rKZ/values-kk-rKZ.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1371, + "endColumn": 97, + "endOffset": 1464 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1469, + "endColumn": 106, + "endOffset": 1571 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-kk-rKZ/values-kk-rKZ.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1469, + "endColumn": 106, + "endOffset": 1571 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1576, + "endColumn": 108, + "endOffset": 1680 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-kk-rKZ/values-kk-rKZ.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1576, + "endColumn": 108, + "endOffset": 1680 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1685, + "endColumn": 99, + "endOffset": 1780 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-kk-rKZ/values-kk-rKZ.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1685, + "endColumn": 99, + "endOffset": 1780 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1785, + "endColumn": 114, + "endOffset": 1895 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-kk-rKZ/values-kk-rKZ.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1785, + "endColumn": 114, + "endOffset": 1895 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1900, + "endColumn": 98, + "endOffset": 1994 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-kk-rKZ/values-kk-rKZ.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1900, + "endColumn": 98, + "endOffset": 1994 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1999, + "endColumn": 100, + "endOffset": 2095 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-kk-rKZ/values-kk-rKZ.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1999, + "endColumn": 100, + "endOffset": 2095 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/multi/values-km-rKH.json b/android/build/intermediates/blame/res/androidTest/debug/multi/values-km-rKH.json new file mode 100644 index 000000000..fa27a7f58 --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/multi/values-km-rKH.json @@ -0,0 +1,387 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-km-rKH/values-km-rKH.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 102, + "endOffset": 153 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-km-rKH/values-km-rKH.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 102, + "endOffset": 153 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 158, + "endColumn": 107, + "endOffset": 261 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-km-rKH/values-km-rKH.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 158, + "endColumn": 107, + "endOffset": 261 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 266, + "endColumn": 122, + "endOffset": 384 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-km-rKH/values-km-rKH.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 266, + "endColumn": 122, + "endOffset": 384 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 389, + "endColumn": 99, + "endOffset": 484 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-km-rKH/values-km-rKH.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 389, + "endColumn": 99, + "endOffset": 484 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 489, + "endColumn": 111, + "endOffset": 596 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-km-rKH/values-km-rKH.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 489, + "endColumn": 111, + "endOffset": 596 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 601, + "endColumn": 86, + "endOffset": 683 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-km-rKH/values-km-rKH.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 601, + "endColumn": 86, + "endOffset": 683 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 688, + "endColumn": 103, + "endOffset": 787 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-km-rKH/values-km-rKH.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 688, + "endColumn": 103, + "endOffset": 787 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 792, + "endColumn": 117, + "endOffset": 905 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-km-rKH/values-km-rKH.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 792, + "endColumn": 117, + "endOffset": 905 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 910, + "endColumn": 76, + "endOffset": 982 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-km-rKH/values-km-rKH.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 910, + "endColumn": 76, + "endOffset": 982 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 987, + "endColumn": 76, + "endOffset": 1059 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-km-rKH/values-km-rKH.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 987, + "endColumn": 76, + "endOffset": 1059 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1064, + "endColumn": 82, + "endOffset": 1142 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-km-rKH/values-km-rKH.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1064, + "endColumn": 82, + "endOffset": 1142 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1147, + "endColumn": 103, + "endOffset": 1246 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-km-rKH/values-km-rKH.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1147, + "endColumn": 103, + "endOffset": 1246 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1251, + "endColumn": 104, + "endOffset": 1351 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-km-rKH/values-km-rKH.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1251, + "endColumn": 104, + "endOffset": 1351 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1356, + "endColumn": 99, + "endOffset": 1451 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-km-rKH/values-km-rKH.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1356, + "endColumn": 99, + "endOffset": 1451 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1456, + "endColumn": 109, + "endOffset": 1561 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-km-rKH/values-km-rKH.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1456, + "endColumn": 109, + "endOffset": 1561 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1566, + "endColumn": 106, + "endOffset": 1668 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-km-rKH/values-km-rKH.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1566, + "endColumn": 106, + "endOffset": 1668 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1673, + "endColumn": 107, + "endOffset": 1776 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-km-rKH/values-km-rKH.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1673, + "endColumn": 107, + "endOffset": 1776 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1781, + "endColumn": 122, + "endOffset": 1899 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-km-rKH/values-km-rKH.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1781, + "endColumn": 122, + "endOffset": 1899 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1904, + "endColumn": 97, + "endOffset": 1997 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-km-rKH/values-km-rKH.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1904, + "endColumn": 97, + "endOffset": 1997 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2002, + "endColumn": 100, + "endOffset": 2098 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-km-rKH/values-km-rKH.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2002, + "endColumn": 100, + "endOffset": 2098 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/multi/values-kn-rIN.json b/android/build/intermediates/blame/res/androidTest/debug/multi/values-kn-rIN.json new file mode 100644 index 000000000..f2711175f --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/multi/values-kn-rIN.json @@ -0,0 +1,387 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-kn-rIN/values-kn-rIN.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 117, + "endOffset": 168 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-kn-rIN/values-kn-rIN.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 117, + "endOffset": 168 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 173, + "endColumn": 107, + "endOffset": 276 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-kn-rIN/values-kn-rIN.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 173, + "endColumn": 107, + "endOffset": 276 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 281, + "endColumn": 122, + "endOffset": 399 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-kn-rIN/values-kn-rIN.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 281, + "endColumn": 122, + "endOffset": 399 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 404, + "endColumn": 111, + "endOffset": 511 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-kn-rIN/values-kn-rIN.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 404, + "endColumn": 111, + "endOffset": 511 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 516, + "endColumn": 112, + "endOffset": 624 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-kn-rIN/values-kn-rIN.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 516, + "endColumn": 112, + "endOffset": 624 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 629, + "endColumn": 87, + "endOffset": 712 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-kn-rIN/values-kn-rIN.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 629, + "endColumn": 87, + "endOffset": 712 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 717, + "endColumn": 106, + "endOffset": 819 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-kn-rIN/values-kn-rIN.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 717, + "endColumn": 106, + "endOffset": 819 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 824, + "endColumn": 126, + "endOffset": 946 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-kn-rIN/values-kn-rIN.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 824, + "endColumn": 126, + "endOffset": 946 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 951, + "endColumn": 76, + "endOffset": 1023 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-kn-rIN/values-kn-rIN.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 951, + "endColumn": 76, + "endOffset": 1023 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1028, + "endColumn": 76, + "endOffset": 1100 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-kn-rIN/values-kn-rIN.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1028, + "endColumn": 76, + "endOffset": 1100 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1105, + "endColumn": 81, + "endOffset": 1182 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-kn-rIN/values-kn-rIN.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1105, + "endColumn": 81, + "endOffset": 1182 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1187, + "endColumn": 115, + "endOffset": 1298 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-kn-rIN/values-kn-rIN.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1187, + "endColumn": 115, + "endOffset": 1298 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1303, + "endColumn": 110, + "endOffset": 1409 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-kn-rIN/values-kn-rIN.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1303, + "endColumn": 110, + "endOffset": 1409 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1414, + "endColumn": 98, + "endOffset": 1508 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-kn-rIN/values-kn-rIN.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1414, + "endColumn": 98, + "endOffset": 1508 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1513, + "endColumn": 112, + "endOffset": 1621 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-kn-rIN/values-kn-rIN.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1513, + "endColumn": 112, + "endOffset": 1621 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1626, + "endColumn": 103, + "endOffset": 1725 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-kn-rIN/values-kn-rIN.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1626, + "endColumn": 103, + "endOffset": 1725 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1730, + "endColumn": 113, + "endOffset": 1839 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-kn-rIN/values-kn-rIN.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1730, + "endColumn": 113, + "endOffset": 1839 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1844, + "endColumn": 125, + "endOffset": 1965 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-kn-rIN/values-kn-rIN.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1844, + "endColumn": 125, + "endOffset": 1965 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1970, + "endColumn": 99, + "endOffset": 2065 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-kn-rIN/values-kn-rIN.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1970, + "endColumn": 99, + "endOffset": 2065 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2070, + "endColumn": 100, + "endOffset": 2166 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-kn-rIN/values-kn-rIN.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2070, + "endColumn": 100, + "endOffset": 2166 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/multi/values-ko.json b/android/build/intermediates/blame/res/androidTest/debug/multi/values-ko.json new file mode 100644 index 000000000..2f4286165 --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/multi/values-ko.json @@ -0,0 +1,539 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ko/values-ko.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 94, + "endOffset": 145 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ko/values-ko.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 94, + "endOffset": 145 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 150, + "endColumn": 107, + "endOffset": 253 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ko/values-ko.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 150, + "endColumn": 107, + "endOffset": 253 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 258, + "endColumn": 122, + "endOffset": 376 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ko/values-ko.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 258, + "endColumn": 122, + "endOffset": 376 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 381, + "endColumn": 93, + "endOffset": 470 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ko/values-ko.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 381, + "endColumn": 93, + "endOffset": 470 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 475, + "endColumn": 101, + "endOffset": 572 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ko/values-ko.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 475, + "endColumn": 101, + "endOffset": 572 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 577, + "endColumn": 81, + "endOffset": 654 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ko/values-ko.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 577, + "endColumn": 81, + "endOffset": 654 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 659, + "endColumn": 97, + "endOffset": 752 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ko/values-ko.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 659, + "endColumn": 97, + "endOffset": 752 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 757, + "endColumn": 105, + "endOffset": 858 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ko/values-ko.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 757, + "endColumn": 105, + "endOffset": 858 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 863, + "endColumn": 78, + "endOffset": 937 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ko/values-ko.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 863, + "endColumn": 78, + "endOffset": 937 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 942, + "endColumn": 75, + "endOffset": 1013 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ko/values-ko.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 942, + "endColumn": 75, + "endOffset": 1013 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1018, + "endColumn": 79, + "endOffset": 1093 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ko/values-ko.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1018, + "endColumn": 79, + "endOffset": 1093 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1098, + "endColumn": 97, + "endOffset": 1191 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ko/values-ko.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1098, + "endColumn": 97, + "endOffset": 1191 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1196, + "endColumn": 94, + "endOffset": 1286 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ko/values-ko.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1196, + "endColumn": 94, + "endOffset": 1286 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1291, + "endColumn": 94, + "endOffset": 1381 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ko/values-ko.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1291, + "endColumn": 94, + "endOffset": 1381 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1386, + "endColumn": 99, + "endOffset": 1481 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ko/values-ko.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1386, + "endColumn": 99, + "endOffset": 1481 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1486, + "endColumn": 95, + "endOffset": 1577 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ko/values-ko.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1486, + "endColumn": 95, + "endOffset": 1577 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1582, + "endColumn": 98, + "endOffset": 1676 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ko/values-ko.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1582, + "endColumn": 98, + "endOffset": 1676 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1681, + "endColumn": 114, + "endOffset": 1791 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ko/values-ko.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1681, + "endColumn": 114, + "endOffset": 1791 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1796, + "endColumn": 93, + "endOffset": 1885 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ko/values-ko.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1796, + "endColumn": 93, + "endOffset": 1885 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1890, + "endColumn": 53, + "endOffset": 1939 + }, + "from": { + "file": "/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/values-ko/values-ko.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 53, + "endOffset": 104 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 1944, + "endColumn": 60, + "endOffset": 2000 + }, + "from": { + "file": "/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/values-ko/values-ko.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 109, + "endColumn": 60, + "endOffset": 165 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2005, + "endColumn": 78, + "endOffset": 2079 + }, + "from": { + "file": "/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/values-ko/values-ko.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 170, + "endColumn": 78, + "endOffset": 244 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2084, + "endColumn": 70, + "endOffset": 2150 + }, + "from": { + "file": "/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/values-ko/values-ko.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 249, + "endColumn": 70, + "endOffset": 315 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2155, + "endColumn": 59, + "endOffset": 2210 + }, + "from": { + "file": "/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/values-ko/values-ko.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 320, + "endColumn": 59, + "endOffset": 375 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2215, + "endColumn": 55, + "endOffset": 2266 + }, + "from": { + "file": "/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/values-ko/values-ko.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 380, + "endColumn": 55, + "endOffset": 431 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 2271, + "endColumn": 58, + "endOffset": 2325 + }, + "from": { + "file": "/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/values-ko/values-ko.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 436, + "endColumn": 58, + "endOffset": 490 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 2330, + "endColumn": 73, + "endOffset": 2399 + }, + "from": { + "file": "/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/values-ko/values-ko.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 495, + "endColumn": 73, + "endOffset": 564 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 2404, + "endColumn": 100, + "endOffset": 2500 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ko/values-ko.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1890, + "endColumn": 100, + "endOffset": 1986 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/multi/values-ky-rKG.json b/android/build/intermediates/blame/res/androidTest/debug/multi/values-ky-rKG.json new file mode 100644 index 000000000..802b3a0d6 --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/multi/values-ky-rKG.json @@ -0,0 +1,387 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ky-rKG/values-ky-rKG.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 103, + "endOffset": 154 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ky-rKG/values-ky-rKG.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 103, + "endOffset": 154 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 159, + "endColumn": 107, + "endOffset": 262 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ky-rKG/values-ky-rKG.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 159, + "endColumn": 107, + "endOffset": 262 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 267, + "endColumn": 122, + "endOffset": 385 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ky-rKG/values-ky-rKG.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 267, + "endColumn": 122, + "endOffset": 385 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 390, + "endColumn": 94, + "endOffset": 480 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ky-rKG/values-ky-rKG.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 390, + "endColumn": 94, + "endOffset": 480 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 485, + "endColumn": 118, + "endOffset": 599 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ky-rKG/values-ky-rKG.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 485, + "endColumn": 118, + "endOffset": 599 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 604, + "endColumn": 83, + "endOffset": 683 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ky-rKG/values-ky-rKG.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 604, + "endColumn": 83, + "endOffset": 683 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 688, + "endColumn": 106, + "endOffset": 790 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ky-rKG/values-ky-rKG.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 688, + "endColumn": 106, + "endOffset": 790 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 795, + "endColumn": 116, + "endOffset": 907 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ky-rKG/values-ky-rKG.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 795, + "endColumn": 116, + "endOffset": 907 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 912, + "endColumn": 77, + "endOffset": 985 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ky-rKG/values-ky-rKG.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 912, + "endColumn": 77, + "endOffset": 985 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 990, + "endColumn": 78, + "endOffset": 1064 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ky-rKG/values-ky-rKG.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 990, + "endColumn": 78, + "endOffset": 1064 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1069, + "endColumn": 80, + "endOffset": 1145 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ky-rKG/values-ky-rKG.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1069, + "endColumn": 80, + "endOffset": 1145 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1150, + "endColumn": 109, + "endOffset": 1255 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ky-rKG/values-ky-rKG.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1150, + "endColumn": 109, + "endOffset": 1255 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1260, + "endColumn": 106, + "endOffset": 1362 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ky-rKG/values-ky-rKG.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1260, + "endColumn": 106, + "endOffset": 1362 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1367, + "endColumn": 97, + "endOffset": 1460 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ky-rKG/values-ky-rKG.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1367, + "endColumn": 97, + "endOffset": 1460 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1465, + "endColumn": 105, + "endOffset": 1566 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ky-rKG/values-ky-rKG.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1465, + "endColumn": 105, + "endOffset": 1566 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1571, + "endColumn": 106, + "endOffset": 1673 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ky-rKG/values-ky-rKG.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1571, + "endColumn": 106, + "endOffset": 1673 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1678, + "endColumn": 100, + "endOffset": 1774 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ky-rKG/values-ky-rKG.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1678, + "endColumn": 100, + "endOffset": 1774 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1779, + "endColumn": 123, + "endOffset": 1898 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ky-rKG/values-ky-rKG.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1779, + "endColumn": 123, + "endOffset": 1898 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1903, + "endColumn": 102, + "endOffset": 2001 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ky-rKG/values-ky-rKG.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1903, + "endColumn": 102, + "endOffset": 2001 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2006, + "endColumn": 100, + "endOffset": 2102 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ky-rKG/values-ky-rKG.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2006, + "endColumn": 100, + "endOffset": 2102 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/multi/values-land.json b/android/build/intermediates/blame/res/androidTest/debug/multi/values-land.json new file mode 100644 index 000000000..0bade1e7c --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/multi/values-land.json @@ -0,0 +1,142 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-land/values-land.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 61, + "endOffset": 112 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-land/values-land.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 61, + "endOffset": 112 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 117, + "endColumn": 71, + "endOffset": 184 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-land/values-land.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 117, + "endColumn": 71, + "endOffset": 184 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 189, + "endColumn": 69, + "endOffset": 254 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-land/values-land.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 189, + "endColumn": 69, + "endOffset": 254 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 259, + "endColumn": 63, + "endOffset": 318 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-land/values-land.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 259, + "endColumn": 63, + "endOffset": 318 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 323, + "endColumn": 70, + "endOffset": 389 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-land/values-land.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 323, + "endColumn": 70, + "endOffset": 389 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 394, + "endColumn": 67, + "endOffset": 457 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-land/values-land.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 394, + "endColumn": 67, + "endOffset": 457 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 462, + "endLine": 11, + "endColumn": 12, + "endOffset": 639 + }, + "from": { + "file": "/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/values-land/values-land.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endLine": 5, + "endColumn": 12, + "endOffset": 232 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/multi/values-large-v4.json b/android/build/intermediates/blame/res/androidTest/debug/multi/values-large-v4.json new file mode 100644 index 000000000..59992c990 --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/multi/values-large-v4.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-large-v4/values-large-v4.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 61, + "endOffset": 112 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-large-v4/values-large-v4.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 61, + "endOffset": 112 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 117, + "endColumn": 71, + "endOffset": 184 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-large-v4/values-large-v4.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 117, + "endColumn": 71, + "endOffset": 184 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 189, + "endColumn": 58, + "endOffset": 243 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-large-v4/values-large-v4.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 189, + "endColumn": 58, + "endOffset": 243 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 248, + "endColumn": 70, + "endOffset": 314 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-large-v4/values-large-v4.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 248, + "endColumn": 70, + "endOffset": 314 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 319, + "endColumn": 70, + "endOffset": 385 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-large-v4/values-large-v4.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 319, + "endColumn": 70, + "endOffset": 385 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 390, + "endColumn": 69, + "endOffset": 455 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-large-v4/values-large-v4.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 390, + "endColumn": 69, + "endOffset": 455 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 460, + "endColumn": 69, + "endOffset": 525 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-large-v4/values-large-v4.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 460, + "endColumn": 69, + "endOffset": 525 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 530, + "endColumn": 67, + "endOffset": 593 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-large-v4/values-large-v4.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 530, + "endColumn": 67, + "endOffset": 593 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 598, + "endColumn": 67, + "endOffset": 661 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-large-v4/values-large-v4.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 598, + "endColumn": 67, + "endOffset": 661 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 666, + "endColumn": 63, + "endOffset": 725 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-large-v4/values-large-v4.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 666, + "endColumn": 63, + "endOffset": 725 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 730, + "endColumn": 54, + "endOffset": 780 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-large-v4/values-large-v4.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 730, + "endColumn": 54, + "endOffset": 780 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 785, + "endColumn": 103, + "endOffset": 884 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-large-v4/values-large-v4.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 785, + "endColumn": 103, + "endOffset": 884 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 889, + "endColumn": 115, + "endOffset": 1000 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-large-v4/values-large-v4.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 889, + "endColumn": 115, + "endOffset": 1000 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/multi/values-ldltr-v21.json b/android/build/intermediates/blame/res/androidTest/debug/multi/values-ldltr-v21.json new file mode 100644 index 000000000..6d43e032e --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/multi/values-ldltr-v21.json @@ -0,0 +1,26 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ldltr-v21/values-ldltr-v21.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 112, + "endOffset": 163 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ldltr-v21/values-ldltr-v21.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 112, + "endOffset": 163 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/multi/values-lo-rLA.json b/android/build/intermediates/blame/res/androidTest/debug/multi/values-lo-rLA.json new file mode 100644 index 000000000..ab3e2c1db --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/multi/values-lo-rLA.json @@ -0,0 +1,387 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-lo-rLA/values-lo-rLA.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 102, + "endOffset": 153 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lo-rLA/values-lo-rLA.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 102, + "endOffset": 153 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 158, + "endColumn": 107, + "endOffset": 261 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lo-rLA/values-lo-rLA.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 158, + "endColumn": 107, + "endOffset": 261 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 266, + "endColumn": 122, + "endOffset": 384 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lo-rLA/values-lo-rLA.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 266, + "endColumn": 122, + "endOffset": 384 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 389, + "endColumn": 96, + "endOffset": 481 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lo-rLA/values-lo-rLA.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 389, + "endColumn": 96, + "endOffset": 481 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 486, + "endColumn": 106, + "endOffset": 588 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lo-rLA/values-lo-rLA.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 486, + "endColumn": 106, + "endOffset": 588 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 593, + "endColumn": 84, + "endOffset": 673 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lo-rLA/values-lo-rLA.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 593, + "endColumn": 84, + "endOffset": 673 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 678, + "endColumn": 104, + "endOffset": 778 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lo-rLA/values-lo-rLA.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 678, + "endColumn": 104, + "endOffset": 778 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 783, + "endColumn": 111, + "endOffset": 890 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lo-rLA/values-lo-rLA.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 783, + "endColumn": 111, + "endOffset": 890 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 895, + "endColumn": 76, + "endOffset": 967 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lo-rLA/values-lo-rLA.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 895, + "endColumn": 76, + "endOffset": 967 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 972, + "endColumn": 77, + "endOffset": 1045 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lo-rLA/values-lo-rLA.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 972, + "endColumn": 77, + "endOffset": 1045 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1050, + "endColumn": 79, + "endOffset": 1125 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lo-rLA/values-lo-rLA.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1050, + "endColumn": 79, + "endOffset": 1125 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1130, + "endColumn": 106, + "endOffset": 1232 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lo-rLA/values-lo-rLA.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1130, + "endColumn": 106, + "endOffset": 1232 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1237, + "endColumn": 96, + "endOffset": 1329 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lo-rLA/values-lo-rLA.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1237, + "endColumn": 96, + "endOffset": 1329 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1334, + "endColumn": 97, + "endOffset": 1427 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lo-rLA/values-lo-rLA.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1334, + "endColumn": 97, + "endOffset": 1427 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1432, + "endColumn": 104, + "endOffset": 1532 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lo-rLA/values-lo-rLA.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1432, + "endColumn": 104, + "endOffset": 1532 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1537, + "endColumn": 102, + "endOffset": 1635 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lo-rLA/values-lo-rLA.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1537, + "endColumn": 102, + "endOffset": 1635 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1640, + "endColumn": 103, + "endOffset": 1739 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lo-rLA/values-lo-rLA.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1640, + "endColumn": 103, + "endOffset": 1739 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1744, + "endColumn": 121, + "endOffset": 1861 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lo-rLA/values-lo-rLA.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1744, + "endColumn": 121, + "endOffset": 1861 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1866, + "endColumn": 95, + "endOffset": 1957 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lo-rLA/values-lo-rLA.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1866, + "endColumn": 95, + "endOffset": 1957 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1962, + "endColumn": 100, + "endOffset": 2058 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lo-rLA/values-lo-rLA.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1962, + "endColumn": 100, + "endOffset": 2058 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/multi/values-lt.json b/android/build/intermediates/blame/res/androidTest/debug/multi/values-lt.json new file mode 100644 index 000000000..d7aca390c --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/multi/values-lt.json @@ -0,0 +1,387 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-lt/values-lt.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 115, + "endOffset": 166 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lt/values-lt.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 115, + "endOffset": 166 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 171, + "endColumn": 107, + "endOffset": 274 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lt/values-lt.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 171, + "endColumn": 107, + "endOffset": 274 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 279, + "endColumn": 122, + "endOffset": 397 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lt/values-lt.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 279, + "endColumn": 122, + "endOffset": 397 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 402, + "endColumn": 100, + "endOffset": 498 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lt/values-lt.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 402, + "endColumn": 100, + "endOffset": 498 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 503, + "endColumn": 112, + "endOffset": 611 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lt/values-lt.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 503, + "endColumn": 112, + "endOffset": 611 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 616, + "endColumn": 86, + "endOffset": 698 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lt/values-lt.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 616, + "endColumn": 86, + "endOffset": 698 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 703, + "endColumn": 108, + "endOffset": 807 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lt/values-lt.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 703, + "endColumn": 108, + "endOffset": 807 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 812, + "endColumn": 120, + "endOffset": 928 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lt/values-lt.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 812, + "endColumn": 120, + "endOffset": 928 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 933, + "endColumn": 81, + "endOffset": 1010 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lt/values-lt.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 933, + "endColumn": 81, + "endOffset": 1010 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1015, + "endColumn": 80, + "endOffset": 1091 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lt/values-lt.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1015, + "endColumn": 80, + "endOffset": 1091 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1096, + "endColumn": 84, + "endOffset": 1176 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lt/values-lt.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1096, + "endColumn": 84, + "endOffset": 1176 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1181, + "endColumn": 108, + "endOffset": 1285 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lt/values-lt.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1181, + "endColumn": 108, + "endOffset": 1285 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1290, + "endColumn": 108, + "endOffset": 1394 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lt/values-lt.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1290, + "endColumn": 108, + "endOffset": 1394 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1399, + "endColumn": 99, + "endOffset": 1494 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lt/values-lt.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1399, + "endColumn": 99, + "endOffset": 1494 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1499, + "endColumn": 109, + "endOffset": 1604 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lt/values-lt.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1499, + "endColumn": 109, + "endOffset": 1604 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1609, + "endColumn": 103, + "endOffset": 1708 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lt/values-lt.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1609, + "endColumn": 103, + "endOffset": 1708 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1713, + "endColumn": 112, + "endOffset": 1821 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lt/values-lt.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1713, + "endColumn": 112, + "endOffset": 1821 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1826, + "endColumn": 129, + "endOffset": 1951 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lt/values-lt.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1826, + "endColumn": 129, + "endOffset": 1951 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1956, + "endColumn": 100, + "endOffset": 2052 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lt/values-lt.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1956, + "endColumn": 100, + "endOffset": 2052 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2057, + "endColumn": 100, + "endOffset": 2153 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lt/values-lt.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2057, + "endColumn": 100, + "endOffset": 2153 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/multi/values-lv.json b/android/build/intermediates/blame/res/androidTest/debug/multi/values-lv.json new file mode 100644 index 000000000..deebc17eb --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/multi/values-lv.json @@ -0,0 +1,387 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-lv/values-lv.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 119, + "endOffset": 170 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lv/values-lv.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 119, + "endOffset": 170 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 175, + "endColumn": 107, + "endOffset": 278 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lv/values-lv.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 175, + "endColumn": 107, + "endOffset": 278 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 283, + "endColumn": 122, + "endOffset": 401 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lv/values-lv.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 283, + "endColumn": 122, + "endOffset": 401 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 406, + "endColumn": 107, + "endOffset": 509 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lv/values-lv.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 406, + "endColumn": 107, + "endOffset": 509 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 514, + "endColumn": 108, + "endOffset": 618 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lv/values-lv.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 514, + "endColumn": 108, + "endOffset": 618 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 623, + "endColumn": 85, + "endOffset": 704 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lv/values-lv.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 623, + "endColumn": 85, + "endOffset": 704 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 709, + "endColumn": 103, + "endOffset": 808 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lv/values-lv.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 709, + "endColumn": 103, + "endOffset": 808 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 813, + "endColumn": 121, + "endOffset": 930 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lv/values-lv.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 813, + "endColumn": 121, + "endOffset": 930 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 935, + "endColumn": 81, + "endOffset": 1012 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lv/values-lv.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 935, + "endColumn": 81, + "endOffset": 1012 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1017, + "endColumn": 81, + "endOffset": 1094 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lv/values-lv.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1017, + "endColumn": 81, + "endOffset": 1094 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1099, + "endColumn": 84, + "endOffset": 1179 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lv/values-lv.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1099, + "endColumn": 84, + "endOffset": 1179 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1184, + "endColumn": 108, + "endOffset": 1288 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lv/values-lv.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1184, + "endColumn": 108, + "endOffset": 1288 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1293, + "endColumn": 111, + "endOffset": 1400 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lv/values-lv.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1293, + "endColumn": 111, + "endOffset": 1400 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1405, + "endColumn": 98, + "endOffset": 1499 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lv/values-lv.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1405, + "endColumn": 98, + "endOffset": 1499 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1504, + "endColumn": 110, + "endOffset": 1610 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lv/values-lv.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1504, + "endColumn": 110, + "endOffset": 1610 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1615, + "endColumn": 108, + "endOffset": 1719 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lv/values-lv.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1615, + "endColumn": 108, + "endOffset": 1719 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1724, + "endColumn": 104, + "endOffset": 1824 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lv/values-lv.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1724, + "endColumn": 104, + "endOffset": 1824 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1829, + "endColumn": 118, + "endOffset": 1943 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lv/values-lv.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1829, + "endColumn": 118, + "endOffset": 1943 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1948, + "endColumn": 98, + "endOffset": 2042 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lv/values-lv.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1948, + "endColumn": 98, + "endOffset": 2042 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2047, + "endColumn": 100, + "endOffset": 2143 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lv/values-lv.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2047, + "endColumn": 100, + "endOffset": 2143 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/multi/values-mk-rMK.json b/android/build/intermediates/blame/res/androidTest/debug/multi/values-mk-rMK.json new file mode 100644 index 000000000..be51f0e3c --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/multi/values-mk-rMK.json @@ -0,0 +1,349 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-mk-rMK/values-mk-rMK.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 107, + "endOffset": 158 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mk-rMK/values-mk-rMK.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 107, + "endOffset": 158 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 163, + "endColumn": 122, + "endOffset": 281 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mk-rMK/values-mk-rMK.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 163, + "endColumn": 122, + "endOffset": 281 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 286, + "endColumn": 103, + "endOffset": 385 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mk-rMK/values-mk-rMK.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 286, + "endColumn": 103, + "endOffset": 385 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 390, + "endColumn": 107, + "endOffset": 493 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mk-rMK/values-mk-rMK.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 390, + "endColumn": 107, + "endOffset": 493 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 498, + "endColumn": 85, + "endOffset": 579 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mk-rMK/values-mk-rMK.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 498, + "endColumn": 85, + "endOffset": 579 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 584, + "endColumn": 104, + "endOffset": 684 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mk-rMK/values-mk-rMK.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 584, + "endColumn": 104, + "endOffset": 684 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 689, + "endColumn": 118, + "endOffset": 803 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mk-rMK/values-mk-rMK.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 689, + "endColumn": 118, + "endOffset": 803 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 808, + "endColumn": 82, + "endOffset": 886 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mk-rMK/values-mk-rMK.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 808, + "endColumn": 82, + "endOffset": 886 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 891, + "endColumn": 81, + "endOffset": 968 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mk-rMK/values-mk-rMK.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 891, + "endColumn": 81, + "endOffset": 968 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 973, + "endColumn": 86, + "endOffset": 1055 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mk-rMK/values-mk-rMK.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 973, + "endColumn": 86, + "endOffset": 1055 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1060, + "endColumn": 105, + "endOffset": 1161 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mk-rMK/values-mk-rMK.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1060, + "endColumn": 105, + "endOffset": 1161 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1166, + "endColumn": 106, + "endOffset": 1268 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mk-rMK/values-mk-rMK.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1166, + "endColumn": 106, + "endOffset": 1268 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1273, + "endColumn": 100, + "endOffset": 1369 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mk-rMK/values-mk-rMK.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1273, + "endColumn": 100, + "endOffset": 1369 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1374, + "endColumn": 106, + "endOffset": 1476 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mk-rMK/values-mk-rMK.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1374, + "endColumn": 106, + "endOffset": 1476 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1481, + "endColumn": 110, + "endOffset": 1587 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mk-rMK/values-mk-rMK.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1481, + "endColumn": 110, + "endOffset": 1587 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1592, + "endColumn": 103, + "endOffset": 1691 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mk-rMK/values-mk-rMK.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1592, + "endColumn": 103, + "endOffset": 1691 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1696, + "endColumn": 97, + "endOffset": 1789 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mk-rMK/values-mk-rMK.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1696, + "endColumn": 97, + "endOffset": 1789 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1794, + "endColumn": 100, + "endOffset": 1890 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mk-rMK/values-mk-rMK.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1794, + "endColumn": 100, + "endOffset": 1890 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/multi/values-ml-rIN.json b/android/build/intermediates/blame/res/androidTest/debug/multi/values-ml-rIN.json new file mode 100644 index 000000000..f74043c53 --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/multi/values-ml-rIN.json @@ -0,0 +1,387 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ml-rIN/values-ml-rIN.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 118, + "endOffset": 169 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ml-rIN/values-ml-rIN.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 118, + "endOffset": 169 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 174, + "endColumn": 107, + "endOffset": 277 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ml-rIN/values-ml-rIN.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 174, + "endColumn": 107, + "endOffset": 277 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 282, + "endColumn": 122, + "endOffset": 400 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ml-rIN/values-ml-rIN.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 282, + "endColumn": 122, + "endOffset": 400 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 405, + "endColumn": 117, + "endOffset": 518 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ml-rIN/values-ml-rIN.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 405, + "endColumn": 117, + "endOffset": 518 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 523, + "endColumn": 115, + "endOffset": 634 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ml-rIN/values-ml-rIN.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 523, + "endColumn": 115, + "endOffset": 634 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 639, + "endColumn": 92, + "endOffset": 727 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ml-rIN/values-ml-rIN.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 639, + "endColumn": 92, + "endOffset": 727 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 732, + "endColumn": 104, + "endOffset": 832 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ml-rIN/values-ml-rIN.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 732, + "endColumn": 104, + "endOffset": 832 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 837, + "endColumn": 131, + "endOffset": 964 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ml-rIN/values-ml-rIN.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 837, + "endColumn": 131, + "endOffset": 964 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 969, + "endColumn": 76, + "endOffset": 1041 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ml-rIN/values-ml-rIN.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 969, + "endColumn": 76, + "endOffset": 1041 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1046, + "endColumn": 75, + "endOffset": 1117 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ml-rIN/values-ml-rIN.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1046, + "endColumn": 75, + "endOffset": 1117 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1122, + "endColumn": 81, + "endOffset": 1199 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ml-rIN/values-ml-rIN.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1122, + "endColumn": 81, + "endOffset": 1199 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1204, + "endColumn": 110, + "endOffset": 1310 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ml-rIN/values-ml-rIN.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1204, + "endColumn": 110, + "endOffset": 1310 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1315, + "endColumn": 105, + "endOffset": 1416 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ml-rIN/values-ml-rIN.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1315, + "endColumn": 105, + "endOffset": 1416 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1421, + "endColumn": 97, + "endOffset": 1514 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ml-rIN/values-ml-rIN.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1421, + "endColumn": 97, + "endOffset": 1514 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1519, + "endColumn": 113, + "endOffset": 1628 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ml-rIN/values-ml-rIN.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1519, + "endColumn": 113, + "endOffset": 1628 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1633, + "endColumn": 100, + "endOffset": 1729 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ml-rIN/values-ml-rIN.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1633, + "endColumn": 100, + "endOffset": 1729 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1734, + "endColumn": 110, + "endOffset": 1840 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ml-rIN/values-ml-rIN.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1734, + "endColumn": 110, + "endOffset": 1840 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1845, + "endColumn": 127, + "endOffset": 1968 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ml-rIN/values-ml-rIN.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1845, + "endColumn": 127, + "endOffset": 1968 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1973, + "endColumn": 100, + "endOffset": 2069 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ml-rIN/values-ml-rIN.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1973, + "endColumn": 100, + "endOffset": 2069 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2074, + "endColumn": 100, + "endOffset": 2170 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ml-rIN/values-ml-rIN.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2074, + "endColumn": 100, + "endOffset": 2170 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/multi/values-mn-rMN.json b/android/build/intermediates/blame/res/androidTest/debug/multi/values-mn-rMN.json new file mode 100644 index 000000000..95708a3aa --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/multi/values-mn-rMN.json @@ -0,0 +1,387 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-mn-rMN/values-mn-rMN.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 112, + "endOffset": 163 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mn-rMN/values-mn-rMN.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 112, + "endOffset": 163 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 168, + "endColumn": 107, + "endOffset": 271 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mn-rMN/values-mn-rMN.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 168, + "endColumn": 107, + "endOffset": 271 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 276, + "endColumn": 122, + "endOffset": 394 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mn-rMN/values-mn-rMN.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 276, + "endColumn": 122, + "endOffset": 394 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 399, + "endColumn": 99, + "endOffset": 494 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mn-rMN/values-mn-rMN.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 399, + "endColumn": 99, + "endOffset": 494 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 499, + "endColumn": 112, + "endOffset": 607 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mn-rMN/values-mn-rMN.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 499, + "endColumn": 112, + "endOffset": 607 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 612, + "endColumn": 86, + "endOffset": 694 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mn-rMN/values-mn-rMN.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 612, + "endColumn": 86, + "endOffset": 694 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 699, + "endColumn": 105, + "endOffset": 800 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mn-rMN/values-mn-rMN.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 699, + "endColumn": 105, + "endOffset": 800 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 805, + "endColumn": 111, + "endOffset": 912 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mn-rMN/values-mn-rMN.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 805, + "endColumn": 111, + "endOffset": 912 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 917, + "endColumn": 81, + "endOffset": 994 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mn-rMN/values-mn-rMN.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 917, + "endColumn": 81, + "endOffset": 994 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 999, + "endColumn": 81, + "endOffset": 1076 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mn-rMN/values-mn-rMN.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 999, + "endColumn": 81, + "endOffset": 1076 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1081, + "endColumn": 81, + "endOffset": 1158 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mn-rMN/values-mn-rMN.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1081, + "endColumn": 81, + "endOffset": 1158 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1163, + "endColumn": 108, + "endOffset": 1267 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mn-rMN/values-mn-rMN.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1163, + "endColumn": 108, + "endOffset": 1267 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1272, + "endColumn": 103, + "endOffset": 1371 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mn-rMN/values-mn-rMN.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1272, + "endColumn": 103, + "endOffset": 1371 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1376, + "endColumn": 96, + "endOffset": 1468 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mn-rMN/values-mn-rMN.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1376, + "endColumn": 96, + "endOffset": 1468 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1473, + "endColumn": 107, + "endOffset": 1576 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mn-rMN/values-mn-rMN.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1473, + "endColumn": 107, + "endOffset": 1576 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1581, + "endColumn": 100, + "endOffset": 1677 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mn-rMN/values-mn-rMN.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1581, + "endColumn": 100, + "endOffset": 1677 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1682, + "endColumn": 102, + "endOffset": 1780 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mn-rMN/values-mn-rMN.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1682, + "endColumn": 102, + "endOffset": 1780 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1785, + "endColumn": 121, + "endOffset": 1902 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mn-rMN/values-mn-rMN.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1785, + "endColumn": 121, + "endOffset": 1902 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1907, + "endColumn": 96, + "endOffset": 1999 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mn-rMN/values-mn-rMN.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1907, + "endColumn": 96, + "endOffset": 1999 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2004, + "endColumn": 100, + "endOffset": 2100 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mn-rMN/values-mn-rMN.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2004, + "endColumn": 100, + "endOffset": 2100 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/multi/values-mr-rIN.json b/android/build/intermediates/blame/res/androidTest/debug/multi/values-mr-rIN.json new file mode 100644 index 000000000..5cec138e9 --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/multi/values-mr-rIN.json @@ -0,0 +1,387 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-mr-rIN/values-mr-rIN.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 117, + "endOffset": 168 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mr-rIN/values-mr-rIN.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 117, + "endOffset": 168 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 173, + "endColumn": 107, + "endOffset": 276 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mr-rIN/values-mr-rIN.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 173, + "endColumn": 107, + "endOffset": 276 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 281, + "endColumn": 122, + "endOffset": 399 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mr-rIN/values-mr-rIN.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 281, + "endColumn": 122, + "endOffset": 399 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 404, + "endColumn": 105, + "endOffset": 505 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mr-rIN/values-mr-rIN.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 404, + "endColumn": 105, + "endOffset": 505 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 510, + "endColumn": 106, + "endOffset": 612 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mr-rIN/values-mr-rIN.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 510, + "endColumn": 106, + "endOffset": 612 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 617, + "endColumn": 89, + "endOffset": 702 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mr-rIN/values-mr-rIN.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 617, + "endColumn": 89, + "endOffset": 702 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 707, + "endColumn": 100, + "endOffset": 803 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mr-rIN/values-mr-rIN.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 707, + "endColumn": 100, + "endOffset": 803 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 808, + "endColumn": 114, + "endOffset": 918 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mr-rIN/values-mr-rIN.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 808, + "endColumn": 114, + "endOffset": 918 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 923, + "endColumn": 76, + "endOffset": 995 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mr-rIN/values-mr-rIN.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 923, + "endColumn": 76, + "endOffset": 995 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1000, + "endColumn": 77, + "endOffset": 1073 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mr-rIN/values-mr-rIN.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1000, + "endColumn": 77, + "endOffset": 1073 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1078, + "endColumn": 79, + "endOffset": 1153 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mr-rIN/values-mr-rIN.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1078, + "endColumn": 79, + "endOffset": 1153 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1158, + "endColumn": 111, + "endOffset": 1265 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mr-rIN/values-mr-rIN.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1158, + "endColumn": 111, + "endOffset": 1265 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1270, + "endColumn": 101, + "endOffset": 1367 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mr-rIN/values-mr-rIN.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1270, + "endColumn": 101, + "endOffset": 1367 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1372, + "endColumn": 95, + "endOffset": 1463 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mr-rIN/values-mr-rIN.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1372, + "endColumn": 95, + "endOffset": 1463 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1468, + "endColumn": 108, + "endOffset": 1572 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mr-rIN/values-mr-rIN.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1468, + "endColumn": 108, + "endOffset": 1572 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1577, + "endColumn": 100, + "endOffset": 1673 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mr-rIN/values-mr-rIN.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1577, + "endColumn": 100, + "endOffset": 1673 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1678, + "endColumn": 114, + "endOffset": 1788 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mr-rIN/values-mr-rIN.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1678, + "endColumn": 114, + "endOffset": 1788 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1793, + "endColumn": 122, + "endOffset": 1911 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mr-rIN/values-mr-rIN.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1793, + "endColumn": 122, + "endOffset": 1911 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1916, + "endColumn": 104, + "endOffset": 2016 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mr-rIN/values-mr-rIN.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1916, + "endColumn": 104, + "endOffset": 2016 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2021, + "endColumn": 100, + "endOffset": 2117 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mr-rIN/values-mr-rIN.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2021, + "endColumn": 100, + "endOffset": 2117 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/multi/values-ms-rMY.json b/android/build/intermediates/blame/res/androidTest/debug/multi/values-ms-rMY.json new file mode 100644 index 000000000..1bad38665 --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/multi/values-ms-rMY.json @@ -0,0 +1,387 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ms-rMY/values-ms-rMY.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 110, + "endOffset": 161 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ms-rMY/values-ms-rMY.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 110, + "endOffset": 161 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 166, + "endColumn": 107, + "endOffset": 269 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ms-rMY/values-ms-rMY.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 166, + "endColumn": 107, + "endOffset": 269 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 274, + "endColumn": 122, + "endOffset": 392 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ms-rMY/values-ms-rMY.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 274, + "endColumn": 122, + "endOffset": 392 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 397, + "endColumn": 104, + "endOffset": 497 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ms-rMY/values-ms-rMY.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 397, + "endColumn": 104, + "endOffset": 497 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 502, + "endColumn": 107, + "endOffset": 605 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ms-rMY/values-ms-rMY.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 502, + "endColumn": 107, + "endOffset": 605 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 610, + "endColumn": 86, + "endOffset": 692 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ms-rMY/values-ms-rMY.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 610, + "endColumn": 86, + "endOffset": 692 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 697, + "endColumn": 103, + "endOffset": 796 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ms-rMY/values-ms-rMY.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 697, + "endColumn": 103, + "endOffset": 796 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 801, + "endColumn": 110, + "endOffset": 907 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ms-rMY/values-ms-rMY.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 801, + "endColumn": 110, + "endOffset": 907 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 912, + "endColumn": 77, + "endOffset": 985 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ms-rMY/values-ms-rMY.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 912, + "endColumn": 77, + "endOffset": 985 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 990, + "endColumn": 78, + "endOffset": 1064 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ms-rMY/values-ms-rMY.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 990, + "endColumn": 78, + "endOffset": 1064 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1069, + "endColumn": 79, + "endOffset": 1144 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ms-rMY/values-ms-rMY.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1069, + "endColumn": 79, + "endOffset": 1144 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1149, + "endColumn": 111, + "endOffset": 1256 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ms-rMY/values-ms-rMY.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1149, + "endColumn": 111, + "endOffset": 1256 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1261, + "endColumn": 108, + "endOffset": 1365 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ms-rMY/values-ms-rMY.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1261, + "endColumn": 108, + "endOffset": 1365 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1370, + "endColumn": 96, + "endOffset": 1462 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ms-rMY/values-ms-rMY.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1370, + "endColumn": 96, + "endOffset": 1462 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1467, + "endColumn": 108, + "endOffset": 1571 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ms-rMY/values-ms-rMY.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1467, + "endColumn": 108, + "endOffset": 1571 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1576, + "endColumn": 102, + "endOffset": 1674 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ms-rMY/values-ms-rMY.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1576, + "endColumn": 102, + "endOffset": 1674 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1679, + "endColumn": 106, + "endOffset": 1781 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ms-rMY/values-ms-rMY.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1679, + "endColumn": 106, + "endOffset": 1781 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1786, + "endColumn": 121, + "endOffset": 1903 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ms-rMY/values-ms-rMY.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1786, + "endColumn": 121, + "endOffset": 1903 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1908, + "endColumn": 100, + "endOffset": 2004 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ms-rMY/values-ms-rMY.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1908, + "endColumn": 100, + "endOffset": 2004 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2009, + "endColumn": 100, + "endOffset": 2105 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ms-rMY/values-ms-rMY.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2009, + "endColumn": 100, + "endOffset": 2105 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/multi/values-my-rMM.json b/android/build/intermediates/blame/res/androidTest/debug/multi/values-my-rMM.json new file mode 100644 index 000000000..606b335ba --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/multi/values-my-rMM.json @@ -0,0 +1,387 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-my-rMM/values-my-rMM.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 108, + "endOffset": 159 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-my-rMM/values-my-rMM.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 108, + "endOffset": 159 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 164, + "endColumn": 107, + "endOffset": 267 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-my-rMM/values-my-rMM.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 164, + "endColumn": 107, + "endOffset": 267 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 272, + "endColumn": 124, + "endOffset": 392 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-my-rMM/values-my-rMM.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 272, + "endColumn": 124, + "endOffset": 392 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 397, + "endColumn": 104, + "endOffset": 497 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-my-rMM/values-my-rMM.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 397, + "endColumn": 104, + "endOffset": 497 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 502, + "endColumn": 116, + "endOffset": 614 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-my-rMM/values-my-rMM.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 502, + "endColumn": 116, + "endOffset": 614 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 619, + "endColumn": 92, + "endOffset": 707 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-my-rMM/values-my-rMM.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 619, + "endColumn": 92, + "endOffset": 707 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 712, + "endColumn": 111, + "endOffset": 819 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-my-rMM/values-my-rMM.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 712, + "endColumn": 111, + "endOffset": 819 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 824, + "endColumn": 135, + "endOffset": 955 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-my-rMM/values-my-rMM.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 824, + "endColumn": 135, + "endOffset": 955 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 960, + "endColumn": 77, + "endOffset": 1033 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-my-rMM/values-my-rMM.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 960, + "endColumn": 77, + "endOffset": 1033 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1038, + "endColumn": 78, + "endOffset": 1112 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-my-rMM/values-my-rMM.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1038, + "endColumn": 78, + "endOffset": 1112 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1117, + "endColumn": 85, + "endOffset": 1198 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-my-rMM/values-my-rMM.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1117, + "endColumn": 85, + "endOffset": 1198 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1203, + "endColumn": 124, + "endOffset": 1323 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-my-rMM/values-my-rMM.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1203, + "endColumn": 124, + "endOffset": 1323 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1328, + "endColumn": 111, + "endOffset": 1435 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-my-rMM/values-my-rMM.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1328, + "endColumn": 111, + "endOffset": 1435 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1440, + "endColumn": 101, + "endOffset": 1537 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-my-rMM/values-my-rMM.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1440, + "endColumn": 101, + "endOffset": 1537 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1542, + "endColumn": 125, + "endOffset": 1663 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-my-rMM/values-my-rMM.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1542, + "endColumn": 125, + "endOffset": 1663 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1668, + "endColumn": 110, + "endOffset": 1774 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-my-rMM/values-my-rMM.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1668, + "endColumn": 110, + "endOffset": 1774 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1779, + "endColumn": 109, + "endOffset": 1884 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-my-rMM/values-my-rMM.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1779, + "endColumn": 109, + "endOffset": 1884 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1889, + "endColumn": 122, + "endOffset": 2007 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-my-rMM/values-my-rMM.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1889, + "endColumn": 122, + "endOffset": 2007 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 2012, + "endColumn": 99, + "endOffset": 2107 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-my-rMM/values-my-rMM.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 2012, + "endColumn": 99, + "endOffset": 2107 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2112, + "endColumn": 100, + "endOffset": 2208 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-my-rMM/values-my-rMM.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2112, + "endColumn": 100, + "endOffset": 2208 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/multi/values-nb.json b/android/build/intermediates/blame/res/androidTest/debug/multi/values-nb.json new file mode 100644 index 000000000..fe68f5862 --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/multi/values-nb.json @@ -0,0 +1,539 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-nb/values-nb.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 107, + "endOffset": 158 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-nb/values-nb.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 107, + "endOffset": 158 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 163, + "endColumn": 108, + "endOffset": 267 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-nb/values-nb.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 163, + "endColumn": 108, + "endOffset": 267 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 272, + "endColumn": 124, + "endOffset": 392 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-nb/values-nb.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 272, + "endColumn": 124, + "endOffset": 392 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 397, + "endColumn": 94, + "endOffset": 487 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-nb/values-nb.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 397, + "endColumn": 94, + "endOffset": 487 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 492, + "endColumn": 113, + "endOffset": 601 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-nb/values-nb.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 492, + "endColumn": 113, + "endOffset": 601 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 606, + "endColumn": 85, + "endOffset": 687 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-nb/values-nb.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 606, + "endColumn": 85, + "endOffset": 687 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 692, + "endColumn": 99, + "endOffset": 787 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-nb/values-nb.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 692, + "endColumn": 99, + "endOffset": 787 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 792, + "endColumn": 112, + "endOffset": 900 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-nb/values-nb.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 792, + "endColumn": 112, + "endOffset": 900 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 905, + "endColumn": 75, + "endOffset": 976 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-nb/values-nb.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 905, + "endColumn": 75, + "endOffset": 976 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 981, + "endColumn": 75, + "endOffset": 1052 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-nb/values-nb.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 981, + "endColumn": 75, + "endOffset": 1052 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1057, + "endColumn": 79, + "endOffset": 1132 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-nb/values-nb.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1057, + "endColumn": 79, + "endOffset": 1132 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1137, + "endColumn": 102, + "endOffset": 1235 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-nb/values-nb.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1137, + "endColumn": 102, + "endOffset": 1235 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1240, + "endColumn": 98, + "endOffset": 1334 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-nb/values-nb.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1240, + "endColumn": 98, + "endOffset": 1334 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1339, + "endColumn": 95, + "endOffset": 1430 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-nb/values-nb.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1339, + "endColumn": 95, + "endOffset": 1430 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1435, + "endColumn": 103, + "endOffset": 1534 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-nb/values-nb.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1435, + "endColumn": 103, + "endOffset": 1534 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1539, + "endColumn": 97, + "endOffset": 1632 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-nb/values-nb.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1539, + "endColumn": 97, + "endOffset": 1632 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1637, + "endColumn": 100, + "endOffset": 1733 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-nb/values-nb.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1637, + "endColumn": 100, + "endOffset": 1733 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1738, + "endColumn": 115, + "endOffset": 1849 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-nb/values-nb.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1738, + "endColumn": 115, + "endOffset": 1849 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1854, + "endColumn": 96, + "endOffset": 1946 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-nb/values-nb.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1854, + "endColumn": 96, + "endOffset": 1946 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1951, + "endColumn": 53, + "endOffset": 2000 + }, + "from": { + "file": "/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/values-nb/values-nb.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 53, + "endOffset": 104 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2005, + "endColumn": 71, + "endOffset": 2072 + }, + "from": { + "file": "/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/values-nb/values-nb.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 109, + "endColumn": 71, + "endOffset": 176 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2077, + "endColumn": 78, + "endOffset": 2151 + }, + "from": { + "file": "/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/values-nb/values-nb.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 181, + "endColumn": 78, + "endOffset": 255 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2156, + "endColumn": 70, + "endOffset": 2222 + }, + "from": { + "file": "/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/values-nb/values-nb.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 260, + "endColumn": 70, + "endOffset": 326 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2227, + "endColumn": 63, + "endOffset": 2286 + }, + "from": { + "file": "/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/values-nb/values-nb.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 331, + "endColumn": 63, + "endOffset": 390 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2291, + "endColumn": 55, + "endOffset": 2342 + }, + "from": { + "file": "/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/values-nb/values-nb.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 395, + "endColumn": 55, + "endOffset": 446 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 2347, + "endColumn": 58, + "endOffset": 2401 + }, + "from": { + "file": "/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/values-nb/values-nb.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 451, + "endColumn": 58, + "endOffset": 505 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 2406, + "endColumn": 73, + "endOffset": 2475 + }, + "from": { + "file": "/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/values-nb/values-nb.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 510, + "endColumn": 73, + "endOffset": 579 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 2480, + "endColumn": 100, + "endOffset": 2576 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-nb/values-nb.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1951, + "endColumn": 100, + "endOffset": 2047 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/multi/values-ne-rNP.json b/android/build/intermediates/blame/res/androidTest/debug/multi/values-ne-rNP.json new file mode 100644 index 000000000..741130c6c --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/multi/values-ne-rNP.json @@ -0,0 +1,387 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ne-rNP/values-ne-rNP.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 104, + "endOffset": 155 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ne-rNP/values-ne-rNP.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 104, + "endOffset": 155 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 160, + "endColumn": 107, + "endOffset": 263 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ne-rNP/values-ne-rNP.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 160, + "endColumn": 107, + "endOffset": 263 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 268, + "endColumn": 122, + "endOffset": 386 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ne-rNP/values-ne-rNP.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 268, + "endColumn": 122, + "endOffset": 386 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 391, + "endColumn": 103, + "endOffset": 490 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ne-rNP/values-ne-rNP.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 391, + "endColumn": 103, + "endOffset": 490 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 495, + "endColumn": 107, + "endOffset": 598 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ne-rNP/values-ne-rNP.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 495, + "endColumn": 107, + "endOffset": 598 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 603, + "endColumn": 90, + "endOffset": 689 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ne-rNP/values-ne-rNP.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 603, + "endColumn": 90, + "endOffset": 689 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 694, + "endColumn": 106, + "endOffset": 796 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ne-rNP/values-ne-rNP.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 694, + "endColumn": 106, + "endOffset": 796 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 801, + "endColumn": 126, + "endOffset": 923 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ne-rNP/values-ne-rNP.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 801, + "endColumn": 126, + "endOffset": 923 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 928, + "endColumn": 93, + "endOffset": 1017 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ne-rNP/values-ne-rNP.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 928, + "endColumn": 93, + "endOffset": 1017 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1022, + "endColumn": 89, + "endOffset": 1107 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ne-rNP/values-ne-rNP.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1022, + "endColumn": 89, + "endOffset": 1107 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1112, + "endColumn": 87, + "endOffset": 1195 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ne-rNP/values-ne-rNP.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1112, + "endColumn": 87, + "endOffset": 1195 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1200, + "endColumn": 109, + "endOffset": 1305 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ne-rNP/values-ne-rNP.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1200, + "endColumn": 109, + "endOffset": 1305 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1310, + "endColumn": 115, + "endOffset": 1421 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ne-rNP/values-ne-rNP.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1310, + "endColumn": 115, + "endOffset": 1421 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1426, + "endColumn": 102, + "endOffset": 1524 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ne-rNP/values-ne-rNP.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1426, + "endColumn": 102, + "endOffset": 1524 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1529, + "endColumn": 114, + "endOffset": 1639 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ne-rNP/values-ne-rNP.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1529, + "endColumn": 114, + "endOffset": 1639 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1644, + "endColumn": 101, + "endOffset": 1741 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ne-rNP/values-ne-rNP.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1644, + "endColumn": 101, + "endOffset": 1741 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1746, + "endColumn": 114, + "endOffset": 1856 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ne-rNP/values-ne-rNP.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1746, + "endColumn": 114, + "endOffset": 1856 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1861, + "endColumn": 130, + "endOffset": 1987 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ne-rNP/values-ne-rNP.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1861, + "endColumn": 130, + "endOffset": 1987 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1992, + "endColumn": 111, + "endOffset": 2099 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ne-rNP/values-ne-rNP.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1992, + "endColumn": 111, + "endOffset": 2099 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2104, + "endColumn": 100, + "endOffset": 2200 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ne-rNP/values-ne-rNP.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2104, + "endColumn": 100, + "endOffset": 2200 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/multi/values-night-v8.json b/android/build/intermediates/blame/res/androidTest/debug/multi/values-night-v8.json new file mode 100644 index 000000000..7bc4ce047 --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/multi/values-night-v8.json @@ -0,0 +1,140 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-night-v8/values-night-v8.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 69, + "endOffset": 120 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-night-v8/values-night-v8.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 69, + "endOffset": 120 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 125, + "endColumn": 83, + "endOffset": 204 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-night-v8/values-night-v8.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 125, + "endColumn": 83, + "endOffset": 204 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 209, + "endColumn": 83, + "endOffset": 288 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-night-v8/values-night-v8.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 209, + "endColumn": 83, + "endOffset": 288 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 293, + "endColumn": 95, + "endOffset": 384 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-night-v8/values-night-v8.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 293, + "endColumn": 95, + "endOffset": 384 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 389, + "endColumn": 101, + "endOffset": 486 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-night-v8/values-night-v8.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 389, + "endColumn": 101, + "endOffset": 486 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 491, + "endColumn": 101, + "endOffset": 588 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-night-v8/values-night-v8.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 491, + "endColumn": 101, + "endOffset": 588 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 593, + "endColumn": 93, + "endOffset": 682 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-night-v8/values-night-v8.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 593, + "endColumn": 93, + "endOffset": 682 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/multi/values-nl.json b/android/build/intermediates/blame/res/androidTest/debug/multi/values-nl.json new file mode 100644 index 000000000..08d1d3f90 --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/multi/values-nl.json @@ -0,0 +1,539 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-nl/values-nl.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 117, + "endOffset": 168 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-nl/values-nl.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 117, + "endOffset": 168 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 173, + "endColumn": 107, + "endOffset": 276 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-nl/values-nl.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 173, + "endColumn": 107, + "endOffset": 276 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 281, + "endColumn": 122, + "endOffset": 399 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-nl/values-nl.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 281, + "endColumn": 122, + "endOffset": 399 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 404, + "endColumn": 104, + "endOffset": 504 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-nl/values-nl.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 404, + "endColumn": 104, + "endOffset": 504 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 509, + "endColumn": 106, + "endOffset": 611 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-nl/values-nl.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 509, + "endColumn": 106, + "endOffset": 611 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 616, + "endColumn": 85, + "endOffset": 697 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-nl/values-nl.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 616, + "endColumn": 85, + "endOffset": 697 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 702, + "endColumn": 107, + "endOffset": 805 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-nl/values-nl.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 702, + "endColumn": 107, + "endOffset": 805 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 810, + "endColumn": 119, + "endOffset": 925 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-nl/values-nl.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 810, + "endColumn": 119, + "endOffset": 925 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 930, + "endColumn": 76, + "endOffset": 1002 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-nl/values-nl.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 930, + "endColumn": 76, + "endOffset": 1002 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1007, + "endColumn": 76, + "endOffset": 1079 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-nl/values-nl.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1007, + "endColumn": 76, + "endOffset": 1079 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1084, + "endColumn": 81, + "endOffset": 1161 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-nl/values-nl.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1084, + "endColumn": 81, + "endOffset": 1161 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1166, + "endColumn": 110, + "endOffset": 1272 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-nl/values-nl.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1166, + "endColumn": 110, + "endOffset": 1272 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1277, + "endColumn": 103, + "endOffset": 1376 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-nl/values-nl.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1277, + "endColumn": 103, + "endOffset": 1376 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1381, + "endColumn": 98, + "endOffset": 1475 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-nl/values-nl.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1381, + "endColumn": 98, + "endOffset": 1475 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1480, + "endColumn": 114, + "endOffset": 1590 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-nl/values-nl.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1480, + "endColumn": 114, + "endOffset": 1590 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1595, + "endColumn": 112, + "endOffset": 1703 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-nl/values-nl.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1595, + "endColumn": 112, + "endOffset": 1703 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1708, + "endColumn": 102, + "endOffset": 1806 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-nl/values-nl.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1708, + "endColumn": 102, + "endOffset": 1806 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1811, + "endColumn": 117, + "endOffset": 1924 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-nl/values-nl.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1811, + "endColumn": 117, + "endOffset": 1924 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1929, + "endColumn": 102, + "endOffset": 2027 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-nl/values-nl.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1929, + "endColumn": 102, + "endOffset": 2027 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2032, + "endColumn": 53, + "endOffset": 2081 + }, + "from": { + "file": "/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/values-nl/values-nl.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 53, + "endOffset": 104 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2086, + "endColumn": 74, + "endOffset": 2156 + }, + "from": { + "file": "/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/values-nl/values-nl.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 109, + "endColumn": 74, + "endOffset": 179 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2161, + "endColumn": 78, + "endOffset": 2235 + }, + "from": { + "file": "/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/values-nl/values-nl.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 184, + "endColumn": 78, + "endOffset": 258 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2240, + "endColumn": 70, + "endOffset": 2306 + }, + "from": { + "file": "/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/values-nl/values-nl.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 263, + "endColumn": 70, + "endOffset": 329 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2311, + "endColumn": 64, + "endOffset": 2371 + }, + "from": { + "file": "/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/values-nl/values-nl.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 334, + "endColumn": 64, + "endOffset": 394 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2376, + "endColumn": 55, + "endOffset": 2427 + }, + "from": { + "file": "/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/values-nl/values-nl.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 399, + "endColumn": 55, + "endOffset": 450 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 2432, + "endColumn": 58, + "endOffset": 2486 + }, + "from": { + "file": "/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/values-nl/values-nl.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 455, + "endColumn": 58, + "endOffset": 509 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 2491, + "endColumn": 73, + "endOffset": 2560 + }, + "from": { + "file": "/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/values-nl/values-nl.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 514, + "endColumn": 73, + "endOffset": 583 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 2565, + "endColumn": 100, + "endOffset": 2661 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-nl/values-nl.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2032, + "endColumn": 100, + "endOffset": 2128 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/multi/values-pa-rIN.json b/android/build/intermediates/blame/res/androidTest/debug/multi/values-pa-rIN.json new file mode 100644 index 000000000..811b501fe --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/multi/values-pa-rIN.json @@ -0,0 +1,387 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-pa-rIN/values-pa-rIN.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 105, + "endOffset": 156 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pa-rIN/values-pa-rIN.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 105, + "endOffset": 156 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 161, + "endColumn": 107, + "endOffset": 264 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pa-rIN/values-pa-rIN.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 161, + "endColumn": 107, + "endOffset": 264 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 269, + "endColumn": 122, + "endOffset": 387 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pa-rIN/values-pa-rIN.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 269, + "endColumn": 122, + "endOffset": 387 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 392, + "endColumn": 104, + "endOffset": 492 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pa-rIN/values-pa-rIN.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 392, + "endColumn": 104, + "endOffset": 492 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 497, + "endColumn": 104, + "endOffset": 597 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pa-rIN/values-pa-rIN.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 497, + "endColumn": 104, + "endOffset": 597 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 602, + "endColumn": 85, + "endOffset": 683 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pa-rIN/values-pa-rIN.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 602, + "endColumn": 85, + "endOffset": 683 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 688, + "endColumn": 99, + "endOffset": 783 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pa-rIN/values-pa-rIN.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 688, + "endColumn": 99, + "endOffset": 783 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 788, + "endColumn": 112, + "endOffset": 896 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pa-rIN/values-pa-rIN.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 788, + "endColumn": 112, + "endOffset": 896 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 901, + "endColumn": 76, + "endOffset": 973 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pa-rIN/values-pa-rIN.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 901, + "endColumn": 76, + "endOffset": 973 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 978, + "endColumn": 75, + "endOffset": 1049 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pa-rIN/values-pa-rIN.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 978, + "endColumn": 75, + "endOffset": 1049 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1054, + "endColumn": 78, + "endOffset": 1128 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pa-rIN/values-pa-rIN.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1054, + "endColumn": 78, + "endOffset": 1128 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1133, + "endColumn": 100, + "endOffset": 1229 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pa-rIN/values-pa-rIN.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1133, + "endColumn": 100, + "endOffset": 1229 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1234, + "endColumn": 100, + "endOffset": 1330 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pa-rIN/values-pa-rIN.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1234, + "endColumn": 100, + "endOffset": 1330 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1335, + "endColumn": 96, + "endOffset": 1427 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pa-rIN/values-pa-rIN.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1335, + "endColumn": 96, + "endOffset": 1427 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1432, + "endColumn": 108, + "endOffset": 1536 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pa-rIN/values-pa-rIN.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1432, + "endColumn": 108, + "endOffset": 1536 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1541, + "endColumn": 98, + "endOffset": 1635 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pa-rIN/values-pa-rIN.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1541, + "endColumn": 98, + "endOffset": 1635 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1640, + "endColumn": 109, + "endOffset": 1745 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pa-rIN/values-pa-rIN.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1640, + "endColumn": 109, + "endOffset": 1745 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1750, + "endColumn": 121, + "endOffset": 1867 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pa-rIN/values-pa-rIN.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1750, + "endColumn": 121, + "endOffset": 1867 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1872, + "endColumn": 99, + "endOffset": 1967 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pa-rIN/values-pa-rIN.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1872, + "endColumn": 99, + "endOffset": 1967 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1972, + "endColumn": 100, + "endOffset": 2068 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pa-rIN/values-pa-rIN.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1972, + "endColumn": 100, + "endOffset": 2068 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/multi/values-pl.json b/android/build/intermediates/blame/res/androidTest/debug/multi/values-pl.json new file mode 100644 index 000000000..146e5bb3d --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/multi/values-pl.json @@ -0,0 +1,539 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-pl/values-pl.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 115, + "endOffset": 166 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pl/values-pl.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 115, + "endOffset": 166 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 171, + "endColumn": 107, + "endOffset": 274 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pl/values-pl.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 171, + "endColumn": 107, + "endOffset": 274 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 279, + "endColumn": 122, + "endOffset": 397 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pl/values-pl.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 279, + "endColumn": 122, + "endOffset": 397 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 402, + "endColumn": 101, + "endOffset": 499 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pl/values-pl.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 402, + "endColumn": 101, + "endOffset": 499 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 504, + "endColumn": 107, + "endOffset": 607 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pl/values-pl.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 504, + "endColumn": 107, + "endOffset": 607 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 612, + "endColumn": 85, + "endOffset": 693 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pl/values-pl.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 612, + "endColumn": 85, + "endOffset": 693 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 698, + "endColumn": 108, + "endOffset": 802 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pl/values-pl.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 698, + "endColumn": 108, + "endOffset": 802 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 807, + "endColumn": 118, + "endOffset": 921 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pl/values-pl.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 807, + "endColumn": 118, + "endOffset": 921 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 926, + "endColumn": 77, + "endOffset": 999 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pl/values-pl.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 926, + "endColumn": 77, + "endOffset": 999 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1004, + "endColumn": 76, + "endOffset": 1076 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pl/values-pl.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1004, + "endColumn": 76, + "endOffset": 1076 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1081, + "endColumn": 81, + "endOffset": 1158 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pl/values-pl.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1081, + "endColumn": 81, + "endOffset": 1158 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1163, + "endColumn": 108, + "endOffset": 1267 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pl/values-pl.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1163, + "endColumn": 108, + "endOffset": 1267 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1272, + "endColumn": 108, + "endOffset": 1376 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pl/values-pl.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1272, + "endColumn": 108, + "endOffset": 1376 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1381, + "endColumn": 98, + "endOffset": 1475 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pl/values-pl.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1381, + "endColumn": 98, + "endOffset": 1475 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1480, + "endColumn": 108, + "endOffset": 1584 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pl/values-pl.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1480, + "endColumn": 108, + "endOffset": 1584 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1589, + "endColumn": 110, + "endOffset": 1695 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pl/values-pl.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1589, + "endColumn": 110, + "endOffset": 1695 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1700, + "endColumn": 107, + "endOffset": 1803 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pl/values-pl.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1700, + "endColumn": 107, + "endOffset": 1803 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1808, + "endColumn": 122, + "endOffset": 1926 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pl/values-pl.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1808, + "endColumn": 122, + "endOffset": 1926 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1931, + "endColumn": 95, + "endOffset": 2022 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pl/values-pl.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1931, + "endColumn": 95, + "endOffset": 2022 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2027, + "endColumn": 53, + "endOffset": 2076 + }, + "from": { + "file": "/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/values-pl/values-pl.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 53, + "endOffset": 104 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2081, + "endColumn": 69, + "endOffset": 2146 + }, + "from": { + "file": "/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/values-pl/values-pl.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 109, + "endColumn": 69, + "endOffset": 174 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2151, + "endColumn": 78, + "endOffset": 2225 + }, + "from": { + "file": "/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/values-pl/values-pl.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 179, + "endColumn": 78, + "endOffset": 253 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2230, + "endColumn": 70, + "endOffset": 2296 + }, + "from": { + "file": "/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/values-pl/values-pl.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 258, + "endColumn": 70, + "endOffset": 324 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2301, + "endColumn": 61, + "endOffset": 2358 + }, + "from": { + "file": "/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/values-pl/values-pl.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 329, + "endColumn": 61, + "endOffset": 386 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2363, + "endColumn": 55, + "endOffset": 2414 + }, + "from": { + "file": "/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/values-pl/values-pl.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 391, + "endColumn": 55, + "endOffset": 442 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 2419, + "endColumn": 58, + "endOffset": 2473 + }, + "from": { + "file": "/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/values-pl/values-pl.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 447, + "endColumn": 58, + "endOffset": 501 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 2478, + "endColumn": 73, + "endOffset": 2547 + }, + "from": { + "file": "/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/values-pl/values-pl.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 506, + "endColumn": 73, + "endOffset": 575 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 2552, + "endColumn": 100, + "endOffset": 2648 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pl/values-pl.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2027, + "endColumn": 100, + "endOffset": 2123 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/multi/values-port.json b/android/build/intermediates/blame/res/androidTest/debug/multi/values-port.json new file mode 100644 index 000000000..1289f9b9c --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/multi/values-port.json @@ -0,0 +1,26 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-port/values-port.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 55, + "endOffset": 106 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-port/values-port.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 55, + "endOffset": 106 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/multi/values-pt-rBR.json b/android/build/intermediates/blame/res/androidTest/debug/multi/values-pt-rBR.json new file mode 100644 index 000000000..d5dbc9941 --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/multi/values-pt-rBR.json @@ -0,0 +1,387 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-pt-rBR/values-pt-rBR.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 119, + "endOffset": 170 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt-rBR/values-pt-rBR.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 119, + "endOffset": 170 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 175, + "endColumn": 107, + "endOffset": 278 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt-rBR/values-pt-rBR.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 175, + "endColumn": 107, + "endOffset": 278 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 283, + "endColumn": 122, + "endOffset": 401 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt-rBR/values-pt-rBR.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 283, + "endColumn": 122, + "endOffset": 401 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 406, + "endColumn": 105, + "endOffset": 507 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt-rBR/values-pt-rBR.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 406, + "endColumn": 105, + "endOffset": 507 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 512, + "endColumn": 106, + "endOffset": 614 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt-rBR/values-pt-rBR.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 512, + "endColumn": 106, + "endOffset": 614 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 619, + "endColumn": 88, + "endOffset": 703 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt-rBR/values-pt-rBR.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 619, + "endColumn": 88, + "endOffset": 703 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 708, + "endColumn": 100, + "endOffset": 804 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt-rBR/values-pt-rBR.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 708, + "endColumn": 100, + "endOffset": 804 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 809, + "endColumn": 117, + "endOffset": 922 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt-rBR/values-pt-rBR.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 809, + "endColumn": 117, + "endOffset": 922 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 927, + "endColumn": 82, + "endOffset": 1005 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt-rBR/values-pt-rBR.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 927, + "endColumn": 82, + "endOffset": 1005 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1010, + "endColumn": 79, + "endOffset": 1085 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt-rBR/values-pt-rBR.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1010, + "endColumn": 79, + "endOffset": 1085 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1090, + "endColumn": 86, + "endOffset": 1172 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt-rBR/values-pt-rBR.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1090, + "endColumn": 86, + "endOffset": 1172 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1177, + "endColumn": 106, + "endOffset": 1279 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt-rBR/values-pt-rBR.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1177, + "endColumn": 106, + "endOffset": 1279 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1284, + "endColumn": 111, + "endOffset": 1391 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt-rBR/values-pt-rBR.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1284, + "endColumn": 111, + "endOffset": 1391 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1396, + "endColumn": 101, + "endOffset": 1493 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt-rBR/values-pt-rBR.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1396, + "endColumn": 101, + "endOffset": 1493 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1498, + "endColumn": 107, + "endOffset": 1601 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt-rBR/values-pt-rBR.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1498, + "endColumn": 107, + "endOffset": 1601 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1606, + "endColumn": 106, + "endOffset": 1708 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt-rBR/values-pt-rBR.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1606, + "endColumn": 106, + "endOffset": 1708 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1713, + "endColumn": 109, + "endOffset": 1818 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt-rBR/values-pt-rBR.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1713, + "endColumn": 109, + "endOffset": 1818 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1823, + "endColumn": 124, + "endOffset": 1943 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt-rBR/values-pt-rBR.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1823, + "endColumn": 124, + "endOffset": 1943 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1948, + "endColumn": 99, + "endOffset": 2043 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt-rBR/values-pt-rBR.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1948, + "endColumn": 99, + "endOffset": 2043 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2048, + "endColumn": 100, + "endOffset": 2144 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt-rBR/values-pt-rBR.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2048, + "endColumn": 100, + "endOffset": 2144 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/multi/values-pt-rPT.json b/android/build/intermediates/blame/res/androidTest/debug/multi/values-pt-rPT.json new file mode 100644 index 000000000..a593650fd --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/multi/values-pt-rPT.json @@ -0,0 +1,539 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-pt-rPT/values-pt-rPT.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 119, + "endOffset": 170 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt-rPT/values-pt-rPT.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 119, + "endOffset": 170 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 175, + "endColumn": 107, + "endOffset": 278 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt-rPT/values-pt-rPT.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 175, + "endColumn": 107, + "endOffset": 278 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 283, + "endColumn": 122, + "endOffset": 401 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt-rPT/values-pt-rPT.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 283, + "endColumn": 122, + "endOffset": 401 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 406, + "endColumn": 105, + "endOffset": 507 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt-rPT/values-pt-rPT.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 406, + "endColumn": 105, + "endOffset": 507 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 512, + "endColumn": 106, + "endOffset": 614 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt-rPT/values-pt-rPT.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 512, + "endColumn": 106, + "endOffset": 614 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 619, + "endColumn": 88, + "endOffset": 703 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt-rPT/values-pt-rPT.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 619, + "endColumn": 88, + "endOffset": 703 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 708, + "endColumn": 100, + "endOffset": 804 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt-rPT/values-pt-rPT.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 708, + "endColumn": 100, + "endOffset": 804 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 809, + "endColumn": 123, + "endOffset": 928 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt-rPT/values-pt-rPT.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 809, + "endColumn": 123, + "endOffset": 928 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 933, + "endColumn": 83, + "endOffset": 1012 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt-rPT/values-pt-rPT.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 933, + "endColumn": 83, + "endOffset": 1012 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1017, + "endColumn": 80, + "endOffset": 1093 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt-rPT/values-pt-rPT.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1017, + "endColumn": 80, + "endOffset": 1093 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1098, + "endColumn": 86, + "endOffset": 1180 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt-rPT/values-pt-rPT.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1098, + "endColumn": 86, + "endOffset": 1180 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1185, + "endColumn": 106, + "endOffset": 1287 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt-rPT/values-pt-rPT.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1185, + "endColumn": 106, + "endOffset": 1287 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1292, + "endColumn": 111, + "endOffset": 1399 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt-rPT/values-pt-rPT.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1292, + "endColumn": 111, + "endOffset": 1399 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1404, + "endColumn": 101, + "endOffset": 1501 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt-rPT/values-pt-rPT.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1404, + "endColumn": 101, + "endOffset": 1501 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1506, + "endColumn": 107, + "endOffset": 1609 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt-rPT/values-pt-rPT.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1506, + "endColumn": 107, + "endOffset": 1609 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1614, + "endColumn": 106, + "endOffset": 1716 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt-rPT/values-pt-rPT.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1614, + "endColumn": 106, + "endOffset": 1716 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1721, + "endColumn": 106, + "endOffset": 1823 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt-rPT/values-pt-rPT.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1721, + "endColumn": 106, + "endOffset": 1823 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1828, + "endColumn": 121, + "endOffset": 1945 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt-rPT/values-pt-rPT.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1828, + "endColumn": 121, + "endOffset": 1945 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1950, + "endColumn": 98, + "endOffset": 2044 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt-rPT/values-pt-rPT.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1950, + "endColumn": 98, + "endOffset": 2044 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2049, + "endColumn": 53, + "endOffset": 2098 + }, + "from": { + "file": "/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/values-pt-rPT/values-pt-rPT.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 53, + "endOffset": 104 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2103, + "endColumn": 69, + "endOffset": 2168 + }, + "from": { + "file": "/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/values-pt-rPT/values-pt-rPT.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 109, + "endColumn": 69, + "endOffset": 174 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2173, + "endColumn": 78, + "endOffset": 2247 + }, + "from": { + "file": "/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/values-pt-rPT/values-pt-rPT.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 179, + "endColumn": 78, + "endOffset": 253 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2252, + "endColumn": 70, + "endOffset": 2318 + }, + "from": { + "file": "/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/values-pt-rPT/values-pt-rPT.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 258, + "endColumn": 70, + "endOffset": 324 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2323, + "endColumn": 60, + "endOffset": 2379 + }, + "from": { + "file": "/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/values-pt-rPT/values-pt-rPT.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 329, + "endColumn": 60, + "endOffset": 385 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2384, + "endColumn": 55, + "endOffset": 2435 + }, + "from": { + "file": "/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/values-pt-rPT/values-pt-rPT.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 390, + "endColumn": 55, + "endOffset": 441 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 2440, + "endColumn": 58, + "endOffset": 2494 + }, + "from": { + "file": "/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/values-pt-rPT/values-pt-rPT.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 446, + "endColumn": 58, + "endOffset": 500 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 2499, + "endColumn": 73, + "endOffset": 2568 + }, + "from": { + "file": "/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/values-pt-rPT/values-pt-rPT.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 505, + "endColumn": 73, + "endOffset": 574 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 2573, + "endColumn": 100, + "endOffset": 2669 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt-rPT/values-pt-rPT.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2049, + "endColumn": 100, + "endOffset": 2145 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/multi/values-pt.json b/android/build/intermediates/blame/res/androidTest/debug/multi/values-pt.json new file mode 100644 index 000000000..8f377c5b3 --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/multi/values-pt.json @@ -0,0 +1,1717 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-pt/values-pt.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 119, + "endOffset": 170 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt/values-pt.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 119, + "endOffset": 170 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 175, + "endColumn": 107, + "endOffset": 278 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt/values-pt.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 175, + "endColumn": 107, + "endOffset": 278 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 283, + "endColumn": 122, + "endOffset": 401 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt/values-pt.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 283, + "endColumn": 122, + "endOffset": 401 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 406, + "endColumn": 105, + "endOffset": 507 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt/values-pt.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 406, + "endColumn": 105, + "endOffset": 507 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 512, + "endColumn": 106, + "endOffset": 614 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt/values-pt.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 512, + "endColumn": 106, + "endOffset": 614 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 619, + "endColumn": 88, + "endOffset": 703 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt/values-pt.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 619, + "endColumn": 88, + "endOffset": 703 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 708, + "endColumn": 100, + "endOffset": 804 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt/values-pt.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 708, + "endColumn": 100, + "endOffset": 804 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 809, + "endColumn": 117, + "endOffset": 922 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt/values-pt.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 809, + "endColumn": 117, + "endOffset": 922 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 927, + "endColumn": 82, + "endOffset": 1005 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt/values-pt.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 927, + "endColumn": 82, + "endOffset": 1005 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1010, + "endColumn": 79, + "endOffset": 1085 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt/values-pt.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1010, + "endColumn": 79, + "endOffset": 1085 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1090, + "endColumn": 86, + "endOffset": 1172 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt/values-pt.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1090, + "endColumn": 86, + "endOffset": 1172 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1177, + "endColumn": 106, + "endOffset": 1279 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt/values-pt.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1177, + "endColumn": 106, + "endOffset": 1279 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1284, + "endColumn": 111, + "endOffset": 1391 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt/values-pt.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1284, + "endColumn": 111, + "endOffset": 1391 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1396, + "endColumn": 101, + "endOffset": 1493 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt/values-pt.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1396, + "endColumn": 101, + "endOffset": 1493 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1498, + "endColumn": 107, + "endOffset": 1601 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt/values-pt.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1498, + "endColumn": 107, + "endOffset": 1601 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1606, + "endColumn": 106, + "endOffset": 1708 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt/values-pt.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1606, + "endColumn": 106, + "endOffset": 1708 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1713, + "endColumn": 109, + "endOffset": 1818 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt/values-pt.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1713, + "endColumn": 109, + "endOffset": 1818 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1823, + "endColumn": 124, + "endOffset": 1943 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt/values-pt.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1823, + "endColumn": 124, + "endOffset": 1943 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1948, + "endColumn": 99, + "endOffset": 2043 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt/values-pt.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1948, + "endColumn": 99, + "endOffset": 2043 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2048, + "endColumn": 54, + "endOffset": 2098 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-pt/values-pt.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 54, + "endOffset": 105 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2103, + "endColumn": 46, + "endOffset": 2145 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-pt/values-pt.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 110, + "endColumn": 46, + "endOffset": 152 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2150, + "endColumn": 49, + "endOffset": 2195 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-pt/values-pt.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 157, + "endColumn": 49, + "endOffset": 202 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2200, + "endColumn": 53, + "endOffset": 2249 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-pt/values-pt.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 207, + "endColumn": 53, + "endOffset": 256 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2254, + "endColumn": 47, + "endOffset": 2297 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-pt/values-pt.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 261, + "endColumn": 47, + "endOffset": 304 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2302, + "endColumn": 62, + "endOffset": 2360 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-pt/values-pt.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 309, + "endColumn": 62, + "endOffset": 367 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 2365, + "endColumn": 50, + "endOffset": 2411 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-pt/values-pt.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 372, + "endColumn": 50, + "endOffset": 418 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 2416, + "endColumn": 47, + "endOffset": 2459 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-pt/values-pt.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 423, + "endColumn": 47, + "endOffset": 466 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 2464, + "endColumn": 41, + "endOffset": 2501 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-pt/values-pt.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 471, + "endColumn": 41, + "endOffset": 508 + } + } + }, + { + "to": { + "startLine": 30, + "startColumn": 4, + "startOffset": 2506, + "endColumn": 42, + "endOffset": 2544 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-pt/values-pt.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 513, + "endColumn": 42, + "endOffset": 551 + } + } + }, + { + "to": { + "startLine": 31, + "startColumn": 4, + "startOffset": 2549, + "endColumn": 53, + "endOffset": 2598 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-pt/values-pt.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 556, + "endColumn": 53, + "endOffset": 605 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 2603, + "endColumn": 151, + "endOffset": 2750 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-pt/values-pt.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 610, + "endColumn": 151, + "endOffset": 757 + } + } + }, + { + "to": { + "startLine": 33, + "startColumn": 4, + "startOffset": 2755, + "endColumn": 52, + "endOffset": 2803 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-pt/values-pt.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 762, + "endColumn": 52, + "endOffset": 810 + } + } + }, + { + "to": { + "startLine": 34, + "startColumn": 4, + "startOffset": 2808, + "endColumn": 62, + "endOffset": 2866 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-pt/values-pt.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 815, + "endColumn": 62, + "endOffset": 873 + } + } + }, + { + "to": { + "startLine": 35, + "startColumn": 4, + "startOffset": 2871, + "endColumn": 160, + "endOffset": 3027 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-pt/values-pt.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 878, + "endColumn": 160, + "endOffset": 1034 + } + } + }, + { + "to": { + "startLine": 36, + "startColumn": 4, + "startOffset": 3032, + "endColumn": 64, + "endOffset": 3092 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-pt/values-pt.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1039, + "endColumn": 64, + "endOffset": 1099 + } + } + }, + { + "to": { + "startLine": 37, + "startColumn": 4, + "startOffset": 3097, + "endColumn": 81, + "endOffset": 3174 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-pt/values-pt.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1104, + "endColumn": 81, + "endOffset": 1181 + } + } + }, + { + "to": { + "startLine": 38, + "startColumn": 4, + "startOffset": 3179, + "endColumn": 65, + "endOffset": 3240 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-pt/values-pt.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1186, + "endColumn": 65, + "endOffset": 1247 + } + } + }, + { + "to": { + "startLine": 39, + "startColumn": 4, + "startOffset": 3245, + "endColumn": 144, + "endOffset": 3385 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-pt/values-pt.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1252, + "endColumn": 144, + "endOffset": 1392 + } + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 3390, + "endColumn": 58, + "endOffset": 3444 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-pt/values-pt.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1397, + "endColumn": 58, + "endOffset": 1451 + } + } + }, + { + "to": { + "startLine": 41, + "startColumn": 4, + "startOffset": 3449, + "endColumn": 53, + "endOffset": 3498 + }, + "from": { + "file": "/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/values-pt/values-pt.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 53, + "endOffset": 104 + } + } + }, + { + "to": { + "startLine": 42, + "startColumn": 4, + "startOffset": 3503, + "endColumn": 69, + "endOffset": 3568 + }, + "from": { + "file": "/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/values-pt/values-pt.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 109, + "endColumn": 69, + "endOffset": 174 + } + } + }, + { + "to": { + "startLine": 43, + "startColumn": 4, + "startOffset": 3573, + "endColumn": 78, + "endOffset": 3647 + }, + "from": { + "file": "/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/values-pt/values-pt.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 179, + "endColumn": 78, + "endOffset": 253 + } + } + }, + { + "to": { + "startLine": 44, + "startColumn": 4, + "startOffset": 3652, + "endColumn": 70, + "endOffset": 3718 + }, + "from": { + "file": "/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/values-pt/values-pt.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 258, + "endColumn": 70, + "endOffset": 324 + } + } + }, + { + "to": { + "startLine": 45, + "startColumn": 4, + "startOffset": 3723, + "endColumn": 60, + "endOffset": 3779 + }, + "from": { + "file": "/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/values-pt/values-pt.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 329, + "endColumn": 60, + "endOffset": 385 + } + } + }, + { + "to": { + "startLine": 46, + "startColumn": 4, + "startOffset": 3784, + "endColumn": 55, + "endOffset": 3835 + }, + "from": { + "file": "/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/values-pt/values-pt.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 390, + "endColumn": 55, + "endOffset": 441 + } + } + }, + { + "to": { + "startLine": 47, + "startColumn": 4, + "startOffset": 3840, + "endColumn": 58, + "endOffset": 3894 + }, + "from": { + "file": "/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/values-pt/values-pt.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 446, + "endColumn": 58, + "endOffset": 500 + } + } + }, + { + "to": { + "startLine": 48, + "startColumn": 4, + "startOffset": 3899, + "endColumn": 73, + "endOffset": 3968 + }, + "from": { + "file": "/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/values-pt/values-pt.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 505, + "endColumn": 73, + "endOffset": 574 + } + } + }, + { + "to": { + "startLine": 49, + "startColumn": 4, + "startOffset": 3973, + "endColumn": 51, + "endOffset": 4020 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-pt/values-pt.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 1456, + "endColumn": 51, + "endOffset": 1503 + } + } + }, + { + "to": { + "startLine": 50, + "startColumn": 4, + "startOffset": 4025, + "endColumn": 96, + "endOffset": 4117 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-pt/values-pt.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 1508, + "endColumn": 96, + "endOffset": 1600 + } + } + }, + { + "to": { + "startLine": 51, + "startColumn": 4, + "startOffset": 4122, + "endColumn": 75, + "endOffset": 4193 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-pt/values-pt.xml", + "position": { + "startLine": 24, + "startColumn": 4, + "startOffset": 1605, + "endColumn": 75, + "endOffset": 1676 + } + } + }, + { + "to": { + "startLine": 52, + "startColumn": 4, + "startOffset": 4198, + "endColumn": 101, + "endOffset": 4295 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-pt/values-pt.xml", + "position": { + "startLine": 25, + "startColumn": 4, + "startOffset": 1681, + "endColumn": 101, + "endOffset": 1778 + } + } + }, + { + "to": { + "startLine": 53, + "startColumn": 4, + "startOffset": 4300, + "endColumn": 50, + "endOffset": 4346 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-pt/values-pt.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 1783, + "endColumn": 50, + "endOffset": 1829 + } + } + }, + { + "to": { + "startLine": 54, + "startColumn": 4, + "startOffset": 4351, + "endColumn": 51, + "endOffset": 4398 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-pt/values-pt.xml", + "position": { + "startLine": 27, + "startColumn": 4, + "startOffset": 1834, + "endColumn": 51, + "endOffset": 1881 + } + } + }, + { + "to": { + "startLine": 55, + "startColumn": 4, + "startOffset": 4403, + "endColumn": 147, + "endOffset": 4546 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-pt/values-pt.xml", + "position": { + "startLine": 28, + "startColumn": 4, + "startOffset": 1886, + "endColumn": 147, + "endOffset": 2029 + } + } + }, + { + "to": { + "startLine": 56, + "startColumn": 4, + "startOffset": 4551, + "endColumn": 48, + "endOffset": 4595 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-pt/values-pt.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 2034, + "endColumn": 48, + "endOffset": 2078 + } + } + }, + { + "to": { + "startLine": 57, + "startColumn": 4, + "startOffset": 4600, + "endColumn": 70, + "endOffset": 4666 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-pt/values-pt.xml", + "position": { + "startLine": 30, + "startColumn": 4, + "startOffset": 2083, + "endColumn": 70, + "endOffset": 2149 + } + } + }, + { + "to": { + "startLine": 58, + "startColumn": 4, + "startOffset": 4671, + "endColumn": 82, + "endOffset": 4749 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-pt/values-pt.xml", + "position": { + "startLine": 31, + "startColumn": 4, + "startOffset": 2154, + "endColumn": 82, + "endOffset": 2232 + } + } + }, + { + "to": { + "startLine": 59, + "startColumn": 4, + "startOffset": 4754, + "endColumn": 74, + "endOffset": 4824 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-pt/values-pt.xml", + "position": { + "startLine": 32, + "startColumn": 4, + "startOffset": 2237, + "endColumn": 74, + "endOffset": 2307 + } + } + }, + { + "to": { + "startLine": 60, + "startColumn": 4, + "startOffset": 4829, + "endColumn": 70, + "endOffset": 4895 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-pt/values-pt.xml", + "position": { + "startLine": 33, + "startColumn": 4, + "startOffset": 2312, + "endColumn": 70, + "endOffset": 2378 + } + } + }, + { + "to": { + "startLine": 61, + "startColumn": 4, + "startOffset": 4900, + "endColumn": 60, + "endOffset": 4956 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-pt/values-pt.xml", + "position": { + "startLine": 34, + "startColumn": 4, + "startOffset": 2383, + "endColumn": 60, + "endOffset": 2439 + } + } + }, + { + "to": { + "startLine": 62, + "startColumn": 4, + "startOffset": 4961, + "endColumn": 216, + "endOffset": 5173 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-pt/values-pt.xml", + "position": { + "startLine": 35, + "startColumn": 4, + "startOffset": 2444, + "endColumn": 216, + "endOffset": 2656 + } + } + }, + { + "to": { + "startLine": 63, + "startColumn": 4, + "startOffset": 5178, + "endColumn": 58, + "endOffset": 5232 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-pt/values-pt.xml", + "position": { + "startLine": 36, + "startColumn": 4, + "startOffset": 2661, + "endColumn": 58, + "endOffset": 2715 + } + } + }, + { + "to": { + "startLine": 64, + "startColumn": 4, + "startOffset": 5237, + "endColumn": 50, + "endOffset": 5283 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-pt/values-pt.xml", + "position": { + "startLine": 37, + "startColumn": 4, + "startOffset": 2720, + "endColumn": 50, + "endOffset": 2766 + } + } + }, + { + "to": { + "startLine": 65, + "startColumn": 4, + "startOffset": 5288, + "endColumn": 61, + "endOffset": 5345 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-pt/values-pt.xml", + "position": { + "startLine": 38, + "startColumn": 4, + "startOffset": 2771, + "endColumn": 61, + "endOffset": 2828 + } + } + }, + { + "to": { + "startLine": 66, + "startColumn": 4, + "startOffset": 5350, + "endColumn": 66, + "endOffset": 5412 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-pt/values-pt.xml", + "position": { + "startLine": 39, + "startColumn": 4, + "startOffset": 2833, + "endColumn": 66, + "endOffset": 2895 + } + } + }, + { + "to": { + "startLine": 67, + "startColumn": 4, + "startOffset": 5417, + "endColumn": 50, + "endOffset": 5463 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-pt/values-pt.xml", + "position": { + "startLine": 40, + "startColumn": 4, + "startOffset": 2900, + "endColumn": 50, + "endOffset": 2946 + } + } + }, + { + "to": { + "startLine": 68, + "startColumn": 4, + "startOffset": 5468, + "endColumn": 66, + "endOffset": 5530 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-pt/values-pt.xml", + "position": { + "startLine": 41, + "startColumn": 4, + "startOffset": 2951, + "endColumn": 66, + "endOffset": 3013 + } + } + }, + { + "to": { + "startLine": 69, + "startColumn": 4, + "startOffset": 5535, + "endColumn": 238, + "endOffset": 5769 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-pt/values-pt.xml", + "position": { + "startLine": 42, + "startColumn": 4, + "startOffset": 3018, + "endColumn": 238, + "endOffset": 3252 + } + } + }, + { + "to": { + "startLine": 70, + "startColumn": 4, + "startOffset": 5774, + "endColumn": 202, + "endOffset": 5972 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-pt/values-pt.xml", + "position": { + "startLine": 43, + "startColumn": 4, + "startOffset": 3257, + "endColumn": 202, + "endOffset": 3455 + } + } + }, + { + "to": { + "startLine": 71, + "startColumn": 4, + "startOffset": 5977, + "endColumn": 75, + "endOffset": 6048 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-pt/values-pt.xml", + "position": { + "startLine": 44, + "startColumn": 4, + "startOffset": 3460, + "endColumn": 75, + "endOffset": 3531 + } + } + }, + { + "to": { + "startLine": 72, + "startColumn": 4, + "startOffset": 6053, + "endColumn": 107, + "endOffset": 6156 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-pt/values-pt.xml", + "position": { + "startLine": 45, + "startColumn": 4, + "startOffset": 3536, + "endColumn": 107, + "endOffset": 3639 + } + } + }, + { + "to": { + "startLine": 73, + "startColumn": 4, + "startOffset": 6161, + "endColumn": 56, + "endOffset": 6213 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-pt/values-pt.xml", + "position": { + "startLine": 46, + "startColumn": 4, + "startOffset": 3644, + "endColumn": 56, + "endOffset": 3696 + } + } + }, + { + "to": { + "startLine": 74, + "startColumn": 4, + "startOffset": 6218, + "endColumn": 81, + "endOffset": 6295 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-pt/values-pt.xml", + "position": { + "startLine": 47, + "startColumn": 4, + "startOffset": 3701, + "endColumn": 81, + "endOffset": 3778 + } + } + }, + { + "to": { + "startLine": 75, + "startColumn": 4, + "startOffset": 6300, + "endColumn": 50, + "endOffset": 6346 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-pt/values-pt.xml", + "position": { + "startLine": 48, + "startColumn": 4, + "startOffset": 3783, + "endColumn": 50, + "endOffset": 3829 + } + } + }, + { + "to": { + "startLine": 76, + "startColumn": 4, + "startOffset": 6351, + "endColumn": 61, + "endOffset": 6408 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-pt/values-pt.xml", + "position": { + "startLine": 49, + "startColumn": 4, + "startOffset": 3834, + "endColumn": 61, + "endOffset": 3891 + } + } + }, + { + "to": { + "startLine": 77, + "startColumn": 4, + "startOffset": 6413, + "endColumn": 144, + "endOffset": 6553 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-pt/values-pt.xml", + "position": { + "startLine": 50, + "startColumn": 4, + "startOffset": 3896, + "endColumn": 144, + "endOffset": 4036 + } + } + }, + { + "to": { + "startLine": 78, + "startColumn": 4, + "startOffset": 6558, + "endColumn": 99, + "endOffset": 6653 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-pt/values-pt.xml", + "position": { + "startLine": 51, + "startColumn": 4, + "startOffset": 4041, + "endColumn": 99, + "endOffset": 4136 + } + } + }, + { + "to": { + "startLine": 79, + "startColumn": 4, + "startOffset": 6658, + "endColumn": 65, + "endOffset": 6719 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-pt/values-pt.xml", + "position": { + "startLine": 52, + "startColumn": 4, + "startOffset": 4141, + "endColumn": 65, + "endOffset": 4202 + } + } + }, + { + "to": { + "startLine": 80, + "startColumn": 4, + "startOffset": 6724, + "endColumn": 62, + "endOffset": 6782 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-pt/values-pt.xml", + "position": { + "startLine": 53, + "startColumn": 4, + "startOffset": 4207, + "endColumn": 62, + "endOffset": 4265 + } + } + }, + { + "to": { + "startLine": 81, + "startColumn": 4, + "startOffset": 6787, + "endColumn": 218, + "endOffset": 7001 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-pt/values-pt.xml", + "position": { + "startLine": 54, + "startColumn": 4, + "startOffset": 4270, + "endColumn": 218, + "endOffset": 4484 + } + } + }, + { + "to": { + "startLine": 82, + "startColumn": 4, + "startOffset": 7006, + "endColumn": 65, + "endOffset": 7067 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-pt/values-pt.xml", + "position": { + "startLine": 55, + "startColumn": 4, + "startOffset": 4489, + "endColumn": 65, + "endOffset": 4550 + } + } + }, + { + "to": { + "startLine": 83, + "startColumn": 4, + "startOffset": 7072, + "endColumn": 100, + "endOffset": 7168 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt/values-pt.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2048, + "endColumn": 100, + "endOffset": 2144 + } + } + }, + { + "to": { + "startLine": 84, + "startColumn": 4, + "startOffset": 7173, + "endColumn": 65, + "endOffset": 7234 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-pt/values-pt.xml", + "position": { + "startLine": 56, + "startColumn": 4, + "startOffset": 4555, + "endColumn": 65, + "endOffset": 4616 + } + } + }, + { + "to": { + "startLine": 85, + "startColumn": 4, + "startOffset": 7239, + "endColumn": 94, + "endOffset": 7329 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-pt/values-pt.xml", + "position": { + "startLine": 57, + "startColumn": 4, + "startOffset": 4621, + "endColumn": 94, + "endOffset": 4711 + } + } + }, + { + "to": { + "startLine": 86, + "startColumn": 4, + "startOffset": 7334, + "endColumn": 54, + "endOffset": 7384 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-pt/values-pt.xml", + "position": { + "startLine": 58, + "startColumn": 4, + "startOffset": 4716, + "endColumn": 54, + "endOffset": 4766 + } + } + }, + { + "to": { + "startLine": 87, + "startColumn": 4, + "startOffset": 7389, + "endColumn": 77, + "endOffset": 7462 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-pt/values-pt.xml", + "position": { + "startLine": 59, + "startColumn": 4, + "startOffset": 4771, + "endColumn": 77, + "endOffset": 4844 + } + } + }, + { + "to": { + "startLine": 88, + "startColumn": 4, + "startOffset": 7467, + "endColumn": 88, + "endOffset": 7551 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-pt/values-pt.xml", + "position": { + "startLine": 60, + "startColumn": 4, + "startOffset": 4849, + "endColumn": 88, + "endOffset": 4933 + } + } + }, + { + "to": { + "startLine": 89, + "startColumn": 4, + "startOffset": 7556, + "endColumn": 58, + "endOffset": 7610 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-pt/values-pt.xml", + "position": { + "startLine": 61, + "startColumn": 4, + "startOffset": 4938, + "endColumn": 58, + "endOffset": 4992 + } + } + }, + { + "to": { + "startLine": 90, + "startColumn": 4, + "startOffset": 7615, + "endColumn": 59, + "endOffset": 7670 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-pt/values-pt.xml", + "position": { + "startLine": 62, + "startColumn": 4, + "startOffset": 4997, + "endColumn": 59, + "endOffset": 5052 + } + } + }, + { + "to": { + "startLine": 91, + "startColumn": 4, + "startOffset": 7675, + "endColumn": 147, + "endOffset": 7818 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-pt/values-pt.xml", + "position": { + "startLine": 63, + "startColumn": 4, + "startOffset": 5057, + "endColumn": 147, + "endOffset": 5200 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/multi/values-ro.json b/android/build/intermediates/blame/res/androidTest/debug/multi/values-ro.json new file mode 100644 index 000000000..747a7a4cd --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/multi/values-ro.json @@ -0,0 +1,539 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ro/values-ro.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 120, + "endOffset": 171 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ro/values-ro.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 120, + "endOffset": 171 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 176, + "endColumn": 107, + "endOffset": 279 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ro/values-ro.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 176, + "endColumn": 107, + "endOffset": 279 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 284, + "endColumn": 122, + "endOffset": 402 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ro/values-ro.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 284, + "endColumn": 122, + "endOffset": 402 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 407, + "endColumn": 103, + "endOffset": 506 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ro/values-ro.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 407, + "endColumn": 103, + "endOffset": 506 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 511, + "endColumn": 112, + "endOffset": 619 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ro/values-ro.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 511, + "endColumn": 112, + "endOffset": 619 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 624, + "endColumn": 87, + "endOffset": 707 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ro/values-ro.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 624, + "endColumn": 87, + "endOffset": 707 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 712, + "endColumn": 111, + "endOffset": 819 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ro/values-ro.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 712, + "endColumn": 111, + "endOffset": 819 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 824, + "endColumn": 120, + "endOffset": 940 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ro/values-ro.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 824, + "endColumn": 120, + "endOffset": 940 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 945, + "endColumn": 84, + "endOffset": 1025 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ro/values-ro.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 945, + "endColumn": 84, + "endOffset": 1025 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1030, + "endColumn": 81, + "endOffset": 1107 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ro/values-ro.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1030, + "endColumn": 81, + "endOffset": 1107 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1112, + "endColumn": 82, + "endOffset": 1190 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ro/values-ro.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1112, + "endColumn": 82, + "endOffset": 1190 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1195, + "endColumn": 111, + "endOffset": 1302 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ro/values-ro.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1195, + "endColumn": 111, + "endOffset": 1302 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1307, + "endColumn": 112, + "endOffset": 1415 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ro/values-ro.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1307, + "endColumn": 112, + "endOffset": 1415 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1420, + "endColumn": 99, + "endOffset": 1515 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ro/values-ro.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1420, + "endColumn": 99, + "endOffset": 1515 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1520, + "endColumn": 113, + "endOffset": 1629 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ro/values-ro.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1520, + "endColumn": 113, + "endOffset": 1629 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1634, + "endColumn": 104, + "endOffset": 1734 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ro/values-ro.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1634, + "endColumn": 104, + "endOffset": 1734 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1739, + "endColumn": 105, + "endOffset": 1840 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ro/values-ro.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1739, + "endColumn": 105, + "endOffset": 1840 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1845, + "endColumn": 120, + "endOffset": 1961 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ro/values-ro.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1845, + "endColumn": 120, + "endOffset": 1961 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1966, + "endColumn": 102, + "endOffset": 2064 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ro/values-ro.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1966, + "endColumn": 102, + "endOffset": 2064 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2069, + "endColumn": 53, + "endOffset": 2118 + }, + "from": { + "file": "/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/values-ro/values-ro.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 53, + "endOffset": 104 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2123, + "endColumn": 69, + "endOffset": 2188 + }, + "from": { + "file": "/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/values-ro/values-ro.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 109, + "endColumn": 69, + "endOffset": 174 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2193, + "endColumn": 78, + "endOffset": 2267 + }, + "from": { + "file": "/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/values-ro/values-ro.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 179, + "endColumn": 78, + "endOffset": 253 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2272, + "endColumn": 70, + "endOffset": 2338 + }, + "from": { + "file": "/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/values-ro/values-ro.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 258, + "endColumn": 70, + "endOffset": 324 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2343, + "endColumn": 64, + "endOffset": 2403 + }, + "from": { + "file": "/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/values-ro/values-ro.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 329, + "endColumn": 64, + "endOffset": 389 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2408, + "endColumn": 55, + "endOffset": 2459 + }, + "from": { + "file": "/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/values-ro/values-ro.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 394, + "endColumn": 55, + "endOffset": 445 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 2464, + "endColumn": 58, + "endOffset": 2518 + }, + "from": { + "file": "/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/values-ro/values-ro.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 450, + "endColumn": 58, + "endOffset": 504 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 2523, + "endColumn": 73, + "endOffset": 2592 + }, + "from": { + "file": "/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/values-ro/values-ro.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 509, + "endColumn": 73, + "endOffset": 578 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 2597, + "endColumn": 100, + "endOffset": 2693 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ro/values-ro.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2069, + "endColumn": 100, + "endOffset": 2165 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/multi/values-ru.json b/android/build/intermediates/blame/res/androidTest/debug/multi/values-ru.json new file mode 100644 index 000000000..e9496ce4b --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/multi/values-ru.json @@ -0,0 +1,539 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ru/values-ru.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 114, + "endOffset": 165 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ru/values-ru.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 114, + "endOffset": 165 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 107, + "endOffset": 273 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ru/values-ru.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 107, + "endOffset": 273 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 278, + "endColumn": 122, + "endOffset": 396 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ru/values-ru.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 278, + "endColumn": 122, + "endOffset": 396 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 401, + "endColumn": 101, + "endOffset": 498 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ru/values-ru.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 401, + "endColumn": 101, + "endOffset": 498 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 503, + "endColumn": 111, + "endOffset": 610 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ru/values-ru.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 503, + "endColumn": 111, + "endOffset": 610 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 615, + "endColumn": 85, + "endOffset": 696 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ru/values-ru.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 615, + "endColumn": 85, + "endOffset": 696 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 701, + "endColumn": 104, + "endOffset": 801 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ru/values-ru.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 701, + "endColumn": 104, + "endOffset": 801 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 806, + "endColumn": 119, + "endOffset": 921 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ru/values-ru.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 806, + "endColumn": 119, + "endOffset": 921 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 926, + "endColumn": 78, + "endOffset": 1000 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ru/values-ru.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 926, + "endColumn": 78, + "endOffset": 1000 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1005, + "endColumn": 77, + "endOffset": 1078 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ru/values-ru.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1005, + "endColumn": 77, + "endOffset": 1078 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1083, + "endColumn": 79, + "endOffset": 1158 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ru/values-ru.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1083, + "endColumn": 79, + "endOffset": 1158 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1163, + "endColumn": 105, + "endOffset": 1264 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ru/values-ru.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1163, + "endColumn": 105, + "endOffset": 1264 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1269, + "endColumn": 107, + "endOffset": 1372 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ru/values-ru.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1269, + "endColumn": 107, + "endOffset": 1372 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1377, + "endColumn": 97, + "endOffset": 1470 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ru/values-ru.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1377, + "endColumn": 97, + "endOffset": 1470 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1475, + "endColumn": 108, + "endOffset": 1579 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ru/values-ru.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1475, + "endColumn": 108, + "endOffset": 1579 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1584, + "endColumn": 105, + "endOffset": 1685 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ru/values-ru.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1584, + "endColumn": 105, + "endOffset": 1685 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1690, + "endColumn": 107, + "endOffset": 1793 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ru/values-ru.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1690, + "endColumn": 107, + "endOffset": 1793 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1798, + "endColumn": 135, + "endOffset": 1929 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ru/values-ru.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1798, + "endColumn": 135, + "endOffset": 1929 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1934, + "endColumn": 99, + "endOffset": 2029 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ru/values-ru.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1934, + "endColumn": 99, + "endOffset": 2029 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2034, + "endColumn": 53, + "endOffset": 2083 + }, + "from": { + "file": "/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/values-ru/values-ru.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 53, + "endOffset": 104 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2088, + "endColumn": 72, + "endOffset": 2156 + }, + "from": { + "file": "/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/values-ru/values-ru.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 109, + "endColumn": 72, + "endOffset": 177 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2161, + "endColumn": 78, + "endOffset": 2235 + }, + "from": { + "file": "/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/values-ru/values-ru.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 182, + "endColumn": 78, + "endOffset": 256 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2240, + "endColumn": 70, + "endOffset": 2306 + }, + "from": { + "file": "/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/values-ru/values-ru.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 261, + "endColumn": 70, + "endOffset": 327 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2311, + "endColumn": 62, + "endOffset": 2369 + }, + "from": { + "file": "/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/values-ru/values-ru.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 332, + "endColumn": 62, + "endOffset": 390 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2374, + "endColumn": 55, + "endOffset": 2425 + }, + "from": { + "file": "/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/values-ru/values-ru.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 395, + "endColumn": 55, + "endOffset": 446 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 2430, + "endColumn": 58, + "endOffset": 2484 + }, + "from": { + "file": "/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/values-ru/values-ru.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 451, + "endColumn": 58, + "endOffset": 505 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 2489, + "endColumn": 73, + "endOffset": 2558 + }, + "from": { + "file": "/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/values-ru/values-ru.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 510, + "endColumn": 73, + "endOffset": 579 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 2563, + "endColumn": 100, + "endOffset": 2659 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ru/values-ru.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2034, + "endColumn": 100, + "endOffset": 2130 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/multi/values-si-rLK.json b/android/build/intermediates/blame/res/androidTest/debug/multi/values-si-rLK.json new file mode 100644 index 000000000..a1b92ce63 --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/multi/values-si-rLK.json @@ -0,0 +1,387 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-si-rLK/values-si-rLK.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 109, + "endOffset": 160 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-si-rLK/values-si-rLK.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 109, + "endOffset": 160 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 165, + "endColumn": 107, + "endOffset": 268 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-si-rLK/values-si-rLK.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 165, + "endColumn": 107, + "endOffset": 268 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 273, + "endColumn": 122, + "endOffset": 391 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-si-rLK/values-si-rLK.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 273, + "endColumn": 122, + "endOffset": 391 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 396, + "endColumn": 106, + "endOffset": 498 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-si-rLK/values-si-rLK.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 396, + "endColumn": 106, + "endOffset": 498 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 503, + "endColumn": 106, + "endOffset": 605 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-si-rLK/values-si-rLK.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 503, + "endColumn": 106, + "endOffset": 605 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 610, + "endColumn": 87, + "endOffset": 693 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-si-rLK/values-si-rLK.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 610, + "endColumn": 87, + "endOffset": 693 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 698, + "endColumn": 104, + "endOffset": 798 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-si-rLK/values-si-rLK.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 698, + "endColumn": 104, + "endOffset": 798 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 803, + "endColumn": 115, + "endOffset": 914 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-si-rLK/values-si-rLK.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 803, + "endColumn": 115, + "endOffset": 914 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 919, + "endColumn": 88, + "endOffset": 1003 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-si-rLK/values-si-rLK.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 919, + "endColumn": 88, + "endOffset": 1003 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1008, + "endColumn": 86, + "endOffset": 1090 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-si-rLK/values-si-rLK.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1008, + "endColumn": 86, + "endOffset": 1090 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1095, + "endColumn": 83, + "endOffset": 1174 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-si-rLK/values-si-rLK.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1095, + "endColumn": 83, + "endOffset": 1174 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1179, + "endColumn": 108, + "endOffset": 1283 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-si-rLK/values-si-rLK.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1179, + "endColumn": 108, + "endOffset": 1283 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1288, + "endColumn": 104, + "endOffset": 1388 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-si-rLK/values-si-rLK.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1288, + "endColumn": 104, + "endOffset": 1388 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1393, + "endColumn": 97, + "endOffset": 1486 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-si-rLK/values-si-rLK.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1393, + "endColumn": 97, + "endOffset": 1486 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1491, + "endColumn": 109, + "endOffset": 1596 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-si-rLK/values-si-rLK.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1491, + "endColumn": 109, + "endOffset": 1596 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1601, + "endColumn": 98, + "endOffset": 1695 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-si-rLK/values-si-rLK.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1601, + "endColumn": 98, + "endOffset": 1695 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1700, + "endColumn": 105, + "endOffset": 1801 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-si-rLK/values-si-rLK.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1700, + "endColumn": 105, + "endOffset": 1801 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1806, + "endColumn": 120, + "endOffset": 1922 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-si-rLK/values-si-rLK.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1806, + "endColumn": 120, + "endOffset": 1922 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1927, + "endColumn": 98, + "endOffset": 2021 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-si-rLK/values-si-rLK.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1927, + "endColumn": 98, + "endOffset": 2021 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2026, + "endColumn": 100, + "endOffset": 2122 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-si-rLK/values-si-rLK.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2026, + "endColumn": 100, + "endOffset": 2122 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/multi/values-sk.json b/android/build/intermediates/blame/res/androidTest/debug/multi/values-sk.json new file mode 100644 index 000000000..8d7884ba0 --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/multi/values-sk.json @@ -0,0 +1,387 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-sk/values-sk.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 106, + "endOffset": 157 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sk/values-sk.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 106, + "endOffset": 157 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 162, + "endColumn": 107, + "endOffset": 265 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sk/values-sk.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 162, + "endColumn": 107, + "endOffset": 265 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 270, + "endColumn": 122, + "endOffset": 388 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sk/values-sk.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 270, + "endColumn": 122, + "endOffset": 388 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 393, + "endColumn": 99, + "endOffset": 488 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sk/values-sk.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 393, + "endColumn": 99, + "endOffset": 488 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 493, + "endColumn": 110, + "endOffset": 599 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sk/values-sk.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 493, + "endColumn": 110, + "endOffset": 599 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 604, + "endColumn": 85, + "endOffset": 685 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sk/values-sk.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 604, + "endColumn": 85, + "endOffset": 685 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 690, + "endColumn": 107, + "endOffset": 793 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sk/values-sk.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 690, + "endColumn": 107, + "endOffset": 793 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 798, + "endColumn": 117, + "endOffset": 911 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sk/values-sk.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 798, + "endColumn": 117, + "endOffset": 911 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 916, + "endColumn": 77, + "endOffset": 989 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sk/values-sk.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 916, + "endColumn": 77, + "endOffset": 989 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 994, + "endColumn": 77, + "endOffset": 1067 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sk/values-sk.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 994, + "endColumn": 77, + "endOffset": 1067 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1072, + "endColumn": 83, + "endOffset": 1151 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sk/values-sk.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1072, + "endColumn": 83, + "endOffset": 1151 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1156, + "endColumn": 104, + "endOffset": 1256 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sk/values-sk.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1156, + "endColumn": 104, + "endOffset": 1256 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1261, + "endColumn": 108, + "endOffset": 1365 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sk/values-sk.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1261, + "endColumn": 108, + "endOffset": 1365 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1370, + "endColumn": 98, + "endOffset": 1464 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sk/values-sk.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1370, + "endColumn": 98, + "endOffset": 1464 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1469, + "endColumn": 105, + "endOffset": 1570 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sk/values-sk.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1469, + "endColumn": 105, + "endOffset": 1570 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1575, + "endColumn": 110, + "endOffset": 1681 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sk/values-sk.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1575, + "endColumn": 110, + "endOffset": 1681 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1686, + "endColumn": 108, + "endOffset": 1790 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sk/values-sk.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1686, + "endColumn": 108, + "endOffset": 1790 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1795, + "endColumn": 123, + "endOffset": 1914 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sk/values-sk.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1795, + "endColumn": 123, + "endOffset": 1914 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1919, + "endColumn": 97, + "endOffset": 2012 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sk/values-sk.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1919, + "endColumn": 97, + "endOffset": 2012 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2017, + "endColumn": 100, + "endOffset": 2113 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sk/values-sk.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2017, + "endColumn": 100, + "endOffset": 2113 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/multi/values-sl.json b/android/build/intermediates/blame/res/androidTest/debug/multi/values-sl.json new file mode 100644 index 000000000..5e910d116 --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/multi/values-sl.json @@ -0,0 +1,387 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-sl/values-sl.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 106, + "endOffset": 157 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sl/values-sl.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 106, + "endOffset": 157 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 162, + "endColumn": 107, + "endOffset": 265 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sl/values-sl.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 162, + "endColumn": 107, + "endOffset": 265 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 270, + "endColumn": 122, + "endOffset": 388 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sl/values-sl.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 270, + "endColumn": 122, + "endOffset": 388 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 393, + "endColumn": 106, + "endOffset": 495 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sl/values-sl.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 393, + "endColumn": 106, + "endOffset": 495 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 500, + "endColumn": 107, + "endOffset": 603 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sl/values-sl.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 500, + "endColumn": 107, + "endOffset": 603 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 608, + "endColumn": 86, + "endOffset": 690 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sl/values-sl.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 608, + "endColumn": 86, + "endOffset": 690 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 695, + "endColumn": 102, + "endOffset": 793 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sl/values-sl.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 695, + "endColumn": 102, + "endOffset": 793 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 798, + "endColumn": 118, + "endOffset": 912 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sl/values-sl.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 798, + "endColumn": 118, + "endOffset": 912 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 917, + "endColumn": 84, + "endOffset": 997 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sl/values-sl.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 917, + "endColumn": 84, + "endOffset": 997 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1002, + "endColumn": 83, + "endOffset": 1081 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sl/values-sl.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1002, + "endColumn": 83, + "endOffset": 1081 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1086, + "endColumn": 83, + "endOffset": 1165 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sl/values-sl.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1086, + "endColumn": 83, + "endOffset": 1165 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1170, + "endColumn": 107, + "endOffset": 1273 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sl/values-sl.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1170, + "endColumn": 107, + "endOffset": 1273 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1278, + "endColumn": 108, + "endOffset": 1382 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sl/values-sl.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1278, + "endColumn": 108, + "endOffset": 1382 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1387, + "endColumn": 99, + "endOffset": 1482 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sl/values-sl.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1387, + "endColumn": 99, + "endOffset": 1482 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1487, + "endColumn": 112, + "endOffset": 1595 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sl/values-sl.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1487, + "endColumn": 112, + "endOffset": 1595 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1600, + "endColumn": 106, + "endOffset": 1702 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sl/values-sl.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1600, + "endColumn": 106, + "endOffset": 1702 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1707, + "endColumn": 103, + "endOffset": 1806 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sl/values-sl.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1707, + "endColumn": 103, + "endOffset": 1806 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1811, + "endColumn": 116, + "endOffset": 1923 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sl/values-sl.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1811, + "endColumn": 116, + "endOffset": 1923 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1928, + "endColumn": 96, + "endOffset": 2020 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sl/values-sl.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1928, + "endColumn": 96, + "endOffset": 2020 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2025, + "endColumn": 100, + "endOffset": 2121 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sl/values-sl.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2025, + "endColumn": 100, + "endOffset": 2121 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/multi/values-sq-rAL.json b/android/build/intermediates/blame/res/androidTest/debug/multi/values-sq-rAL.json new file mode 100644 index 000000000..ce3fdd691 --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/multi/values-sq-rAL.json @@ -0,0 +1,387 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-sq-rAL/values-sq-rAL.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 113, + "endOffset": 164 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sq-rAL/values-sq-rAL.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 113, + "endOffset": 164 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 169, + "endColumn": 107, + "endOffset": 272 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sq-rAL/values-sq-rAL.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 169, + "endColumn": 107, + "endOffset": 272 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 277, + "endColumn": 122, + "endOffset": 395 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sq-rAL/values-sq-rAL.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 277, + "endColumn": 122, + "endOffset": 395 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 400, + "endColumn": 99, + "endOffset": 495 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sq-rAL/values-sq-rAL.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 400, + "endColumn": 99, + "endOffset": 495 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 500, + "endColumn": 111, + "endOffset": 607 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sq-rAL/values-sq-rAL.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 500, + "endColumn": 111, + "endOffset": 607 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 612, + "endColumn": 86, + "endOffset": 694 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sq-rAL/values-sq-rAL.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 612, + "endColumn": 86, + "endOffset": 694 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 699, + "endColumn": 109, + "endOffset": 804 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sq-rAL/values-sq-rAL.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 699, + "endColumn": 109, + "endOffset": 804 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 809, + "endColumn": 122, + "endOffset": 927 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sq-rAL/values-sq-rAL.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 809, + "endColumn": 122, + "endOffset": 927 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 932, + "endColumn": 80, + "endOffset": 1008 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sq-rAL/values-sq-rAL.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 932, + "endColumn": 80, + "endOffset": 1008 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1013, + "endColumn": 78, + "endOffset": 1087 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sq-rAL/values-sq-rAL.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1013, + "endColumn": 78, + "endOffset": 1087 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1092, + "endColumn": 82, + "endOffset": 1170 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sq-rAL/values-sq-rAL.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1092, + "endColumn": 82, + "endOffset": 1170 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1175, + "endColumn": 105, + "endOffset": 1276 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sq-rAL/values-sq-rAL.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1175, + "endColumn": 105, + "endOffset": 1276 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1281, + "endColumn": 104, + "endOffset": 1381 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sq-rAL/values-sq-rAL.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1281, + "endColumn": 104, + "endOffset": 1381 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1386, + "endColumn": 97, + "endOffset": 1479 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sq-rAL/values-sq-rAL.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1386, + "endColumn": 97, + "endOffset": 1479 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1484, + "endColumn": 105, + "endOffset": 1585 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sq-rAL/values-sq-rAL.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1484, + "endColumn": 105, + "endOffset": 1585 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1590, + "endColumn": 102, + "endOffset": 1688 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sq-rAL/values-sq-rAL.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1590, + "endColumn": 102, + "endOffset": 1688 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1693, + "endColumn": 115, + "endOffset": 1804 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sq-rAL/values-sq-rAL.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1693, + "endColumn": 115, + "endOffset": 1804 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1809, + "endColumn": 130, + "endOffset": 1935 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sq-rAL/values-sq-rAL.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1809, + "endColumn": 130, + "endOffset": 1935 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1940, + "endColumn": 98, + "endOffset": 2034 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sq-rAL/values-sq-rAL.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1940, + "endColumn": 98, + "endOffset": 2034 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2039, + "endColumn": 100, + "endOffset": 2135 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sq-rAL/values-sq-rAL.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2039, + "endColumn": 100, + "endOffset": 2135 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/multi/values-sr.json b/android/build/intermediates/blame/res/androidTest/debug/multi/values-sr.json new file mode 100644 index 000000000..5d37fee4b --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/multi/values-sr.json @@ -0,0 +1,387 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-sr/values-sr.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 108, + "endOffset": 159 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sr/values-sr.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 108, + "endOffset": 159 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 164, + "endColumn": 107, + "endOffset": 267 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sr/values-sr.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 164, + "endColumn": 107, + "endOffset": 267 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 272, + "endColumn": 122, + "endOffset": 390 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sr/values-sr.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 272, + "endColumn": 122, + "endOffset": 390 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 395, + "endColumn": 102, + "endOffset": 493 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sr/values-sr.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 395, + "endColumn": 102, + "endOffset": 493 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 498, + "endColumn": 105, + "endOffset": 599 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sr/values-sr.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 498, + "endColumn": 105, + "endOffset": 599 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 604, + "endColumn": 85, + "endOffset": 685 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sr/values-sr.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 604, + "endColumn": 85, + "endOffset": 685 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 690, + "endColumn": 103, + "endOffset": 789 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sr/values-sr.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 690, + "endColumn": 103, + "endOffset": 789 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 794, + "endColumn": 117, + "endOffset": 907 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sr/values-sr.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 794, + "endColumn": 117, + "endOffset": 907 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 912, + "endColumn": 80, + "endOffset": 988 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sr/values-sr.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 912, + "endColumn": 80, + "endOffset": 988 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 993, + "endColumn": 79, + "endOffset": 1068 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sr/values-sr.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 993, + "endColumn": 79, + "endOffset": 1068 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1073, + "endColumn": 87, + "endOffset": 1156 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sr/values-sr.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1073, + "endColumn": 87, + "endOffset": 1156 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1161, + "endColumn": 104, + "endOffset": 1261 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sr/values-sr.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1161, + "endColumn": 104, + "endOffset": 1261 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1266, + "endColumn": 107, + "endOffset": 1369 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sr/values-sr.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1266, + "endColumn": 107, + "endOffset": 1369 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1374, + "endColumn": 100, + "endOffset": 1470 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sr/values-sr.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1374, + "endColumn": 100, + "endOffset": 1470 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1475, + "endColumn": 103, + "endOffset": 1574 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sr/values-sr.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1475, + "endColumn": 103, + "endOffset": 1574 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1579, + "endColumn": 107, + "endOffset": 1682 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sr/values-sr.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1579, + "endColumn": 107, + "endOffset": 1682 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1687, + "endColumn": 100, + "endOffset": 1783 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sr/values-sr.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1687, + "endColumn": 100, + "endOffset": 1783 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1788, + "endColumn": 127, + "endOffset": 1911 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sr/values-sr.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1788, + "endColumn": 127, + "endOffset": 1911 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1916, + "endColumn": 96, + "endOffset": 2008 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sr/values-sr.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1916, + "endColumn": 96, + "endOffset": 2008 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2013, + "endColumn": 100, + "endOffset": 2109 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sr/values-sr.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2013, + "endColumn": 100, + "endOffset": 2109 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/multi/values-sv.json b/android/build/intermediates/blame/res/androidTest/debug/multi/values-sv.json new file mode 100644 index 000000000..b7ef463c9 --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/multi/values-sv.json @@ -0,0 +1,539 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-sv/values-sv.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 105, + "endOffset": 156 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sv/values-sv.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 105, + "endOffset": 156 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 161, + "endColumn": 107, + "endOffset": 264 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sv/values-sv.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 161, + "endColumn": 107, + "endOffset": 264 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 269, + "endColumn": 122, + "endOffset": 387 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sv/values-sv.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 269, + "endColumn": 122, + "endOffset": 387 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 392, + "endColumn": 102, + "endOffset": 490 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sv/values-sv.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 392, + "endColumn": 102, + "endOffset": 490 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 495, + "endColumn": 110, + "endOffset": 601 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sv/values-sv.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 495, + "endColumn": 110, + "endOffset": 601 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 606, + "endColumn": 84, + "endOffset": 686 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sv/values-sv.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 606, + "endColumn": 84, + "endOffset": 686 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 691, + "endColumn": 101, + "endOffset": 788 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sv/values-sv.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 691, + "endColumn": 101, + "endOffset": 788 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 793, + "endColumn": 112, + "endOffset": 901 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sv/values-sv.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 793, + "endColumn": 112, + "endOffset": 901 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 906, + "endColumn": 75, + "endOffset": 977 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sv/values-sv.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 906, + "endColumn": 75, + "endOffset": 977 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 982, + "endColumn": 75, + "endOffset": 1053 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sv/values-sv.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 982, + "endColumn": 75, + "endOffset": 1053 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1058, + "endColumn": 79, + "endOffset": 1133 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sv/values-sv.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1058, + "endColumn": 79, + "endOffset": 1133 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1138, + "endColumn": 105, + "endOffset": 1239 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sv/values-sv.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1138, + "endColumn": 105, + "endOffset": 1239 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1244, + "endColumn": 99, + "endOffset": 1339 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sv/values-sv.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1244, + "endColumn": 99, + "endOffset": 1339 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1344, + "endColumn": 95, + "endOffset": 1435 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sv/values-sv.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1344, + "endColumn": 95, + "endOffset": 1435 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1440, + "endColumn": 104, + "endOffset": 1540 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sv/values-sv.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1440, + "endColumn": 104, + "endOffset": 1540 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1545, + "endColumn": 101, + "endOffset": 1642 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sv/values-sv.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1545, + "endColumn": 101, + "endOffset": 1642 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1647, + "endColumn": 101, + "endOffset": 1744 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sv/values-sv.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1647, + "endColumn": 101, + "endOffset": 1744 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1749, + "endColumn": 116, + "endOffset": 1861 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sv/values-sv.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1749, + "endColumn": 116, + "endOffset": 1861 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1866, + "endColumn": 101, + "endOffset": 1963 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sv/values-sv.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1866, + "endColumn": 101, + "endOffset": 1963 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1968, + "endColumn": 53, + "endOffset": 2017 + }, + "from": { + "file": "/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/values-sv/values-sv.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 53, + "endOffset": 104 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2022, + "endColumn": 73, + "endOffset": 2091 + }, + "from": { + "file": "/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/values-sv/values-sv.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 109, + "endColumn": 73, + "endOffset": 178 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2096, + "endColumn": 78, + "endOffset": 2170 + }, + "from": { + "file": "/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/values-sv/values-sv.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 183, + "endColumn": 78, + "endOffset": 257 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2175, + "endColumn": 70, + "endOffset": 2241 + }, + "from": { + "file": "/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/values-sv/values-sv.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 262, + "endColumn": 70, + "endOffset": 328 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2246, + "endColumn": 59, + "endOffset": 2301 + }, + "from": { + "file": "/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/values-sv/values-sv.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 333, + "endColumn": 59, + "endOffset": 388 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2306, + "endColumn": 55, + "endOffset": 2357 + }, + "from": { + "file": "/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/values-sv/values-sv.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 393, + "endColumn": 55, + "endOffset": 444 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 2362, + "endColumn": 58, + "endOffset": 2416 + }, + "from": { + "file": "/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/values-sv/values-sv.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 449, + "endColumn": 58, + "endOffset": 503 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 2421, + "endColumn": 73, + "endOffset": 2490 + }, + "from": { + "file": "/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/values-sv/values-sv.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 508, + "endColumn": 73, + "endOffset": 577 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 2495, + "endColumn": 100, + "endOffset": 2591 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sv/values-sv.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1968, + "endColumn": 100, + "endOffset": 2064 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/multi/values-sw.json b/android/build/intermediates/blame/res/androidTest/debug/multi/values-sw.json new file mode 100644 index 000000000..a65cba869 --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/multi/values-sw.json @@ -0,0 +1,387 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-sw/values-sw.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 102, + "endOffset": 153 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sw/values-sw.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 102, + "endOffset": 153 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 158, + "endColumn": 107, + "endOffset": 261 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sw/values-sw.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 158, + "endColumn": 107, + "endOffset": 261 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 266, + "endColumn": 122, + "endOffset": 384 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sw/values-sw.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 266, + "endColumn": 122, + "endOffset": 384 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 389, + "endColumn": 97, + "endOffset": 482 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sw/values-sw.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 389, + "endColumn": 97, + "endOffset": 482 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 487, + "endColumn": 107, + "endOffset": 590 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sw/values-sw.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 487, + "endColumn": 107, + "endOffset": 590 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 595, + "endColumn": 89, + "endOffset": 680 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sw/values-sw.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 595, + "endColumn": 89, + "endOffset": 680 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 685, + "endColumn": 104, + "endOffset": 785 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sw/values-sw.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 685, + "endColumn": 104, + "endOffset": 785 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 790, + "endColumn": 116, + "endOffset": 902 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sw/values-sw.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 790, + "endColumn": 116, + "endOffset": 902 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 907, + "endColumn": 81, + "endOffset": 984 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sw/values-sw.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 907, + "endColumn": 81, + "endOffset": 984 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 989, + "endColumn": 82, + "endOffset": 1067 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sw/values-sw.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 989, + "endColumn": 82, + "endOffset": 1067 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1072, + "endColumn": 81, + "endOffset": 1149 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sw/values-sw.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1072, + "endColumn": 81, + "endOffset": 1149 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1154, + "endColumn": 100, + "endOffset": 1250 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sw/values-sw.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1154, + "endColumn": 100, + "endOffset": 1250 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1255, + "endColumn": 108, + "endOffset": 1359 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sw/values-sw.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1255, + "endColumn": 108, + "endOffset": 1359 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1364, + "endColumn": 98, + "endOffset": 1458 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sw/values-sw.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1364, + "endColumn": 98, + "endOffset": 1458 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1463, + "endColumn": 106, + "endOffset": 1565 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sw/values-sw.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1463, + "endColumn": 106, + "endOffset": 1565 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1570, + "endColumn": 108, + "endOffset": 1674 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sw/values-sw.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1570, + "endColumn": 108, + "endOffset": 1674 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1679, + "endColumn": 104, + "endOffset": 1779 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sw/values-sw.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1679, + "endColumn": 104, + "endOffset": 1779 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1784, + "endColumn": 118, + "endOffset": 1898 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sw/values-sw.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1784, + "endColumn": 118, + "endOffset": 1898 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1903, + "endColumn": 96, + "endOffset": 1995 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sw/values-sw.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1903, + "endColumn": 96, + "endOffset": 1995 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2000, + "endColumn": 100, + "endOffset": 2096 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sw/values-sw.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2000, + "endColumn": 100, + "endOffset": 2096 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/multi/values-sw600dp-v13.json b/android/build/intermediates/blame/res/androidTest/debug/multi/values-sw600dp-v13.json new file mode 100644 index 000000000..84a289a02 --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/multi/values-sw600dp-v13.json @@ -0,0 +1,351 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-sw600dp-v13/values-sw600dp-v13.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 68, + "endOffset": 119 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sw600dp-v13/values-sw600dp-v13.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 68, + "endOffset": 119 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 124, + "endColumn": 69, + "endOffset": 189 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sw600dp-v13/values-sw600dp-v13.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 124, + "endColumn": 69, + "endOffset": 189 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 194, + "endColumn": 73, + "endOffset": 263 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sw600dp-v13/values-sw600dp-v13.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 194, + "endColumn": 73, + "endOffset": 263 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 268, + "endColumn": 75, + "endOffset": 339 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sw600dp-v13/values-sw600dp-v13.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 268, + "endColumn": 75, + "endOffset": 339 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 344, + "endColumn": 58, + "endOffset": 398 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sw600dp-v13/values-sw600dp-v13.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 344, + "endColumn": 58, + "endOffset": 398 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 403, + "endColumn": 70, + "endOffset": 469 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sw600dp-v13/values-sw600dp-v13.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 403, + "endColumn": 70, + "endOffset": 469 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 474, + "endColumn": 67, + "endOffset": 537 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sw600dp-v13/values-sw600dp-v13.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 474, + "endColumn": 67, + "endOffset": 537 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 542, + "endColumn": 59, + "endOffset": 597 + }, + "from": { + "file": "/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/values-sw600dp-v13/values-sw600dp-v13.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 59, + "endOffset": 110 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 602, + "endColumn": 69, + "endOffset": 667 + }, + "from": { + "file": "/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/values-sw600dp-v13/values-sw600dp-v13.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 115, + "endColumn": 69, + "endOffset": 180 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 672, + "endColumn": 70, + "endOffset": 738 + }, + "from": { + "file": "/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/values-sw600dp-v13/values-sw600dp-v13.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 185, + "endColumn": 70, + "endOffset": 251 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 743, + "endColumn": 71, + "endOffset": 810 + }, + "from": { + "file": "/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/values-sw600dp-v13/values-sw600dp-v13.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 256, + "endColumn": 71, + "endOffset": 323 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 815, + "endColumn": 57, + "endOffset": 868 + }, + "from": { + "file": "/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/values-sw600dp-v13/values-sw600dp-v13.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 328, + "endColumn": 57, + "endOffset": 381 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 873, + "endColumn": 57, + "endOffset": 926 + }, + "from": { + "file": "/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/values-sw600dp-v13/values-sw600dp-v13.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 386, + "endColumn": 57, + "endOffset": 439 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 931, + "endColumn": 105, + "endOffset": 1032 + }, + "from": { + "file": "/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/values-sw600dp-v13/values-sw600dp-v13.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 444, + "endColumn": 105, + "endOffset": 545 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1037, + "endColumn": 63, + "endOffset": 1096 + }, + "from": { + "file": "/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/values-sw600dp-v13/values-sw600dp-v13.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 550, + "endColumn": 63, + "endOffset": 609 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1101, + "endColumn": 54, + "endOffset": 1151 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sw600dp-v13/values-sw600dp-v13.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 542, + "endColumn": 54, + "endOffset": 592 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1156, + "endColumn": 62, + "endOffset": 1214 + }, + "from": { + "file": "/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/values-sw600dp-v13/values-sw600dp-v13.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 614, + "endColumn": 62, + "endOffset": 672 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1219, + "endLine": 22, + "endColumn": 12, + "endOffset": 1396 + }, + "from": { + "file": "/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/values-sw600dp-v13/values-sw600dp-v13.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 677, + "endLine": 14, + "endColumn": 12, + "endOffset": 854 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/multi/values-ta-rIN.json b/android/build/intermediates/blame/res/androidTest/debug/multi/values-ta-rIN.json new file mode 100644 index 000000000..4ee1a613f --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/multi/values-ta-rIN.json @@ -0,0 +1,387 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ta-rIN/values-ta-rIN.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 113, + "endOffset": 164 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ta-rIN/values-ta-rIN.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 113, + "endOffset": 164 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 169, + "endColumn": 107, + "endOffset": 272 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ta-rIN/values-ta-rIN.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 169, + "endColumn": 107, + "endOffset": 272 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 277, + "endColumn": 122, + "endOffset": 395 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ta-rIN/values-ta-rIN.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 277, + "endColumn": 122, + "endOffset": 395 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 400, + "endColumn": 104, + "endOffset": 500 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ta-rIN/values-ta-rIN.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 400, + "endColumn": 104, + "endOffset": 500 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 505, + "endColumn": 114, + "endOffset": 615 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ta-rIN/values-ta-rIN.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 505, + "endColumn": 114, + "endOffset": 615 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 620, + "endColumn": 88, + "endOffset": 704 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ta-rIN/values-ta-rIN.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 620, + "endColumn": 88, + "endOffset": 704 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 709, + "endColumn": 106, + "endOffset": 811 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ta-rIN/values-ta-rIN.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 709, + "endColumn": 106, + "endOffset": 811 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 816, + "endColumn": 125, + "endOffset": 937 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ta-rIN/values-ta-rIN.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 816, + "endColumn": 125, + "endOffset": 937 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 942, + "endColumn": 80, + "endOffset": 1018 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ta-rIN/values-ta-rIN.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 942, + "endColumn": 80, + "endOffset": 1018 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1023, + "endColumn": 79, + "endOffset": 1098 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ta-rIN/values-ta-rIN.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1023, + "endColumn": 79, + "endOffset": 1098 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1103, + "endColumn": 81, + "endOffset": 1180 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ta-rIN/values-ta-rIN.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1103, + "endColumn": 81, + "endOffset": 1180 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1185, + "endColumn": 101, + "endOffset": 1282 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ta-rIN/values-ta-rIN.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1185, + "endColumn": 101, + "endOffset": 1282 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1287, + "endColumn": 103, + "endOffset": 1386 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ta-rIN/values-ta-rIN.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1287, + "endColumn": 103, + "endOffset": 1386 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1391, + "endColumn": 96, + "endOffset": 1483 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ta-rIN/values-ta-rIN.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1391, + "endColumn": 96, + "endOffset": 1483 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1488, + "endColumn": 109, + "endOffset": 1593 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ta-rIN/values-ta-rIN.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1488, + "endColumn": 109, + "endOffset": 1593 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1598, + "endColumn": 101, + "endOffset": 1695 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ta-rIN/values-ta-rIN.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1598, + "endColumn": 101, + "endOffset": 1695 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1700, + "endColumn": 106, + "endOffset": 1802 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ta-rIN/values-ta-rIN.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1700, + "endColumn": 106, + "endOffset": 1802 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1807, + "endColumn": 118, + "endOffset": 1921 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ta-rIN/values-ta-rIN.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1807, + "endColumn": 118, + "endOffset": 1921 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1926, + "endColumn": 99, + "endOffset": 2021 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ta-rIN/values-ta-rIN.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1926, + "endColumn": 99, + "endOffset": 2021 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2026, + "endColumn": 100, + "endOffset": 2122 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ta-rIN/values-ta-rIN.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2026, + "endColumn": 100, + "endOffset": 2122 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/multi/values-te-rIN.json b/android/build/intermediates/blame/res/androidTest/debug/multi/values-te-rIN.json new file mode 100644 index 000000000..d43a1e140 --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/multi/values-te-rIN.json @@ -0,0 +1,387 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-te-rIN/values-te-rIN.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 113, + "endOffset": 164 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-te-rIN/values-te-rIN.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 113, + "endOffset": 164 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 169, + "endColumn": 107, + "endOffset": 272 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-te-rIN/values-te-rIN.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 169, + "endColumn": 107, + "endOffset": 272 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 277, + "endColumn": 122, + "endOffset": 395 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-te-rIN/values-te-rIN.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 277, + "endColumn": 122, + "endOffset": 395 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 400, + "endColumn": 108, + "endOffset": 504 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-te-rIN/values-te-rIN.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 400, + "endColumn": 108, + "endOffset": 504 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 509, + "endColumn": 110, + "endOffset": 615 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-te-rIN/values-te-rIN.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 509, + "endColumn": 110, + "endOffset": 615 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 620, + "endColumn": 89, + "endOffset": 705 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-te-rIN/values-te-rIN.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 620, + "endColumn": 89, + "endOffset": 705 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 710, + "endColumn": 104, + "endOffset": 810 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-te-rIN/values-te-rIN.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 710, + "endColumn": 104, + "endOffset": 810 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 815, + "endColumn": 124, + "endOffset": 935 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-te-rIN/values-te-rIN.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 815, + "endColumn": 124, + "endOffset": 935 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 940, + "endColumn": 81, + "endOffset": 1017 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-te-rIN/values-te-rIN.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 940, + "endColumn": 81, + "endOffset": 1017 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1022, + "endColumn": 81, + "endOffset": 1099 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-te-rIN/values-te-rIN.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1022, + "endColumn": 81, + "endOffset": 1099 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1104, + "endColumn": 84, + "endOffset": 1184 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-te-rIN/values-te-rIN.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1104, + "endColumn": 84, + "endOffset": 1184 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1189, + "endColumn": 112, + "endOffset": 1297 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-te-rIN/values-te-rIN.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1189, + "endColumn": 112, + "endOffset": 1297 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1302, + "endColumn": 107, + "endOffset": 1405 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-te-rIN/values-te-rIN.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1302, + "endColumn": 107, + "endOffset": 1405 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1410, + "endColumn": 99, + "endOffset": 1505 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-te-rIN/values-te-rIN.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1410, + "endColumn": 99, + "endOffset": 1505 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1510, + "endColumn": 110, + "endOffset": 1616 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-te-rIN/values-te-rIN.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1510, + "endColumn": 110, + "endOffset": 1616 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1621, + "endColumn": 101, + "endOffset": 1718 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-te-rIN/values-te-rIN.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1621, + "endColumn": 101, + "endOffset": 1718 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1723, + "endColumn": 116, + "endOffset": 1835 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-te-rIN/values-te-rIN.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1723, + "endColumn": 116, + "endOffset": 1835 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1840, + "endColumn": 126, + "endOffset": 1962 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-te-rIN/values-te-rIN.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1840, + "endColumn": 126, + "endOffset": 1962 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1967, + "endColumn": 100, + "endOffset": 2063 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-te-rIN/values-te-rIN.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1967, + "endColumn": 100, + "endOffset": 2063 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2068, + "endColumn": 100, + "endOffset": 2164 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-te-rIN/values-te-rIN.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2068, + "endColumn": 100, + "endOffset": 2164 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/multi/values-th.json b/android/build/intermediates/blame/res/androidTest/debug/multi/values-th.json new file mode 100644 index 000000000..ba6c48e84 --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/multi/values-th.json @@ -0,0 +1,539 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-th/values-th.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 104, + "endOffset": 155 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-th/values-th.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 104, + "endOffset": 155 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 160, + "endColumn": 107, + "endOffset": 263 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-th/values-th.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 160, + "endColumn": 107, + "endOffset": 263 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 268, + "endColumn": 122, + "endOffset": 386 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-th/values-th.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 268, + "endColumn": 122, + "endOffset": 386 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 391, + "endColumn": 97, + "endOffset": 484 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-th/values-th.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 391, + "endColumn": 97, + "endOffset": 484 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 489, + "endColumn": 107, + "endOffset": 592 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-th/values-th.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 489, + "endColumn": 107, + "endOffset": 592 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 597, + "endColumn": 88, + "endOffset": 681 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-th/values-th.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 597, + "endColumn": 88, + "endOffset": 681 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 686, + "endColumn": 101, + "endOffset": 783 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-th/values-th.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 686, + "endColumn": 101, + "endOffset": 783 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 788, + "endColumn": 109, + "endOffset": 893 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-th/values-th.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 788, + "endColumn": 109, + "endOffset": 893 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 898, + "endColumn": 76, + "endOffset": 970 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-th/values-th.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 898, + "endColumn": 76, + "endOffset": 970 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 975, + "endColumn": 77, + "endOffset": 1048 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-th/values-th.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 975, + "endColumn": 77, + "endOffset": 1048 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1053, + "endColumn": 80, + "endOffset": 1129 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-th/values-th.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1053, + "endColumn": 80, + "endOffset": 1129 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1134, + "endColumn": 107, + "endOffset": 1237 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-th/values-th.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1134, + "endColumn": 107, + "endOffset": 1237 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1242, + "endColumn": 103, + "endOffset": 1341 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-th/values-th.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1242, + "endColumn": 103, + "endOffset": 1341 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1346, + "endColumn": 97, + "endOffset": 1439 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-th/values-th.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1346, + "endColumn": 97, + "endOffset": 1439 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1444, + "endColumn": 107, + "endOffset": 1547 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-th/values-th.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1444, + "endColumn": 107, + "endOffset": 1547 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1552, + "endColumn": 104, + "endOffset": 1652 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-th/values-th.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1552, + "endColumn": 104, + "endOffset": 1652 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1657, + "endColumn": 100, + "endOffset": 1753 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-th/values-th.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1657, + "endColumn": 100, + "endOffset": 1753 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1758, + "endColumn": 115, + "endOffset": 1869 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-th/values-th.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1758, + "endColumn": 115, + "endOffset": 1869 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1874, + "endColumn": 94, + "endOffset": 1964 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-th/values-th.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1874, + "endColumn": 94, + "endOffset": 1964 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1969, + "endColumn": 53, + "endOffset": 2018 + }, + "from": { + "file": "/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/values-th/values-th.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 53, + "endOffset": 104 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2023, + "endColumn": 71, + "endOffset": 2090 + }, + "from": { + "file": "/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/values-th/values-th.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 109, + "endColumn": 71, + "endOffset": 176 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2095, + "endColumn": 78, + "endOffset": 2169 + }, + "from": { + "file": "/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/values-th/values-th.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 181, + "endColumn": 78, + "endOffset": 255 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2174, + "endColumn": 70, + "endOffset": 2240 + }, + "from": { + "file": "/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/values-th/values-th.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 260, + "endColumn": 70, + "endOffset": 326 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2245, + "endColumn": 59, + "endOffset": 2300 + }, + "from": { + "file": "/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/values-th/values-th.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 331, + "endColumn": 59, + "endOffset": 386 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2305, + "endColumn": 55, + "endOffset": 2356 + }, + "from": { + "file": "/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/values-th/values-th.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 391, + "endColumn": 55, + "endOffset": 442 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 2361, + "endColumn": 58, + "endOffset": 2415 + }, + "from": { + "file": "/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/values-th/values-th.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 447, + "endColumn": 58, + "endOffset": 501 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 2420, + "endColumn": 73, + "endOffset": 2489 + }, + "from": { + "file": "/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/values-th/values-th.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 506, + "endColumn": 73, + "endOffset": 575 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 2494, + "endColumn": 100, + "endOffset": 2590 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-th/values-th.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1969, + "endColumn": 100, + "endOffset": 2065 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/multi/values-tl.json b/android/build/intermediates/blame/res/androidTest/debug/multi/values-tl.json new file mode 100644 index 000000000..abec90613 --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/multi/values-tl.json @@ -0,0 +1,387 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-tl/values-tl.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 118, + "endOffset": 169 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-tl/values-tl.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 118, + "endOffset": 169 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 174, + "endColumn": 107, + "endOffset": 277 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-tl/values-tl.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 174, + "endColumn": 107, + "endOffset": 277 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 282, + "endColumn": 122, + "endOffset": 400 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-tl/values-tl.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 282, + "endColumn": 122, + "endOffset": 400 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 405, + "endColumn": 107, + "endOffset": 508 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-tl/values-tl.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 405, + "endColumn": 107, + "endOffset": 508 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 513, + "endColumn": 116, + "endOffset": 625 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-tl/values-tl.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 513, + "endColumn": 116, + "endOffset": 625 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 630, + "endColumn": 87, + "endOffset": 713 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-tl/values-tl.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 630, + "endColumn": 87, + "endOffset": 713 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 718, + "endColumn": 105, + "endOffset": 819 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-tl/values-tl.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 718, + "endColumn": 105, + "endOffset": 819 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 824, + "endColumn": 120, + "endOffset": 940 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-tl/values-tl.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 824, + "endColumn": 120, + "endOffset": 940 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 945, + "endColumn": 78, + "endOffset": 1019 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-tl/values-tl.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 945, + "endColumn": 78, + "endOffset": 1019 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1024, + "endColumn": 77, + "endOffset": 1097 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-tl/values-tl.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1024, + "endColumn": 77, + "endOffset": 1097 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1102, + "endColumn": 83, + "endOffset": 1181 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-tl/values-tl.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1102, + "endColumn": 83, + "endOffset": 1181 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1186, + "endColumn": 108, + "endOffset": 1290 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-tl/values-tl.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1186, + "endColumn": 108, + "endOffset": 1290 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1295, + "endColumn": 110, + "endOffset": 1401 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-tl/values-tl.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1295, + "endColumn": 110, + "endOffset": 1401 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1406, + "endColumn": 100, + "endOffset": 1502 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-tl/values-tl.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1406, + "endColumn": 100, + "endOffset": 1502 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1507, + "endColumn": 109, + "endOffset": 1612 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-tl/values-tl.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1507, + "endColumn": 109, + "endOffset": 1612 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1617, + "endColumn": 116, + "endOffset": 1729 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-tl/values-tl.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1617, + "endColumn": 116, + "endOffset": 1729 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1734, + "endColumn": 107, + "endOffset": 1837 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-tl/values-tl.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1734, + "endColumn": 107, + "endOffset": 1837 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1842, + "endColumn": 122, + "endOffset": 1960 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-tl/values-tl.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1842, + "endColumn": 122, + "endOffset": 1960 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1965, + "endColumn": 101, + "endOffset": 2062 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-tl/values-tl.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1965, + "endColumn": 101, + "endOffset": 2062 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2067, + "endColumn": 100, + "endOffset": 2163 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-tl/values-tl.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2067, + "endColumn": 100, + "endOffset": 2163 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/multi/values-tr.json b/android/build/intermediates/blame/res/androidTest/debug/multi/values-tr.json new file mode 100644 index 000000000..af9ec2083 --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/multi/values-tr.json @@ -0,0 +1,539 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-tr/values-tr.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 104, + "endOffset": 155 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-tr/values-tr.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 104, + "endOffset": 155 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 160, + "endColumn": 107, + "endOffset": 263 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-tr/values-tr.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 160, + "endColumn": 107, + "endOffset": 263 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 268, + "endColumn": 122, + "endOffset": 386 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-tr/values-tr.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 268, + "endColumn": 122, + "endOffset": 386 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 391, + "endColumn": 98, + "endOffset": 485 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-tr/values-tr.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 391, + "endColumn": 98, + "endOffset": 485 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 490, + "endColumn": 111, + "endOffset": 597 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-tr/values-tr.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 490, + "endColumn": 111, + "endOffset": 597 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 602, + "endColumn": 89, + "endOffset": 687 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-tr/values-tr.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 602, + "endColumn": 89, + "endOffset": 687 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 692, + "endColumn": 105, + "endOffset": 793 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-tr/values-tr.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 692, + "endColumn": 105, + "endOffset": 793 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 798, + "endColumn": 119, + "endOffset": 913 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-tr/values-tr.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 798, + "endColumn": 119, + "endOffset": 913 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 918, + "endColumn": 78, + "endOffset": 992 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-tr/values-tr.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 918, + "endColumn": 78, + "endOffset": 992 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 997, + "endColumn": 75, + "endOffset": 1068 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-tr/values-tr.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 997, + "endColumn": 75, + "endOffset": 1068 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1073, + "endColumn": 78, + "endOffset": 1147 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-tr/values-tr.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1073, + "endColumn": 78, + "endOffset": 1147 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1152, + "endColumn": 106, + "endOffset": 1254 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-tr/values-tr.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1152, + "endColumn": 106, + "endOffset": 1254 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1259, + "endColumn": 104, + "endOffset": 1359 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-tr/values-tr.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1259, + "endColumn": 104, + "endOffset": 1359 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1364, + "endColumn": 95, + "endOffset": 1455 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-tr/values-tr.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1364, + "endColumn": 95, + "endOffset": 1455 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1460, + "endColumn": 106, + "endOffset": 1562 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-tr/values-tr.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1460, + "endColumn": 106, + "endOffset": 1562 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1567, + "endColumn": 101, + "endOffset": 1664 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-tr/values-tr.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1567, + "endColumn": 101, + "endOffset": 1664 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1669, + "endColumn": 107, + "endOffset": 1772 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-tr/values-tr.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1669, + "endColumn": 107, + "endOffset": 1772 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1777, + "endColumn": 118, + "endOffset": 1891 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-tr/values-tr.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1777, + "endColumn": 118, + "endOffset": 1891 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1896, + "endColumn": 97, + "endOffset": 1989 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-tr/values-tr.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1896, + "endColumn": 97, + "endOffset": 1989 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1994, + "endColumn": 53, + "endOffset": 2043 + }, + "from": { + "file": "/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/values-tr/values-tr.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 53, + "endOffset": 104 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2048, + "endColumn": 68, + "endOffset": 2112 + }, + "from": { + "file": "/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/values-tr/values-tr.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 109, + "endColumn": 68, + "endOffset": 173 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2117, + "endColumn": 78, + "endOffset": 2191 + }, + "from": { + "file": "/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/values-tr/values-tr.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 178, + "endColumn": 78, + "endOffset": 252 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2196, + "endColumn": 70, + "endOffset": 2262 + }, + "from": { + "file": "/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/values-tr/values-tr.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 257, + "endColumn": 70, + "endOffset": 323 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2267, + "endColumn": 68, + "endOffset": 2331 + }, + "from": { + "file": "/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/values-tr/values-tr.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 328, + "endColumn": 68, + "endOffset": 392 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2336, + "endColumn": 55, + "endOffset": 2387 + }, + "from": { + "file": "/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/values-tr/values-tr.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 397, + "endColumn": 55, + "endOffset": 448 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 2392, + "endColumn": 58, + "endOffset": 2446 + }, + "from": { + "file": "/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/values-tr/values-tr.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 453, + "endColumn": 58, + "endOffset": 507 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 2451, + "endColumn": 73, + "endOffset": 2520 + }, + "from": { + "file": "/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/values-tr/values-tr.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 512, + "endColumn": 73, + "endOffset": 581 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 2525, + "endColumn": 100, + "endOffset": 2621 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-tr/values-tr.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1994, + "endColumn": 100, + "endOffset": 2090 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/multi/values-uk.json b/android/build/intermediates/blame/res/androidTest/debug/multi/values-uk.json new file mode 100644 index 000000000..8f7c9ca24 --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/multi/values-uk.json @@ -0,0 +1,387 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-uk/values-uk.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 109, + "endOffset": 160 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-uk/values-uk.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 109, + "endOffset": 160 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 165, + "endColumn": 107, + "endOffset": 268 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-uk/values-uk.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 165, + "endColumn": 107, + "endOffset": 268 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 273, + "endColumn": 122, + "endOffset": 391 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-uk/values-uk.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 273, + "endColumn": 122, + "endOffset": 391 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 396, + "endColumn": 101, + "endOffset": 493 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-uk/values-uk.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 396, + "endColumn": 101, + "endOffset": 493 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 498, + "endColumn": 105, + "endOffset": 599 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-uk/values-uk.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 498, + "endColumn": 105, + "endOffset": 599 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 604, + "endColumn": 85, + "endOffset": 685 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-uk/values-uk.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 604, + "endColumn": 85, + "endOffset": 685 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 690, + "endColumn": 107, + "endOffset": 793 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-uk/values-uk.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 690, + "endColumn": 107, + "endOffset": 793 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 798, + "endColumn": 117, + "endOffset": 911 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-uk/values-uk.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 798, + "endColumn": 117, + "endOffset": 911 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 916, + "endColumn": 78, + "endOffset": 990 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-uk/values-uk.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 916, + "endColumn": 78, + "endOffset": 990 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 995, + "endColumn": 79, + "endOffset": 1070 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-uk/values-uk.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 995, + "endColumn": 79, + "endOffset": 1070 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1075, + "endColumn": 80, + "endOffset": 1151 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-uk/values-uk.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1075, + "endColumn": 80, + "endOffset": 1151 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1156, + "endColumn": 105, + "endOffset": 1257 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-uk/values-uk.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1156, + "endColumn": 105, + "endOffset": 1257 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1262, + "endColumn": 106, + "endOffset": 1364 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-uk/values-uk.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1262, + "endColumn": 106, + "endOffset": 1364 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1369, + "endColumn": 97, + "endOffset": 1462 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-uk/values-uk.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1369, + "endColumn": 97, + "endOffset": 1462 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1467, + "endColumn": 107, + "endOffset": 1570 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-uk/values-uk.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1467, + "endColumn": 107, + "endOffset": 1570 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1575, + "endColumn": 105, + "endOffset": 1676 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-uk/values-uk.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1575, + "endColumn": 105, + "endOffset": 1676 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1681, + "endColumn": 108, + "endOffset": 1785 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-uk/values-uk.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1681, + "endColumn": 108, + "endOffset": 1785 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1790, + "endColumn": 123, + "endOffset": 1909 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-uk/values-uk.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1790, + "endColumn": 123, + "endOffset": 1909 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1914, + "endColumn": 99, + "endOffset": 2009 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-uk/values-uk.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1914, + "endColumn": 99, + "endOffset": 2009 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2014, + "endColumn": 100, + "endOffset": 2110 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-uk/values-uk.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2014, + "endColumn": 100, + "endOffset": 2110 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/multi/values-ur-rPK.json b/android/build/intermediates/blame/res/androidTest/debug/multi/values-ur-rPK.json new file mode 100644 index 000000000..dff2cbc2d --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/multi/values-ur-rPK.json @@ -0,0 +1,387 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ur-rPK/values-ur-rPK.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 109, + "endOffset": 160 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ur-rPK/values-ur-rPK.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 109, + "endOffset": 160 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 165, + "endColumn": 107, + "endOffset": 268 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ur-rPK/values-ur-rPK.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 165, + "endColumn": 107, + "endOffset": 268 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 273, + "endColumn": 122, + "endOffset": 391 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ur-rPK/values-ur-rPK.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 273, + "endColumn": 122, + "endOffset": 391 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 396, + "endColumn": 105, + "endOffset": 497 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ur-rPK/values-ur-rPK.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 396, + "endColumn": 105, + "endOffset": 497 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 502, + "endColumn": 108, + "endOffset": 606 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ur-rPK/values-ur-rPK.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 502, + "endColumn": 108, + "endOffset": 606 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 611, + "endColumn": 85, + "endOffset": 692 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ur-rPK/values-ur-rPK.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 611, + "endColumn": 85, + "endOffset": 692 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 697, + "endColumn": 103, + "endOffset": 796 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ur-rPK/values-ur-rPK.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 697, + "endColumn": 103, + "endOffset": 796 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 801, + "endColumn": 119, + "endOffset": 916 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ur-rPK/values-ur-rPK.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 801, + "endColumn": 119, + "endOffset": 916 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 921, + "endColumn": 75, + "endOffset": 992 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ur-rPK/values-ur-rPK.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 921, + "endColumn": 75, + "endOffset": 992 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 997, + "endColumn": 75, + "endOffset": 1068 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ur-rPK/values-ur-rPK.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 997, + "endColumn": 75, + "endOffset": 1068 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1073, + "endColumn": 84, + "endOffset": 1153 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ur-rPK/values-ur-rPK.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1073, + "endColumn": 84, + "endOffset": 1153 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1158, + "endColumn": 107, + "endOffset": 1261 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ur-rPK/values-ur-rPK.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1158, + "endColumn": 107, + "endOffset": 1261 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1266, + "endColumn": 108, + "endOffset": 1370 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ur-rPK/values-ur-rPK.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1266, + "endColumn": 108, + "endOffset": 1370 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1375, + "endColumn": 101, + "endOffset": 1472 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ur-rPK/values-ur-rPK.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1375, + "endColumn": 101, + "endOffset": 1472 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1477, + "endColumn": 110, + "endOffset": 1583 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ur-rPK/values-ur-rPK.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1477, + "endColumn": 110, + "endOffset": 1583 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1588, + "endColumn": 99, + "endOffset": 1683 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ur-rPK/values-ur-rPK.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1588, + "endColumn": 99, + "endOffset": 1683 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1688, + "endColumn": 107, + "endOffset": 1791 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ur-rPK/values-ur-rPK.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1688, + "endColumn": 107, + "endOffset": 1791 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1796, + "endColumn": 128, + "endOffset": 1920 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ur-rPK/values-ur-rPK.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1796, + "endColumn": 128, + "endOffset": 1920 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1925, + "endColumn": 97, + "endOffset": 2018 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ur-rPK/values-ur-rPK.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1925, + "endColumn": 97, + "endOffset": 2018 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2023, + "endColumn": 102, + "endOffset": 2121 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ur-rPK/values-ur-rPK.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2023, + "endColumn": 102, + "endOffset": 2121 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/multi/values-uz-rUZ.json b/android/build/intermediates/blame/res/androidTest/debug/multi/values-uz-rUZ.json new file mode 100644 index 000000000..df2f76a5b --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/multi/values-uz-rUZ.json @@ -0,0 +1,368 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-uz-rUZ/values-uz-rUZ.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 104, + "endOffset": 155 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-uz-rUZ/values-uz-rUZ.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 104, + "endOffset": 155 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 160, + "endColumn": 107, + "endOffset": 263 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-uz-rUZ/values-uz-rUZ.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 160, + "endColumn": 107, + "endOffset": 263 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 268, + "endColumn": 122, + "endOffset": 386 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-uz-rUZ/values-uz-rUZ.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 268, + "endColumn": 122, + "endOffset": 386 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 391, + "endColumn": 103, + "endOffset": 490 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-uz-rUZ/values-uz-rUZ.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 391, + "endColumn": 103, + "endOffset": 490 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 495, + "endColumn": 116, + "endOffset": 607 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-uz-rUZ/values-uz-rUZ.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 495, + "endColumn": 116, + "endOffset": 607 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 612, + "endColumn": 85, + "endOffset": 693 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-uz-rUZ/values-uz-rUZ.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 612, + "endColumn": 85, + "endOffset": 693 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 698, + "endColumn": 110, + "endOffset": 804 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-uz-rUZ/values-uz-rUZ.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 698, + "endColumn": 110, + "endOffset": 804 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 809, + "endColumn": 115, + "endOffset": 920 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-uz-rUZ/values-uz-rUZ.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 809, + "endColumn": 115, + "endOffset": 920 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 925, + "endColumn": 79, + "endOffset": 1000 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-uz-rUZ/values-uz-rUZ.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 925, + "endColumn": 79, + "endOffset": 1000 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1005, + "endColumn": 78, + "endOffset": 1079 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-uz-rUZ/values-uz-rUZ.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1005, + "endColumn": 78, + "endOffset": 1079 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1084, + "endColumn": 83, + "endOffset": 1163 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-uz-rUZ/values-uz-rUZ.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1084, + "endColumn": 83, + "endOffset": 1163 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1168, + "endColumn": 108, + "endOffset": 1272 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-uz-rUZ/values-uz-rUZ.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1168, + "endColumn": 108, + "endOffset": 1272 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1277, + "endColumn": 106, + "endOffset": 1379 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-uz-rUZ/values-uz-rUZ.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1277, + "endColumn": 106, + "endOffset": 1379 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1384, + "endColumn": 100, + "endOffset": 1480 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-uz-rUZ/values-uz-rUZ.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1384, + "endColumn": 100, + "endOffset": 1480 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1485, + "endColumn": 107, + "endOffset": 1588 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-uz-rUZ/values-uz-rUZ.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1485, + "endColumn": 107, + "endOffset": 1588 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1593, + "endColumn": 104, + "endOffset": 1693 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-uz-rUZ/values-uz-rUZ.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1593, + "endColumn": 104, + "endOffset": 1693 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1698, + "endColumn": 104, + "endOffset": 1798 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-uz-rUZ/values-uz-rUZ.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1698, + "endColumn": 104, + "endOffset": 1798 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1803, + "endColumn": 98, + "endOffset": 1897 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-uz-rUZ/values-uz-rUZ.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1803, + "endColumn": 98, + "endOffset": 1897 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1902, + "endColumn": 100, + "endOffset": 1998 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-uz-rUZ/values-uz-rUZ.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1902, + "endColumn": 100, + "endOffset": 1998 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/multi/values-v11.json b/android/build/intermediates/blame/res/androidTest/debug/multi/values-v11.json new file mode 100644 index 000000000..6929bf320 --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/multi/values-v11.json @@ -0,0 +1,354 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v11/values-v11.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endLine": 7, + "endColumn": 12, + "endOffset": 469 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v11/values-v11.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endLine": 7, + "endColumn": 12, + "endOffset": 469 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 474, + "endLine": 13, + "endColumn": 12, + "endOffset": 894 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v11/values-v11.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 474, + "endLine": 13, + "endColumn": 12, + "endOffset": 894 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 899, + "endLine": 19, + "endColumn": 12, + "endOffset": 1322 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v11/values-v11.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 899, + "endLine": 19, + "endColumn": 12, + "endOffset": 1322 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1327, + "endLine": 25, + "endColumn": 12, + "endOffset": 1748 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v11/values-v11.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1327, + "endLine": 25, + "endColumn": 12, + "endOffset": 1748 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 1753, + "endLine": 31, + "endColumn": 12, + "endOffset": 2175 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v11/values-v11.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 1753, + "endLine": 31, + "endColumn": 12, + "endOffset": 2175 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 2180, + "endLine": 37, + "endColumn": 12, + "endOffset": 2600 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v11/values-v11.xml", + "position": { + "startLine": 32, + "startColumn": 4, + "startOffset": 2180, + "endLine": 37, + "endColumn": 12, + "endOffset": 2600 + } + } + }, + { + "to": { + "startLine": 38, + "startColumn": 4, + "startOffset": 2605, + "endColumn": 88, + "endOffset": 2689 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v11/values-v11.xml", + "position": { + "startLine": 38, + "startColumn": 4, + "startOffset": 2605, + "endColumn": 88, + "endOffset": 2689 + } + } + }, + { + "to": { + "startLine": 39, + "startColumn": 4, + "startOffset": 2694, + "endColumn": 100, + "endOffset": 2790 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v11/values-v11.xml", + "position": { + "startLine": 39, + "startColumn": 4, + "startOffset": 2694, + "endColumn": 100, + "endOffset": 2790 + } + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 2795, + "endLine": 44, + "endColumn": 12, + "endOffset": 3198 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v11/values-v11.xml", + "position": { + "startLine": 40, + "startColumn": 4, + "startOffset": 2795, + "endLine": 44, + "endColumn": 12, + "endOffset": 3198 + } + } + }, + { + "to": { + "startLine": 45, + "startColumn": 4, + "startOffset": 3203, + "endLine": 49, + "endColumn": 12, + "endOffset": 3618 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v11/values-v11.xml", + "position": { + "startLine": 45, + "startColumn": 4, + "startOffset": 3203, + "endLine": 49, + "endColumn": 12, + "endOffset": 3618 + } + } + }, + { + "to": { + "startLine": 50, + "startColumn": 4, + "startOffset": 3623, + "endLine": 51, + "endColumn": 12, + "endOffset": 3725 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v11/values-v11.xml", + "position": { + "startLine": 50, + "startColumn": 4, + "startOffset": 3623, + "endLine": 51, + "endColumn": 12, + "endOffset": 3725 + } + } + }, + { + "to": { + "startLine": 52, + "startColumn": 4, + "startOffset": 3730, + "endLine": 53, + "endColumn": 12, + "endOffset": 3854 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v11/values-v11.xml", + "position": { + "startLine": 52, + "startColumn": 4, + "startOffset": 3730, + "endLine": 53, + "endColumn": 12, + "endOffset": 3854 + } + } + }, + { + "to": { + "startLine": 54, + "startColumn": 4, + "startOffset": 3859, + "endColumn": 70, + "endOffset": 3925 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v11/values-v11.xml", + "position": { + "startLine": 54, + "startColumn": 4, + "startOffset": 3859, + "endColumn": 70, + "endOffset": 3925 + } + } + }, + { + "to": { + "startLine": 55, + "startColumn": 4, + "startOffset": 3930, + "endColumn": 82, + "endOffset": 4008 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v11/values-v11.xml", + "position": { + "startLine": 55, + "startColumn": 4, + "startOffset": 3930, + "endColumn": 82, + "endOffset": 4008 + } + } + }, + { + "to": { + "startLine": 56, + "startColumn": 4, + "startOffset": 4013, + "endLine": 106, + "endColumn": 12, + "endOffset": 7716 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v11/values-v11.xml", + "position": { + "startLine": 56, + "startColumn": 4, + "startOffset": 4013, + "endLine": 106, + "endColumn": 12, + "endOffset": 7716 + } + } + }, + { + "to": { + "startLine": 107, + "startColumn": 4, + "startOffset": 7721, + "endLine": 158, + "endColumn": 12, + "endOffset": 11564 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v11/values-v11.xml", + "position": { + "startLine": 107, + "startColumn": 4, + "startOffset": 7721, + "endLine": 158, + "endColumn": 12, + "endOffset": 11564 + } + } + }, + { + "to": { + "startLine": 159, + "startColumn": 4, + "startOffset": 11569, + "endColumn": 90, + "endOffset": 11655 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v11/values-v11.xml", + "position": { + "startLine": 159, + "startColumn": 4, + "startOffset": 11569, + "endColumn": 90, + "endOffset": 11655 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/multi/values-v12.json b/android/build/intermediates/blame/res/androidTest/debug/multi/values-v12.json new file mode 100644 index 000000000..28dad6e8e --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/multi/values-v12.json @@ -0,0 +1,87 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v12/values-v12.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endLine": 4, + "endColumn": 12, + "endOffset": 274 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v12/values-v12.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endLine": 4, + "endColumn": 12, + "endOffset": 274 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 279, + "endLine": 7, + "endColumn": 12, + "endOffset": 474 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v12/values-v12.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 279, + "endLine": 7, + "endColumn": 12, + "endOffset": 474 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 479, + "endColumn": 118, + "endOffset": 593 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v12/values-v12.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 479, + "endColumn": 118, + "endOffset": 593 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 598, + "endColumn": 94, + "endOffset": 688 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v12/values-v12.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 598, + "endColumn": 94, + "endOffset": 688 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/multi/values-v13.json b/android/build/intermediates/blame/res/androidTest/debug/multi/values-v13.json new file mode 100644 index 000000000..bad1a18e0 --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/multi/values-v13.json @@ -0,0 +1,26 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v13/values-v13.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 58, + "endOffset": 109 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v13/values-v13.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 58, + "endOffset": 109 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/multi/values-v14.json b/android/build/intermediates/blame/res/androidTest/debug/multi/values-v14.json new file mode 100644 index 000000000..8858ab679 --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/multi/values-v14.json @@ -0,0 +1,205 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v14/values-v14.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endLine": 6, + "endColumn": 12, + "endOffset": 326 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v14/values-v14.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endLine": 6, + "endColumn": 12, + "endOffset": 326 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 331, + "endColumn": 70, + "endOffset": 397 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v14/values-v14.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 331, + "endColumn": 70, + "endOffset": 397 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 402, + "endColumn": 82, + "endOffset": 480 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v14/values-v14.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 402, + "endColumn": 82, + "endOffset": 480 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 485, + "endLine": 14, + "endColumn": 12, + "endOffset": 890 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v14/values-v14.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 485, + "endLine": 14, + "endColumn": 12, + "endOffset": 890 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 895, + "endLine": 20, + "endColumn": 12, + "endOffset": 1312 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v14/values-v14.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 895, + "endLine": 20, + "endColumn": 12, + "endOffset": 1312 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1317, + "endColumn": 119, + "endOffset": 1432 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v14/values-v14.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1317, + "endColumn": 119, + "endOffset": 1432 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 1437, + "endColumn": 62, + "endOffset": 1495 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v14/values-v14.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 1437, + "endColumn": 62, + "endOffset": 1495 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 1500, + "endLine": 25, + "endColumn": 12, + "endOffset": 1649 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v14/values-v14.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 1500, + "endLine": 25, + "endColumn": 12, + "endOffset": 1649 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 1654, + "endColumn": 62, + "endOffset": 1712 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v14/values-v14.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 1654, + "endColumn": 62, + "endOffset": 1712 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 1717, + "endColumn": 131, + "endOffset": 1844 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v14/values-v14.xml", + "position": { + "startLine": 27, + "startColumn": 4, + "startOffset": 1717, + "endColumn": 131, + "endOffset": 1844 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/multi/values-v17.json b/android/build/intermediates/blame/res/androidTest/debug/multi/values-v17.json new file mode 100644 index 000000000..f28bbc372 --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/multi/values-v17.json @@ -0,0 +1,301 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v17/values-v17.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endLine": 4, + "endColumn": 12, + "endOffset": 223 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v17/values-v17.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endLine": 4, + "endColumn": 12, + "endOffset": 223 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 228, + "endLine": 8, + "endColumn": 12, + "endOffset": 451 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v17/values-v17.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 228, + "endLine": 8, + "endColumn": 12, + "endOffset": 451 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 456, + "endLine": 11, + "endColumn": 12, + "endOffset": 609 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v17/values-v17.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 456, + "endLine": 11, + "endColumn": 12, + "endOffset": 609 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 614, + "endLine": 14, + "endColumn": 12, + "endOffset": 759 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v17/values-v17.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 614, + "endLine": 14, + "endColumn": 12, + "endOffset": 759 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 764, + "endLine": 17, + "endColumn": 12, + "endOffset": 931 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v17/values-v17.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 764, + "endLine": 17, + "endColumn": 12, + "endOffset": 931 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 936, + "endLine": 21, + "endColumn": 12, + "endOffset": 1159 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v17/values-v17.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 936, + "endLine": 21, + "endColumn": 12, + "endOffset": 1159 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 1164, + "endLine": 25, + "endColumn": 12, + "endOffset": 1401 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v17/values-v17.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 1164, + "endLine": 25, + "endColumn": 12, + "endOffset": 1401 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 1406, + "endLine": 28, + "endColumn": 12, + "endOffset": 1572 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v17/values-v17.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 1406, + "endLine": 28, + "endColumn": 12, + "endOffset": 1572 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 1577, + "endLine": 31, + "endColumn": 12, + "endOffset": 1746 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v17/values-v17.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 1577, + "endLine": 31, + "endColumn": 12, + "endOffset": 1746 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 1751, + "endLine": 34, + "endColumn": 12, + "endOffset": 1915 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v17/values-v17.xml", + "position": { + "startLine": 32, + "startColumn": 4, + "startOffset": 1751, + "endLine": 34, + "endColumn": 12, + "endOffset": 1915 + } + } + }, + { + "to": { + "startLine": 35, + "startColumn": 4, + "startOffset": 1920, + "endLine": 38, + "endColumn": 12, + "endOffset": 2188 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v17/values-v17.xml", + "position": { + "startLine": 35, + "startColumn": 4, + "startOffset": 1920, + "endLine": 38, + "endColumn": 12, + "endOffset": 2188 + } + } + }, + { + "to": { + "startLine": 39, + "startColumn": 4, + "startOffset": 2193, + "endLine": 41, + "endColumn": 12, + "endOffset": 2388 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v17/values-v17.xml", + "position": { + "startLine": 39, + "startColumn": 4, + "startOffset": 2193, + "endLine": 41, + "endColumn": 12, + "endOffset": 2388 + } + } + }, + { + "to": { + "startLine": 42, + "startColumn": 4, + "startOffset": 2393, + "endLine": 45, + "endColumn": 12, + "endOffset": 2592 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v17/values-v17.xml", + "position": { + "startLine": 42, + "startColumn": 4, + "startOffset": 2393, + "endLine": 45, + "endColumn": 12, + "endOffset": 2592 + } + } + }, + { + "to": { + "startLine": 46, + "startColumn": 4, + "startOffset": 2597, + "endLine": 49, + "endColumn": 12, + "endOffset": 2921 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v17/values-v17.xml", + "position": { + "startLine": 46, + "startColumn": 4, + "startOffset": 2597, + "endLine": 49, + "endColumn": 12, + "endOffset": 2921 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/multi/values-v18.json b/android/build/intermediates/blame/res/androidTest/debug/multi/values-v18.json new file mode 100644 index 000000000..17f836ba4 --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/multi/values-v18.json @@ -0,0 +1,26 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v18/values-v18.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 48, + "endOffset": 99 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v18/values-v18.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 48, + "endOffset": 99 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/multi/values-v21.json b/android/build/intermediates/blame/res/androidTest/debug/multi/values-v21.json new file mode 100644 index 000000000..d1aacd129 --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/multi/values-v21.json @@ -0,0 +1,1702 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v21/values-v21.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endLine": 7, + "endColumn": 12, + "endOffset": 351 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-v21/values-v21.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endLine": 7, + "endColumn": 12, + "endOffset": 351 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 356, + "endColumn": 90, + "endOffset": 442 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 90, + "endOffset": 141 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 447, + "endColumn": 102, + "endOffset": 545 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 146, + "endColumn": 102, + "endOffset": 244 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 550, + "endColumn": 102, + "endOffset": 648 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 249, + "endColumn": 102, + "endOffset": 347 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 653, + "endColumn": 104, + "endOffset": 753 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 352, + "endColumn": 104, + "endOffset": 452 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 758, + "endColumn": 106, + "endOffset": 860 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 457, + "endColumn": 106, + "endOffset": 559 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 865, + "endColumn": 108, + "endOffset": 969 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 564, + "endColumn": 108, + "endOffset": 668 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 974, + "endColumn": 108, + "endOffset": 1078 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 673, + "endColumn": 108, + "endOffset": 777 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1083, + "endColumn": 108, + "endOffset": 1187 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 782, + "endColumn": 108, + "endOffset": 886 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1192, + "endColumn": 108, + "endOffset": 1296 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 891, + "endColumn": 108, + "endOffset": 995 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1301, + "endColumn": 108, + "endOffset": 1405 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1000, + "endColumn": 108, + "endOffset": 1104 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1410, + "endColumn": 106, + "endOffset": 1512 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1109, + "endColumn": 106, + "endOffset": 1211 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1517, + "endColumn": 102, + "endOffset": 1615 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1216, + "endColumn": 102, + "endOffset": 1314 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1620, + "endColumn": 118, + "endOffset": 1734 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1319, + "endColumn": 118, + "endOffset": 1433 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1739, + "endLine": 22, + "endColumn": 12, + "endOffset": 1889 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1438, + "endLine": 16, + "endColumn": 12, + "endOffset": 1588 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 1894, + "endLine": 24, + "endColumn": 12, + "endOffset": 2044 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1593, + "endLine": 18, + "endColumn": 12, + "endOffset": 1743 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2049, + "endColumn": 104, + "endOffset": 2149 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1748, + "endColumn": 104, + "endOffset": 1848 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2154, + "endColumn": 120, + "endOffset": 2270 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1853, + "endColumn": 120, + "endOffset": 1969 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 2275, + "endColumn": 100, + "endOffset": 2371 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1974, + "endColumn": 100, + "endOffset": 2070 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 2376, + "endLine": 29, + "endColumn": 12, + "endOffset": 2518 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2075, + "endLine": 23, + "endColumn": 12, + "endOffset": 2217 + } + } + }, + { + "to": { + "startLine": 30, + "startColumn": 4, + "startOffset": 2523, + "endLine": 31, + "endColumn": 12, + "endOffset": 2659 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2222, + "endLine": 25, + "endColumn": 12, + "endOffset": 2358 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 2664, + "endColumn": 102, + "endOffset": 2762 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2363, + "endColumn": 102, + "endOffset": 2461 + } + } + }, + { + "to": { + "startLine": 33, + "startColumn": 4, + "startOffset": 2767, + "endColumn": 118, + "endOffset": 2881 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 27, + "startColumn": 4, + "startOffset": 2466, + "endColumn": 118, + "endOffset": 2580 + } + } + }, + { + "to": { + "startLine": 34, + "startColumn": 4, + "startOffset": 2886, + "endColumn": 106, + "endOffset": 2988 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 28, + "startColumn": 4, + "startOffset": 2585, + "endColumn": 106, + "endOffset": 2687 + } + } + }, + { + "to": { + "startLine": 35, + "startColumn": 4, + "startOffset": 2993, + "endColumn": 102, + "endOffset": 3091 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 2692, + "endColumn": 102, + "endOffset": 2790 + } + } + }, + { + "to": { + "startLine": 36, + "startColumn": 4, + "startOffset": 3096, + "endLine": 37, + "endColumn": 12, + "endOffset": 3246 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 30, + "startColumn": 4, + "startOffset": 2795, + "endLine": 31, + "endColumn": 12, + "endOffset": 2945 + } + } + }, + { + "to": { + "startLine": 38, + "startColumn": 4, + "startOffset": 3251, + "endLine": 39, + "endColumn": 12, + "endOffset": 3417 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 32, + "startColumn": 4, + "startOffset": 2950, + "endLine": 33, + "endColumn": 12, + "endOffset": 3116 + } + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 3422, + "endLine": 41, + "endColumn": 12, + "endOffset": 3566 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 34, + "startColumn": 4, + "startOffset": 3121, + "endLine": 35, + "endColumn": 12, + "endOffset": 3265 + } + } + }, + { + "to": { + "startLine": 42, + "startColumn": 4, + "startOffset": 3571, + "endLine": 43, + "endColumn": 12, + "endOffset": 3731 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 36, + "startColumn": 4, + "startOffset": 3270, + "endLine": 37, + "endColumn": 12, + "endOffset": 3430 + } + } + }, + { + "to": { + "startLine": 44, + "startColumn": 4, + "startOffset": 3736, + "endLine": 45, + "endColumn": 12, + "endOffset": 3888 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 38, + "startColumn": 4, + "startOffset": 3435, + "endLine": 39, + "endColumn": 12, + "endOffset": 3587 + } + } + }, + { + "to": { + "startLine": 46, + "startColumn": 4, + "startOffset": 3893, + "endLine": 47, + "endColumn": 12, + "endOffset": 4039 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 40, + "startColumn": 4, + "startOffset": 3592, + "endLine": 41, + "endColumn": 12, + "endOffset": 3738 + } + } + }, + { + "to": { + "startLine": 48, + "startColumn": 4, + "startOffset": 4044, + "endColumn": 118, + "endOffset": 4158 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 42, + "startColumn": 4, + "startOffset": 3743, + "endColumn": 118, + "endOffset": 3857 + } + } + }, + { + "to": { + "startLine": 49, + "startColumn": 4, + "startOffset": 4163, + "endLine": 50, + "endColumn": 12, + "endOffset": 4307 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 43, + "startColumn": 4, + "startOffset": 3862, + "endLine": 44, + "endColumn": 12, + "endOffset": 4006 + } + } + }, + { + "to": { + "startLine": 51, + "startColumn": 4, + "startOffset": 4312, + "endLine": 52, + "endColumn": 12, + "endOffset": 4456 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 45, + "startColumn": 4, + "startOffset": 4011, + "endLine": 46, + "endColumn": 12, + "endOffset": 4155 + } + } + }, + { + "to": { + "startLine": 53, + "startColumn": 4, + "startOffset": 4461, + "endColumn": 111, + "endOffset": 4568 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 47, + "startColumn": 4, + "startOffset": 4160, + "endColumn": 111, + "endOffset": 4267 + } + } + }, + { + "to": { + "startLine": 54, + "startColumn": 4, + "startOffset": 4573, + "endColumn": 146, + "endOffset": 4715 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 48, + "startColumn": 4, + "startOffset": 4272, + "endColumn": 146, + "endOffset": 4414 + } + } + }, + { + "to": { + "startLine": 55, + "startColumn": 4, + "startOffset": 4720, + "endLine": 56, + "endColumn": 12, + "endOffset": 4868 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 49, + "startColumn": 4, + "startOffset": 4419, + "endLine": 50, + "endColumn": 12, + "endOffset": 4567 + } + } + }, + { + "to": { + "startLine": 57, + "startColumn": 4, + "startOffset": 4873, + "endLine": 58, + "endColumn": 12, + "endOffset": 5015 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 51, + "startColumn": 4, + "startOffset": 4572, + "endLine": 52, + "endColumn": 12, + "endOffset": 4714 + } + } + }, + { + "to": { + "startLine": 59, + "startColumn": 4, + "startOffset": 5020, + "endColumn": 74, + "endOffset": 5090 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 53, + "startColumn": 4, + "startOffset": 4719, + "endColumn": 74, + "endOffset": 4789 + } + } + }, + { + "to": { + "startLine": 60, + "startColumn": 4, + "startOffset": 5095, + "endColumn": 88, + "endOffset": 5179 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 54, + "startColumn": 4, + "startOffset": 4794, + "endColumn": 88, + "endOffset": 4878 + } + } + }, + { + "to": { + "startLine": 61, + "startColumn": 4, + "startOffset": 5184, + "endColumn": 86, + "endOffset": 5266 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 55, + "startColumn": 4, + "startOffset": 4883, + "endColumn": 86, + "endOffset": 4965 + } + } + }, + { + "to": { + "startLine": 62, + "startColumn": 4, + "startOffset": 5271, + "endColumn": 100, + "endOffset": 5367 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 56, + "startColumn": 4, + "startOffset": 4970, + "endColumn": 100, + "endOffset": 5066 + } + } + }, + { + "to": { + "startLine": 63, + "startColumn": 4, + "startOffset": 5372, + "endLine": 106, + "endColumn": 12, + "endOffset": 8435 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 57, + "startColumn": 4, + "startOffset": 5071, + "endLine": 100, + "endColumn": 12, + "endOffset": 8134 + } + } + }, + { + "to": { + "startLine": 107, + "startColumn": 4, + "startOffset": 8440, + "endLine": 109, + "endColumn": 12, + "endOffset": 8621 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 101, + "startColumn": 4, + "startOffset": 8139, + "endLine": 103, + "endColumn": 12, + "endOffset": 8320 + } + } + }, + { + "to": { + "startLine": 110, + "startColumn": 4, + "startOffset": 8626, + "endLine": 153, + "endColumn": 12, + "endOffset": 11701 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 104, + "startColumn": 4, + "startOffset": 8325, + "endLine": 147, + "endColumn": 12, + "endOffset": 11400 + } + } + }, + { + "to": { + "startLine": 154, + "startColumn": 4, + "startOffset": 11706, + "endLine": 156, + "endColumn": 12, + "endOffset": 11899 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 148, + "startColumn": 4, + "startOffset": 11405, + "endLine": 150, + "endColumn": 12, + "endOffset": 11598 + } + } + }, + { + "to": { + "startLine": 157, + "startColumn": 4, + "startOffset": 11904, + "endLine": 158, + "endColumn": 12, + "endOffset": 12022 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 151, + "startColumn": 4, + "startOffset": 11603, + "endLine": 152, + "endColumn": 12, + "endOffset": 11721 + } + } + }, + { + "to": { + "startLine": 159, + "startColumn": 4, + "startOffset": 12027, + "endLine": 160, + "endColumn": 12, + "endOffset": 12145 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 153, + "startColumn": 4, + "startOffset": 11726, + "endLine": 154, + "endColumn": 12, + "endOffset": 11844 + } + } + }, + { + "to": { + "startLine": 161, + "startColumn": 4, + "startOffset": 12150, + "endLine": 162, + "endColumn": 12, + "endOffset": 12258 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 155, + "startColumn": 4, + "startOffset": 11849, + "endLine": 156, + "endColumn": 12, + "endOffset": 11957 + } + } + }, + { + "to": { + "startLine": 163, + "startColumn": 4, + "startOffset": 12263, + "endLine": 165, + "endColumn": 12, + "endOffset": 12441 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 157, + "startColumn": 4, + "startOffset": 11962, + "endLine": 159, + "endColumn": 12, + "endOffset": 12140 + } + } + }, + { + "to": { + "startLine": 166, + "startColumn": 4, + "startOffset": 12446, + "endLine": 167, + "endColumn": 12, + "endOffset": 12572 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 160, + "startColumn": 4, + "startOffset": 12145, + "endLine": 161, + "endColumn": 12, + "endOffset": 12271 + } + } + }, + { + "to": { + "startLine": 168, + "startColumn": 4, + "startOffset": 12577, + "endLine": 170, + "endColumn": 12, + "endOffset": 12773 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 162, + "startColumn": 4, + "startOffset": 12276, + "endLine": 164, + "endColumn": 12, + "endOffset": 12472 + } + } + }, + { + "to": { + "startLine": 171, + "startColumn": 4, + "startOffset": 12778, + "endColumn": 88, + "endOffset": 12862 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 165, + "startColumn": 4, + "startOffset": 12477, + "endColumn": 88, + "endOffset": 12561 + } + } + }, + { + "to": { + "startLine": 172, + "startColumn": 4, + "startOffset": 12867, + "endColumn": 110, + "endOffset": 12973 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 166, + "startColumn": 4, + "startOffset": 12566, + "endColumn": 110, + "endOffset": 12672 + } + } + }, + { + "to": { + "startLine": 173, + "startColumn": 4, + "startOffset": 12978, + "endColumn": 126, + "endOffset": 13100 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 167, + "startColumn": 4, + "startOffset": 12677, + "endColumn": 126, + "endOffset": 12799 + } + } + }, + { + "to": { + "startLine": 174, + "startColumn": 4, + "startOffset": 13105, + "endColumn": 100, + "endOffset": 13201 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 168, + "startColumn": 4, + "startOffset": 12804, + "endColumn": 100, + "endOffset": 12900 + } + } + }, + { + "to": { + "startLine": 175, + "startColumn": 4, + "startOffset": 13206, + "endColumn": 94, + "endOffset": 13296 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 169, + "startColumn": 4, + "startOffset": 12905, + "endColumn": 94, + "endOffset": 12995 + } + } + }, + { + "to": { + "startLine": 176, + "startColumn": 4, + "startOffset": 13301, + "endColumn": 122, + "endOffset": 13419 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 170, + "startColumn": 4, + "startOffset": 13000, + "endColumn": 122, + "endOffset": 13118 + } + } + }, + { + "to": { + "startLine": 177, + "startColumn": 4, + "startOffset": 13424, + "endColumn": 128, + "endOffset": 13548 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 171, + "startColumn": 4, + "startOffset": 13123, + "endColumn": 128, + "endOffset": 13247 + } + } + }, + { + "to": { + "startLine": 178, + "startColumn": 4, + "startOffset": 13553, + "endColumn": 116, + "endOffset": 13665 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 172, + "startColumn": 4, + "startOffset": 13252, + "endColumn": 116, + "endOffset": 13364 + } + } + }, + { + "to": { + "startLine": 179, + "startColumn": 4, + "startOffset": 13670, + "endLine": 181, + "endColumn": 12, + "endOffset": 13842 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 173, + "startColumn": 4, + "startOffset": 13369, + "endLine": 175, + "endColumn": 12, + "endOffset": 13541 + } + } + }, + { + "to": { + "startLine": 182, + "startColumn": 4, + "startOffset": 13847, + "endColumn": 98, + "endOffset": 13941 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 176, + "startColumn": 4, + "startOffset": 13546, + "endColumn": 98, + "endOffset": 13640 + } + } + }, + { + "to": { + "startLine": 183, + "startColumn": 4, + "startOffset": 13946, + "endLine": 184, + "endColumn": 12, + "endOffset": 14076 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 177, + "startColumn": 4, + "startOffset": 13645, + "endLine": 178, + "endColumn": 12, + "endOffset": 13775 + } + } + }, + { + "to": { + "startLine": 185, + "startColumn": 4, + "startOffset": 14081, + "endLine": 186, + "endColumn": 12, + "endOffset": 14219 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 179, + "startColumn": 4, + "startOffset": 13780, + "endLine": 180, + "endColumn": 12, + "endOffset": 13918 + } + } + }, + { + "to": { + "startLine": 187, + "startColumn": 4, + "startOffset": 14224, + "endLine": 188, + "endColumn": 12, + "endOffset": 14354 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 181, + "startColumn": 4, + "startOffset": 13923, + "endLine": 182, + "endColumn": 12, + "endOffset": 14053 + } + } + }, + { + "to": { + "startLine": 189, + "startColumn": 4, + "startOffset": 14359, + "endLine": 190, + "endColumn": 12, + "endOffset": 14473 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 183, + "startColumn": 4, + "startOffset": 14058, + "endLine": 184, + "endColumn": 12, + "endOffset": 14172 + } + } + }, + { + "to": { + "startLine": 191, + "startColumn": 4, + "startOffset": 14478, + "endLine": 194, + "endColumn": 12, + "endOffset": 14674 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 185, + "startColumn": 4, + "startOffset": 14177, + "endLine": 188, + "endColumn": 12, + "endOffset": 14373 + } + } + }, + { + "to": { + "startLine": 195, + "startColumn": 4, + "startOffset": 14679, + "endLine": 196, + "endColumn": 12, + "endOffset": 14793 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 189, + "startColumn": 4, + "startOffset": 14378, + "endLine": 190, + "endColumn": 12, + "endOffset": 14492 + } + } + }, + { + "to": { + "startLine": 197, + "startColumn": 4, + "startOffset": 14798, + "endColumn": 92, + "endOffset": 14886 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 191, + "startColumn": 4, + "startOffset": 14497, + "endColumn": 92, + "endOffset": 14585 + } + } + }, + { + "to": { + "startLine": 198, + "startColumn": 4, + "startOffset": 14891, + "endColumn": 110, + "endOffset": 14997 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 192, + "startColumn": 4, + "startOffset": 14590, + "endColumn": 110, + "endOffset": 14696 + } + } + }, + { + "to": { + "startLine": 199, + "startColumn": 4, + "startOffset": 15002, + "endColumn": 55, + "endOffset": 15053 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 193, + "startColumn": 4, + "startOffset": 14701, + "endColumn": 55, + "endOffset": 14752 + } + } + }, + { + "to": { + "startLine": 200, + "startColumn": 4, + "startOffset": 15058, + "endLine": 201, + "endColumn": 12, + "endOffset": 15160 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 194, + "startColumn": 4, + "startOffset": 14757, + "endLine": 195, + "endColumn": 12, + "endOffset": 14859 + } + } + }, + { + "to": { + "startLine": 202, + "startColumn": 4, + "startOffset": 15165, + "endLine": 205, + "endColumn": 12, + "endOffset": 15355 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 196, + "startColumn": 4, + "startOffset": 14864, + "endLine": 199, + "endColumn": 12, + "endOffset": 15054 + } + } + }, + { + "to": { + "startLine": 206, + "startColumn": 4, + "startOffset": 15360, + "endLine": 207, + "endColumn": 12, + "endOffset": 15466 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 200, + "startColumn": 4, + "startOffset": 15059, + "endLine": 201, + "endColumn": 12, + "endOffset": 15165 + } + } + }, + { + "to": { + "startLine": 208, + "startColumn": 4, + "startOffset": 15471, + "endLine": 209, + "endColumn": 12, + "endOffset": 15599 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 202, + "startColumn": 4, + "startOffset": 15170, + "endLine": 203, + "endColumn": 12, + "endOffset": 15298 + } + } + }, + { + "to": { + "startLine": 210, + "startColumn": 4, + "startOffset": 15604, + "endColumn": 94, + "endOffset": 15694 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 204, + "startColumn": 4, + "startOffset": 15303, + "endColumn": 94, + "endOffset": 15393 + } + } + }, + { + "to": { + "startLine": 211, + "startColumn": 4, + "startOffset": 15699, + "endColumn": 90, + "endOffset": 15785 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 205, + "startColumn": 4, + "startOffset": 15398, + "endColumn": 90, + "endOffset": 15484 + } + } + }, + { + "to": { + "startLine": 212, + "startColumn": 4, + "startOffset": 15790, + "endColumn": 90, + "endOffset": 15876 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 206, + "startColumn": 4, + "startOffset": 15489, + "endColumn": 90, + "endOffset": 15575 + } + } + }, + { + "to": { + "startLine": 213, + "startColumn": 4, + "startOffset": 15881, + "endColumn": 116, + "endOffset": 15993 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 207, + "startColumn": 4, + "startOffset": 15580, + "endColumn": 116, + "endOffset": 15692 + } + } + }, + { + "to": { + "startLine": 214, + "startColumn": 4, + "startOffset": 15998, + "endLine": 215, + "endColumn": 12, + "endOffset": 16132 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 208, + "startColumn": 4, + "startOffset": 15697, + "endLine": 209, + "endColumn": 12, + "endOffset": 15831 + } + } + }, + { + "to": { + "startLine": 216, + "startColumn": 4, + "startOffset": 16137, + "endLine": 225, + "endColumn": 12, + "endOffset": 16645 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 210, + "startColumn": 4, + "startOffset": 15836, + "endLine": 219, + "endColumn": 12, + "endOffset": 16344 + } + } + }, + { + "to": { + "startLine": 226, + "startColumn": 4, + "startOffset": 16650, + "endLine": 235, + "endColumn": 12, + "endOffset": 17170 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 220, + "startColumn": 4, + "startOffset": 16349, + "endLine": 229, + "endColumn": 12, + "endOffset": 16869 + } + } + }, + { + "to": { + "startLine": 236, + "startColumn": 4, + "startOffset": 17175, + "endLine": 245, + "endColumn": 12, + "endOffset": 17850 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 230, + "startColumn": 4, + "startOffset": 16874, + "endLine": 239, + "endColumn": 12, + "endOffset": 17549 + } + } + }, + { + "to": { + "startLine": 246, + "startColumn": 4, + "startOffset": 17855, + "endColumn": 56, + "endOffset": 17907 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 240, + "startColumn": 4, + "startOffset": 17554, + "endColumn": 56, + "endOffset": 17606 + } + } + }, + { + "to": { + "startLine": 247, + "startColumn": 4, + "startOffset": 17912, + "endColumn": 57, + "endOffset": 17965 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 241, + "startColumn": 4, + "startOffset": 17611, + "endColumn": 57, + "endOffset": 17664 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/multi/values-v22.json b/android/build/intermediates/blame/res/androidTest/debug/multi/values-v22.json new file mode 100644 index 000000000..1dc301afc --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/multi/values-v22.json @@ -0,0 +1,87 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v22/values-v22.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 74, + "endOffset": 125 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v22/values-v22.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 74, + "endOffset": 125 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 130, + "endColumn": 86, + "endOffset": 212 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v22/values-v22.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 130, + "endColumn": 86, + "endOffset": 212 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 217, + "endLine": 8, + "endColumn": 12, + "endOffset": 548 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v22/values-v22.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 217, + "endLine": 8, + "endColumn": 12, + "endOffset": 548 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 553, + "endLine": 13, + "endColumn": 12, + "endOffset": 896 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v22/values-v22.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 553, + "endLine": 13, + "endColumn": 12, + "endOffset": 896 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/multi/values-v23.json b/android/build/intermediates/blame/res/androidTest/debug/multi/values-v23.json new file mode 100644 index 000000000..cd4ef82ba --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/multi/values-v23.json @@ -0,0 +1,201 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v23/values-v23.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 134, + "endOffset": 185 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v23/values-v23.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 134, + "endOffset": 185 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 190, + "endColumn": 134, + "endOffset": 320 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v23/values-v23.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 190, + "endColumn": 134, + "endOffset": 320 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 325, + "endColumn": 74, + "endOffset": 395 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v23/values-v23.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 325, + "endColumn": 74, + "endOffset": 395 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 400, + "endColumn": 86, + "endOffset": 482 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v23/values-v23.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 400, + "endColumn": 86, + "endOffset": 482 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 487, + "endLine": 18, + "endColumn": 12, + "endOffset": 1272 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v23/values-v23.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 487, + "endLine": 18, + "endColumn": 12, + "endOffset": 1272 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1277, + "endLine": 31, + "endColumn": 12, + "endOffset": 2074 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v23/values-v23.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1277, + "endLine": 31, + "endColumn": 12, + "endOffset": 2074 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 2079, + "endColumn": 104, + "endOffset": 2179 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v23/values-v23.xml", + "position": { + "startLine": 32, + "startColumn": 4, + "startOffset": 2079, + "endColumn": 104, + "endOffset": 2179 + } + } + }, + { + "to": { + "startLine": 33, + "startColumn": 4, + "startOffset": 2184, + "endColumn": 114, + "endOffset": 2294 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v23/values-v23.xml", + "position": { + "startLine": 33, + "startColumn": 4, + "startOffset": 2184, + "endColumn": 114, + "endOffset": 2294 + } + } + }, + { + "to": { + "startLine": 34, + "startColumn": 4, + "startOffset": 2299, + "endColumn": 106, + "endOffset": 2401 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v23/values-v23.xml", + "position": { + "startLine": 34, + "startColumn": 4, + "startOffset": 2299, + "endColumn": 106, + "endOffset": 2401 + } + } + }, + { + "to": { + "startLine": 35, + "startColumn": 4, + "startOffset": 2406, + "endColumn": 112, + "endOffset": 2514 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v23/values-v23.xml", + "position": { + "startLine": 35, + "startColumn": 4, + "startOffset": 2406, + "endColumn": 112, + "endOffset": 2514 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/multi/values-vi.json b/android/build/intermediates/blame/res/androidTest/debug/multi/values-vi.json new file mode 100644 index 000000000..e16a09bdf --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/multi/values-vi.json @@ -0,0 +1,539 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-vi/values-vi.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 113, + "endOffset": 164 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-vi/values-vi.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 113, + "endOffset": 164 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 169, + "endColumn": 107, + "endOffset": 272 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-vi/values-vi.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 169, + "endColumn": 107, + "endOffset": 272 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 277, + "endColumn": 122, + "endOffset": 395 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-vi/values-vi.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 277, + "endColumn": 122, + "endOffset": 395 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 400, + "endColumn": 107, + "endOffset": 503 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-vi/values-vi.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 400, + "endColumn": 107, + "endOffset": 503 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 508, + "endColumn": 108, + "endOffset": 612 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-vi/values-vi.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 508, + "endColumn": 108, + "endOffset": 612 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 617, + "endColumn": 83, + "endOffset": 696 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-vi/values-vi.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 617, + "endColumn": 83, + "endOffset": 696 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 701, + "endColumn": 102, + "endOffset": 799 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-vi/values-vi.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 701, + "endColumn": 102, + "endOffset": 799 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 804, + "endColumn": 118, + "endOffset": 918 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-vi/values-vi.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 804, + "endColumn": 118, + "endOffset": 918 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 923, + "endColumn": 76, + "endOffset": 995 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-vi/values-vi.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 923, + "endColumn": 76, + "endOffset": 995 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1000, + "endColumn": 76, + "endOffset": 1072 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-vi/values-vi.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1000, + "endColumn": 76, + "endOffset": 1072 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1077, + "endColumn": 83, + "endOffset": 1156 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-vi/values-vi.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1077, + "endColumn": 83, + "endOffset": 1156 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1161, + "endColumn": 103, + "endOffset": 1260 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-vi/values-vi.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1161, + "endColumn": 103, + "endOffset": 1260 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1265, + "endColumn": 108, + "endOffset": 1369 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-vi/values-vi.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1265, + "endColumn": 108, + "endOffset": 1369 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1374, + "endColumn": 100, + "endOffset": 1470 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-vi/values-vi.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1374, + "endColumn": 100, + "endOffset": 1470 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1475, + "endColumn": 104, + "endOffset": 1575 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-vi/values-vi.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1475, + "endColumn": 104, + "endOffset": 1575 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1580, + "endColumn": 113, + "endOffset": 1689 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-vi/values-vi.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1580, + "endColumn": 113, + "endOffset": 1689 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1694, + "endColumn": 104, + "endOffset": 1794 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-vi/values-vi.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1694, + "endColumn": 104, + "endOffset": 1794 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1799, + "endColumn": 119, + "endOffset": 1914 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-vi/values-vi.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1799, + "endColumn": 119, + "endOffset": 1914 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1919, + "endColumn": 98, + "endOffset": 2013 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-vi/values-vi.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1919, + "endColumn": 98, + "endOffset": 2013 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2018, + "endColumn": 53, + "endOffset": 2067 + }, + "from": { + "file": "/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/values-vi/values-vi.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 53, + "endOffset": 104 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2072, + "endColumn": 71, + "endOffset": 2139 + }, + "from": { + "file": "/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/values-vi/values-vi.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 109, + "endColumn": 71, + "endOffset": 176 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2144, + "endColumn": 78, + "endOffset": 2218 + }, + "from": { + "file": "/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/values-vi/values-vi.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 181, + "endColumn": 78, + "endOffset": 255 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2223, + "endColumn": 70, + "endOffset": 2289 + }, + "from": { + "file": "/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/values-vi/values-vi.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 260, + "endColumn": 70, + "endOffset": 326 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2294, + "endColumn": 65, + "endOffset": 2355 + }, + "from": { + "file": "/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/values-vi/values-vi.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 331, + "endColumn": 65, + "endOffset": 392 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2360, + "endColumn": 55, + "endOffset": 2411 + }, + "from": { + "file": "/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/values-vi/values-vi.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 397, + "endColumn": 55, + "endOffset": 448 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 2416, + "endColumn": 58, + "endOffset": 2470 + }, + "from": { + "file": "/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/values-vi/values-vi.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 453, + "endColumn": 58, + "endOffset": 507 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 2475, + "endColumn": 73, + "endOffset": 2544 + }, + "from": { + "file": "/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/values-vi/values-vi.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 512, + "endColumn": 73, + "endOffset": 581 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 2549, + "endColumn": 100, + "endOffset": 2645 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-vi/values-vi.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2018, + "endColumn": 100, + "endOffset": 2114 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/multi/values-w360dp-v13.json b/android/build/intermediates/blame/res/androidTest/debug/multi/values-w360dp-v13.json new file mode 100644 index 000000000..b476d7a5b --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/multi/values-w360dp-v13.json @@ -0,0 +1,26 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-w360dp-v13/values-w360dp-v13.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 54, + "endOffset": 105 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-w360dp-v13/values-w360dp-v13.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 54, + "endOffset": 105 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/multi/values-w480dp-v13.json b/android/build/intermediates/blame/res/androidTest/debug/multi/values-w480dp-v13.json new file mode 100644 index 000000000..f15c3bae5 --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/multi/values-w480dp-v13.json @@ -0,0 +1,45 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-w480dp-v13/values-w480dp-v13.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 61, + "endOffset": 112 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-w480dp-v13/values-w480dp-v13.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 61, + "endOffset": 112 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 117, + "endColumn": 71, + "endOffset": 184 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-w480dp-v13/values-w480dp-v13.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 117, + "endColumn": 71, + "endOffset": 184 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/multi/values-w500dp-v13.json b/android/build/intermediates/blame/res/androidTest/debug/multi/values-w500dp-v13.json new file mode 100644 index 000000000..8635cb412 --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/multi/values-w500dp-v13.json @@ -0,0 +1,26 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-w500dp-v13/values-w500dp-v13.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 54, + "endOffset": 105 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-w500dp-v13/values-w500dp-v13.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 54, + "endOffset": 105 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/multi/values-w600dp-v13.json b/android/build/intermediates/blame/res/androidTest/debug/multi/values-w600dp-v13.json new file mode 100644 index 000000000..6afbe0293 --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/multi/values-w600dp-v13.json @@ -0,0 +1,45 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-w600dp-v13/values-w600dp-v13.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 63, + "endOffset": 114 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-w600dp-v13/values-w600dp-v13.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 63, + "endOffset": 114 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 119, + "endColumn": 54, + "endOffset": 169 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-w600dp-v13/values-w600dp-v13.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 119, + "endColumn": 54, + "endOffset": 169 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/multi/values-w720dp-v13.json b/android/build/intermediates/blame/res/androidTest/debug/multi/values-w720dp-v13.json new file mode 100644 index 000000000..5ccb052ff --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/multi/values-w720dp-v13.json @@ -0,0 +1,26 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-w720dp-v13/values-w720dp-v13.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 76, + "endOffset": 127 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-w720dp-v13/values-w720dp-v13.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 76, + "endOffset": 127 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/multi/values-w820dp-v13.json b/android/build/intermediates/blame/res/androidTest/debug/multi/values-w820dp-v13.json new file mode 100644 index 000000000..7b2ffa38e --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/multi/values-w820dp-v13.json @@ -0,0 +1,26 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-w820dp-v13/values-w820dp-v13.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 57, + "endOffset": 108 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-w820dp-v13/values-w820dp-v13.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 57, + "endOffset": 108 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/multi/values-xlarge-land-v4.json b/android/build/intermediates/blame/res/androidTest/debug/multi/values-xlarge-land-v4.json new file mode 100644 index 000000000..11821bba1 --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/multi/values-xlarge-land-v4.json @@ -0,0 +1,26 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-xlarge-land-v4/values-xlarge-land-v4.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 63, + "endOffset": 114 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-xlarge-land-v4/values-xlarge-land-v4.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 63, + "endOffset": 114 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/multi/values-xlarge-v4.json b/android/build/intermediates/blame/res/androidTest/debug/multi/values-xlarge-v4.json new file mode 100644 index 000000000..873ed1df2 --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/multi/values-xlarge-v4.json @@ -0,0 +1,178 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-xlarge-v4/values-xlarge-v4.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 76, + "endOffset": 127 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-xlarge-v4/values-xlarge-v4.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 76, + "endOffset": 127 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 132, + "endColumn": 70, + "endOffset": 198 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-xlarge-v4/values-xlarge-v4.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 132, + "endColumn": 70, + "endOffset": 198 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 203, + "endColumn": 70, + "endOffset": 269 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-xlarge-v4/values-xlarge-v4.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 203, + "endColumn": 70, + "endOffset": 269 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 274, + "endColumn": 69, + "endOffset": 339 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-xlarge-v4/values-xlarge-v4.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 274, + "endColumn": 69, + "endOffset": 339 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 344, + "endColumn": 69, + "endOffset": 409 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-xlarge-v4/values-xlarge-v4.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 344, + "endColumn": 69, + "endOffset": 409 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 414, + "endColumn": 67, + "endOffset": 477 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-xlarge-v4/values-xlarge-v4.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 414, + "endColumn": 67, + "endOffset": 477 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 482, + "endColumn": 67, + "endOffset": 545 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-xlarge-v4/values-xlarge-v4.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 482, + "endColumn": 67, + "endOffset": 545 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 550, + "endColumn": 63, + "endOffset": 609 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-xlarge-v4/values-xlarge-v4.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 550, + "endColumn": 63, + "endOffset": 609 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 614, + "endColumn": 54, + "endOffset": 664 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-xlarge-v4/values-xlarge-v4.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 614, + "endColumn": 54, + "endOffset": 664 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/multi/values-zh-rCN.json b/android/build/intermediates/blame/res/androidTest/debug/multi/values-zh-rCN.json new file mode 100644 index 000000000..c1db3ee72 --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/multi/values-zh-rCN.json @@ -0,0 +1,539 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-zh-rCN/values-zh-rCN.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 95, + "endOffset": 146 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rCN/values-zh-rCN.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 95, + "endOffset": 146 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 151, + "endColumn": 106, + "endOffset": 253 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rCN/values-zh-rCN.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 151, + "endColumn": 106, + "endOffset": 253 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 258, + "endColumn": 122, + "endOffset": 376 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rCN/values-zh-rCN.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 258, + "endColumn": 122, + "endOffset": 376 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 381, + "endColumn": 94, + "endOffset": 471 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rCN/values-zh-rCN.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 381, + "endColumn": 94, + "endOffset": 471 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 476, + "endColumn": 99, + "endOffset": 571 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rCN/values-zh-rCN.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 476, + "endColumn": 99, + "endOffset": 571 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 576, + "endColumn": 81, + "endOffset": 653 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rCN/values-zh-rCN.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 576, + "endColumn": 81, + "endOffset": 653 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 658, + "endColumn": 96, + "endOffset": 750 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rCN/values-zh-rCN.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 658, + "endColumn": 96, + "endOffset": 750 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 755, + "endColumn": 105, + "endOffset": 856 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rCN/values-zh-rCN.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 755, + "endColumn": 105, + "endOffset": 856 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 861, + "endColumn": 75, + "endOffset": 932 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rCN/values-zh-rCN.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 861, + "endColumn": 75, + "endOffset": 932 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 937, + "endColumn": 75, + "endOffset": 1008 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rCN/values-zh-rCN.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 937, + "endColumn": 75, + "endOffset": 1008 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1013, + "endColumn": 77, + "endOffset": 1086 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rCN/values-zh-rCN.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1013, + "endColumn": 77, + "endOffset": 1086 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1091, + "endColumn": 95, + "endOffset": 1182 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rCN/values-zh-rCN.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1091, + "endColumn": 95, + "endOffset": 1182 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1187, + "endColumn": 95, + "endOffset": 1278 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rCN/values-zh-rCN.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1187, + "endColumn": 95, + "endOffset": 1278 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1283, + "endColumn": 94, + "endOffset": 1373 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rCN/values-zh-rCN.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1283, + "endColumn": 94, + "endOffset": 1373 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1378, + "endColumn": 96, + "endOffset": 1470 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rCN/values-zh-rCN.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1378, + "endColumn": 96, + "endOffset": 1470 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1475, + "endColumn": 94, + "endOffset": 1565 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rCN/values-zh-rCN.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1475, + "endColumn": 94, + "endOffset": 1565 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1570, + "endColumn": 97, + "endOffset": 1663 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rCN/values-zh-rCN.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1570, + "endColumn": 97, + "endOffset": 1663 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1668, + "endColumn": 111, + "endOffset": 1775 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rCN/values-zh-rCN.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1668, + "endColumn": 111, + "endOffset": 1775 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1780, + "endColumn": 93, + "endOffset": 1869 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rCN/values-zh-rCN.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1780, + "endColumn": 93, + "endOffset": 1869 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1874, + "endColumn": 53, + "endOffset": 1923 + }, + "from": { + "file": "/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/values-zh-rCN/values-zh-rCN.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 53, + "endOffset": 104 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 1928, + "endColumn": 59, + "endOffset": 1983 + }, + "from": { + "file": "/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/values-zh-rCN/values-zh-rCN.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 109, + "endColumn": 59, + "endOffset": 164 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 1988, + "endColumn": 78, + "endOffset": 2062 + }, + "from": { + "file": "/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/values-zh-rCN/values-zh-rCN.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 169, + "endColumn": 78, + "endOffset": 243 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2067, + "endColumn": 70, + "endOffset": 2133 + }, + "from": { + "file": "/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/values-zh-rCN/values-zh-rCN.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 248, + "endColumn": 70, + "endOffset": 314 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2138, + "endColumn": 56, + "endOffset": 2190 + }, + "from": { + "file": "/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/values-zh-rCN/values-zh-rCN.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 319, + "endColumn": 56, + "endOffset": 371 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2195, + "endColumn": 55, + "endOffset": 2246 + }, + "from": { + "file": "/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/values-zh-rCN/values-zh-rCN.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 376, + "endColumn": 55, + "endOffset": 427 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 2251, + "endColumn": 58, + "endOffset": 2305 + }, + "from": { + "file": "/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/values-zh-rCN/values-zh-rCN.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 432, + "endColumn": 58, + "endOffset": 486 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 2310, + "endColumn": 73, + "endOffset": 2379 + }, + "from": { + "file": "/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/values-zh-rCN/values-zh-rCN.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 491, + "endColumn": 73, + "endOffset": 560 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 2384, + "endColumn": 100, + "endOffset": 2480 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rCN/values-zh-rCN.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1874, + "endColumn": 100, + "endOffset": 1970 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/multi/values-zh-rHK.json b/android/build/intermediates/blame/res/androidTest/debug/multi/values-zh-rHK.json new file mode 100644 index 000000000..b496154d5 --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/multi/values-zh-rHK.json @@ -0,0 +1,539 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-zh-rHK/values-zh-rHK.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 94, + "endOffset": 145 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rHK/values-zh-rHK.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 94, + "endOffset": 145 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 150, + "endColumn": 106, + "endOffset": 252 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rHK/values-zh-rHK.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 150, + "endColumn": 106, + "endOffset": 252 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 257, + "endColumn": 122, + "endOffset": 375 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rHK/values-zh-rHK.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 257, + "endColumn": 122, + "endOffset": 375 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 380, + "endColumn": 92, + "endOffset": 468 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rHK/values-zh-rHK.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 380, + "endColumn": 92, + "endOffset": 468 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 473, + "endColumn": 99, + "endOffset": 568 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rHK/values-zh-rHK.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 473, + "endColumn": 99, + "endOffset": 568 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 573, + "endColumn": 81, + "endOffset": 650 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rHK/values-zh-rHK.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 573, + "endColumn": 81, + "endOffset": 650 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 655, + "endColumn": 96, + "endOffset": 747 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rHK/values-zh-rHK.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 655, + "endColumn": 96, + "endOffset": 747 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 752, + "endColumn": 107, + "endOffset": 855 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rHK/values-zh-rHK.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 752, + "endColumn": 107, + "endOffset": 855 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 860, + "endColumn": 75, + "endOffset": 931 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rHK/values-zh-rHK.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 860, + "endColumn": 75, + "endOffset": 931 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 936, + "endColumn": 75, + "endOffset": 1007 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rHK/values-zh-rHK.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 936, + "endColumn": 75, + "endOffset": 1007 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1012, + "endColumn": 77, + "endOffset": 1085 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rHK/values-zh-rHK.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1012, + "endColumn": 77, + "endOffset": 1085 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1090, + "endColumn": 95, + "endOffset": 1181 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rHK/values-zh-rHK.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1090, + "endColumn": 95, + "endOffset": 1181 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1186, + "endColumn": 95, + "endOffset": 1277 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rHK/values-zh-rHK.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1186, + "endColumn": 95, + "endOffset": 1277 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1282, + "endColumn": 94, + "endOffset": 1372 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rHK/values-zh-rHK.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1282, + "endColumn": 94, + "endOffset": 1372 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1377, + "endColumn": 96, + "endOffset": 1469 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rHK/values-zh-rHK.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1377, + "endColumn": 96, + "endOffset": 1469 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1474, + "endColumn": 94, + "endOffset": 1564 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rHK/values-zh-rHK.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1474, + "endColumn": 94, + "endOffset": 1564 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1569, + "endColumn": 97, + "endOffset": 1662 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rHK/values-zh-rHK.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1569, + "endColumn": 97, + "endOffset": 1662 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1667, + "endColumn": 112, + "endOffset": 1775 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rHK/values-zh-rHK.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1667, + "endColumn": 112, + "endOffset": 1775 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1780, + "endColumn": 93, + "endOffset": 1869 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rHK/values-zh-rHK.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1780, + "endColumn": 93, + "endOffset": 1869 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1874, + "endColumn": 53, + "endOffset": 1923 + }, + "from": { + "file": "/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/values-zh-rHK/values-zh-rHK.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 53, + "endOffset": 104 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 1928, + "endColumn": 59, + "endOffset": 1983 + }, + "from": { + "file": "/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/values-zh-rHK/values-zh-rHK.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 109, + "endColumn": 59, + "endOffset": 164 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 1988, + "endColumn": 78, + "endOffset": 2062 + }, + "from": { + "file": "/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/values-zh-rHK/values-zh-rHK.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 169, + "endColumn": 78, + "endOffset": 243 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2067, + "endColumn": 70, + "endOffset": 2133 + }, + "from": { + "file": "/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/values-zh-rHK/values-zh-rHK.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 248, + "endColumn": 70, + "endOffset": 314 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2138, + "endColumn": 55, + "endOffset": 2189 + }, + "from": { + "file": "/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/values-zh-rHK/values-zh-rHK.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 319, + "endColumn": 55, + "endOffset": 370 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2194, + "endColumn": 55, + "endOffset": 2245 + }, + "from": { + "file": "/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/values-zh-rHK/values-zh-rHK.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 375, + "endColumn": 55, + "endOffset": 426 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 2250, + "endColumn": 58, + "endOffset": 2304 + }, + "from": { + "file": "/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/values-zh-rHK/values-zh-rHK.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 431, + "endColumn": 58, + "endOffset": 485 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 2309, + "endColumn": 73, + "endOffset": 2378 + }, + "from": { + "file": "/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/values-zh-rHK/values-zh-rHK.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 490, + "endColumn": 73, + "endOffset": 559 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 2383, + "endColumn": 101, + "endOffset": 2480 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rHK/values-zh-rHK.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1874, + "endColumn": 101, + "endOffset": 1971 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/multi/values-zh-rTW.json b/android/build/intermediates/blame/res/androidTest/debug/multi/values-zh-rTW.json new file mode 100644 index 000000000..a0f477b32 --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/multi/values-zh-rTW.json @@ -0,0 +1,1717 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-zh-rTW/values-zh-rTW.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 94, + "endOffset": 145 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 94, + "endOffset": 145 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 150, + "endColumn": 106, + "endOffset": 252 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 150, + "endColumn": 106, + "endOffset": 252 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 257, + "endColumn": 122, + "endOffset": 375 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 257, + "endColumn": 122, + "endOffset": 375 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 380, + "endColumn": 92, + "endOffset": 468 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 380, + "endColumn": 92, + "endOffset": 468 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 473, + "endColumn": 99, + "endOffset": 568 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 473, + "endColumn": 99, + "endOffset": 568 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 573, + "endColumn": 81, + "endOffset": 650 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 573, + "endColumn": 81, + "endOffset": 650 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 655, + "endColumn": 96, + "endOffset": 747 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 655, + "endColumn": 96, + "endOffset": 747 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 752, + "endColumn": 107, + "endOffset": 855 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 752, + "endColumn": 107, + "endOffset": 855 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 860, + "endColumn": 75, + "endOffset": 931 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 860, + "endColumn": 75, + "endOffset": 931 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 936, + "endColumn": 75, + "endOffset": 1007 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 936, + "endColumn": 75, + "endOffset": 1007 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1012, + "endColumn": 77, + "endOffset": 1085 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1012, + "endColumn": 77, + "endOffset": 1085 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1090, + "endColumn": 95, + "endOffset": 1181 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1090, + "endColumn": 95, + "endOffset": 1181 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1186, + "endColumn": 95, + "endOffset": 1277 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1186, + "endColumn": 95, + "endOffset": 1277 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1282, + "endColumn": 94, + "endOffset": 1372 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1282, + "endColumn": 94, + "endOffset": 1372 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1377, + "endColumn": 96, + "endOffset": 1469 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1377, + "endColumn": 96, + "endOffset": 1469 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1474, + "endColumn": 94, + "endOffset": 1564 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1474, + "endColumn": 94, + "endOffset": 1564 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1569, + "endColumn": 99, + "endOffset": 1664 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1569, + "endColumn": 99, + "endOffset": 1664 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1669, + "endColumn": 112, + "endOffset": 1777 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1669, + "endColumn": 112, + "endOffset": 1777 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1782, + "endColumn": 93, + "endOffset": 1871 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1782, + "endColumn": 93, + "endOffset": 1871 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1876, + "endColumn": 51, + "endOffset": 1923 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 51, + "endOffset": 102 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 1928, + "endColumn": 43, + "endOffset": 1967 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 107, + "endColumn": 43, + "endOffset": 146 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 1972, + "endColumn": 44, + "endOffset": 2012 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 151, + "endColumn": 44, + "endOffset": 191 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2017, + "endColumn": 43, + "endOffset": 2056 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 196, + "endColumn": 43, + "endOffset": 235 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2061, + "endColumn": 41, + "endOffset": 2098 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 240, + "endColumn": 41, + "endOffset": 277 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2103, + "endColumn": 48, + "endOffset": 2147 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 282, + "endColumn": 48, + "endOffset": 326 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 2152, + "endColumn": 44, + "endOffset": 2192 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 331, + "endColumn": 44, + "endOffset": 371 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 2197, + "endColumn": 43, + "endOffset": 2236 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 376, + "endColumn": 43, + "endOffset": 415 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 2241, + "endColumn": 39, + "endOffset": 2276 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 420, + "endColumn": 39, + "endOffset": 455 + } + } + }, + { + "to": { + "startLine": 30, + "startColumn": 4, + "startOffset": 2281, + "endColumn": 40, + "endOffset": 2317 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 460, + "endColumn": 40, + "endOffset": 496 + } + } + }, + { + "to": { + "startLine": 31, + "startColumn": 4, + "startOffset": 2322, + "endColumn": 54, + "endOffset": 2372 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 501, + "endColumn": 54, + "endOffset": 551 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 2377, + "endColumn": 113, + "endOffset": 2486 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 556, + "endColumn": 113, + "endOffset": 665 + } + } + }, + { + "to": { + "startLine": 33, + "startColumn": 4, + "startOffset": 2491, + "endColumn": 41, + "endOffset": 2528 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 670, + "endColumn": 41, + "endOffset": 707 + } + } + }, + { + "to": { + "startLine": 34, + "startColumn": 4, + "startOffset": 2533, + "endColumn": 50, + "endOffset": 2579 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 712, + "endColumn": 50, + "endOffset": 758 + } + } + }, + { + "to": { + "startLine": 35, + "startColumn": 4, + "startOffset": 2584, + "endColumn": 80, + "endOffset": 2660 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 763, + "endColumn": 80, + "endOffset": 839 + } + } + }, + { + "to": { + "startLine": 36, + "startColumn": 4, + "startOffset": 2665, + "endColumn": 47, + "endOffset": 2708 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 844, + "endColumn": 47, + "endOffset": 887 + } + } + }, + { + "to": { + "startLine": 37, + "startColumn": 4, + "startOffset": 2713, + "endColumn": 56, + "endOffset": 2765 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 892, + "endColumn": 56, + "endOffset": 944 + } + } + }, + { + "to": { + "startLine": 38, + "startColumn": 4, + "startOffset": 2770, + "endColumn": 48, + "endOffset": 2814 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 949, + "endColumn": 48, + "endOffset": 993 + } + } + }, + { + "to": { + "startLine": 39, + "startColumn": 4, + "startOffset": 2819, + "endColumn": 73, + "endOffset": 2888 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 998, + "endColumn": 73, + "endOffset": 1067 + } + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 2893, + "endColumn": 47, + "endOffset": 2936 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1072, + "endColumn": 47, + "endOffset": 1115 + } + } + }, + { + "to": { + "startLine": 41, + "startColumn": 4, + "startOffset": 2941, + "endColumn": 53, + "endOffset": 2990 + }, + "from": { + "file": "/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/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 53, + "endOffset": 104 + } + } + }, + { + "to": { + "startLine": 42, + "startColumn": 4, + "startOffset": 2995, + "endColumn": 59, + "endOffset": 3050 + }, + "from": { + "file": "/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/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 109, + "endColumn": 59, + "endOffset": 164 + } + } + }, + { + "to": { + "startLine": 43, + "startColumn": 4, + "startOffset": 3055, + "endColumn": 78, + "endOffset": 3129 + }, + "from": { + "file": "/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/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 169, + "endColumn": 78, + "endOffset": 243 + } + } + }, + { + "to": { + "startLine": 44, + "startColumn": 4, + "startOffset": 3134, + "endColumn": 70, + "endOffset": 3200 + }, + "from": { + "file": "/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/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 248, + "endColumn": 70, + "endOffset": 314 + } + } + }, + { + "to": { + "startLine": 45, + "startColumn": 4, + "startOffset": 3205, + "endColumn": 55, + "endOffset": 3256 + }, + "from": { + "file": "/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/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 319, + "endColumn": 55, + "endOffset": 370 + } + } + }, + { + "to": { + "startLine": 46, + "startColumn": 4, + "startOffset": 3261, + "endColumn": 55, + "endOffset": 3312 + }, + "from": { + "file": "/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/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 375, + "endColumn": 55, + "endOffset": 426 + } + } + }, + { + "to": { + "startLine": 47, + "startColumn": 4, + "startOffset": 3317, + "endColumn": 58, + "endOffset": 3371 + }, + "from": { + "file": "/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/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 431, + "endColumn": 58, + "endOffset": 485 + } + } + }, + { + "to": { + "startLine": 48, + "startColumn": 4, + "startOffset": 3376, + "endColumn": 73, + "endOffset": 3445 + }, + "from": { + "file": "/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/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 490, + "endColumn": 73, + "endOffset": 559 + } + } + }, + { + "to": { + "startLine": 49, + "startColumn": 4, + "startOffset": 3450, + "endColumn": 42, + "endOffset": 3488 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 1120, + "endColumn": 42, + "endOffset": 1158 + } + } + }, + { + "to": { + "startLine": 50, + "startColumn": 4, + "startOffset": 3493, + "endColumn": 68, + "endOffset": 3557 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 1163, + "endColumn": 68, + "endOffset": 1227 + } + } + }, + { + "to": { + "startLine": 51, + "startColumn": 4, + "startOffset": 3562, + "endColumn": 58, + "endOffset": 3616 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 24, + "startColumn": 4, + "startOffset": 1232, + "endColumn": 58, + "endOffset": 1286 + } + } + }, + { + "to": { + "startLine": 52, + "startColumn": 4, + "startOffset": 3621, + "endColumn": 82, + "endOffset": 3699 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 25, + "startColumn": 4, + "startOffset": 1291, + "endColumn": 82, + "endOffset": 1369 + } + } + }, + { + "to": { + "startLine": 53, + "startColumn": 4, + "startOffset": 3704, + "endColumn": 44, + "endOffset": 3744 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 1374, + "endColumn": 44, + "endOffset": 1414 + } + } + }, + { + "to": { + "startLine": 54, + "startColumn": 4, + "startOffset": 3749, + "endColumn": 41, + "endOffset": 3786 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 27, + "startColumn": 4, + "startOffset": 1419, + "endColumn": 41, + "endOffset": 1456 + } + } + }, + { + "to": { + "startLine": 55, + "startColumn": 4, + "startOffset": 3791, + "endColumn": 66, + "endOffset": 3853 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 28, + "startColumn": 4, + "startOffset": 1461, + "endColumn": 66, + "endOffset": 1523 + } + } + }, + { + "to": { + "startLine": 56, + "startColumn": 4, + "startOffset": 3858, + "endColumn": 44, + "endOffset": 3898 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 1528, + "endColumn": 44, + "endOffset": 1568 + } + } + }, + { + "to": { + "startLine": 57, + "startColumn": 4, + "startOffset": 3903, + "endColumn": 66, + "endOffset": 3965 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 30, + "startColumn": 4, + "startOffset": 1573, + "endColumn": 66, + "endOffset": 1635 + } + } + }, + { + "to": { + "startLine": 58, + "startColumn": 4, + "startOffset": 3970, + "endColumn": 60, + "endOffset": 4026 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 31, + "startColumn": 4, + "startOffset": 1640, + "endColumn": 60, + "endOffset": 1696 + } + } + }, + { + "to": { + "startLine": 59, + "startColumn": 4, + "startOffset": 4031, + "endColumn": 50, + "endOffset": 4077 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 32, + "startColumn": 4, + "startOffset": 1701, + "endColumn": 50, + "endOffset": 1747 + } + } + }, + { + "to": { + "startLine": 60, + "startColumn": 4, + "startOffset": 4082, + "endColumn": 49, + "endOffset": 4127 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 33, + "startColumn": 4, + "startOffset": 1752, + "endColumn": 49, + "endOffset": 1797 + } + } + }, + { + "to": { + "startLine": 61, + "startColumn": 4, + "startOffset": 4132, + "endColumn": 54, + "endOffset": 4182 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 34, + "startColumn": 4, + "startOffset": 1802, + "endColumn": 54, + "endOffset": 1852 + } + } + }, + { + "to": { + "startLine": 62, + "startColumn": 4, + "startOffset": 4187, + "endColumn": 103, + "endOffset": 4286 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 35, + "startColumn": 4, + "startOffset": 1857, + "endColumn": 103, + "endOffset": 1956 + } + } + }, + { + "to": { + "startLine": 63, + "startColumn": 4, + "startOffset": 4291, + "endColumn": 47, + "endOffset": 4334 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 36, + "startColumn": 4, + "startOffset": 1961, + "endColumn": 47, + "endOffset": 2004 + } + } + }, + { + "to": { + "startLine": 64, + "startColumn": 4, + "startOffset": 4339, + "endColumn": 50, + "endOffset": 4385 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 37, + "startColumn": 4, + "startOffset": 2009, + "endColumn": 50, + "endOffset": 2055 + } + } + }, + { + "to": { + "startLine": 65, + "startColumn": 4, + "startOffset": 4390, + "endColumn": 48, + "endOffset": 4434 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 38, + "startColumn": 4, + "startOffset": 2060, + "endColumn": 48, + "endOffset": 2104 + } + } + }, + { + "to": { + "startLine": 66, + "startColumn": 4, + "startOffset": 4439, + "endColumn": 60, + "endOffset": 4495 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 39, + "startColumn": 4, + "startOffset": 2109, + "endColumn": 60, + "endOffset": 2165 + } + } + }, + { + "to": { + "startLine": 67, + "startColumn": 4, + "startOffset": 4500, + "endColumn": 43, + "endOffset": 4539 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 40, + "startColumn": 4, + "startOffset": 2170, + "endColumn": 43, + "endOffset": 2209 + } + } + }, + { + "to": { + "startLine": 68, + "startColumn": 4, + "startOffset": 4544, + "endColumn": 48, + "endOffset": 4588 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 41, + "startColumn": 4, + "startOffset": 2214, + "endColumn": 48, + "endOffset": 2258 + } + } + }, + { + "to": { + "startLine": 69, + "startColumn": 4, + "startOffset": 4593, + "endColumn": 101, + "endOffset": 4690 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 42, + "startColumn": 4, + "startOffset": 2263, + "endColumn": 101, + "endOffset": 2360 + } + } + }, + { + "to": { + "startLine": 70, + "startColumn": 4, + "startOffset": 4695, + "endColumn": 87, + "endOffset": 4778 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 43, + "startColumn": 4, + "startOffset": 2365, + "endColumn": 87, + "endOffset": 2448 + } + } + }, + { + "to": { + "startLine": 71, + "startColumn": 4, + "startOffset": 4783, + "endColumn": 51, + "endOffset": 4830 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 44, + "startColumn": 4, + "startOffset": 2453, + "endColumn": 51, + "endOffset": 2500 + } + } + }, + { + "to": { + "startLine": 72, + "startColumn": 4, + "startOffset": 4835, + "endColumn": 61, + "endOffset": 4892 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 45, + "startColumn": 4, + "startOffset": 2505, + "endColumn": 61, + "endOffset": 2562 + } + } + }, + { + "to": { + "startLine": 73, + "startColumn": 4, + "startOffset": 4897, + "endColumn": 45, + "endOffset": 4938 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 46, + "startColumn": 4, + "startOffset": 2567, + "endColumn": 45, + "endOffset": 2608 + } + } + }, + { + "to": { + "startLine": 74, + "startColumn": 4, + "startOffset": 4943, + "endColumn": 57, + "endOffset": 4996 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 47, + "startColumn": 4, + "startOffset": 2613, + "endColumn": 57, + "endOffset": 2666 + } + } + }, + { + "to": { + "startLine": 75, + "startColumn": 4, + "startOffset": 5001, + "endColumn": 39, + "endOffset": 5036 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 48, + "startColumn": 4, + "startOffset": 2671, + "endColumn": 39, + "endOffset": 2706 + } + } + }, + { + "to": { + "startLine": 76, + "startColumn": 4, + "startOffset": 5041, + "endColumn": 45, + "endOffset": 5082 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 49, + "startColumn": 4, + "startOffset": 2711, + "endColumn": 45, + "endOffset": 2752 + } + } + }, + { + "to": { + "startLine": 77, + "startColumn": 4, + "startOffset": 5087, + "endColumn": 75, + "endOffset": 5158 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 50, + "startColumn": 4, + "startOffset": 2757, + "endColumn": 75, + "endOffset": 2828 + } + } + }, + { + "to": { + "startLine": 78, + "startColumn": 4, + "startOffset": 5163, + "endColumn": 59, + "endOffset": 5218 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 51, + "startColumn": 4, + "startOffset": 2833, + "endColumn": 59, + "endOffset": 2888 + } + } + }, + { + "to": { + "startLine": 79, + "startColumn": 4, + "startOffset": 5223, + "endColumn": 55, + "endOffset": 5274 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 52, + "startColumn": 4, + "startOffset": 2893, + "endColumn": 55, + "endOffset": 2944 + } + } + }, + { + "to": { + "startLine": 80, + "startColumn": 4, + "startOffset": 5279, + "endColumn": 52, + "endOffset": 5327 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 53, + "startColumn": 4, + "startOffset": 2949, + "endColumn": 52, + "endOffset": 2997 + } + } + }, + { + "to": { + "startLine": 81, + "startColumn": 4, + "startOffset": 5332, + "endColumn": 102, + "endOffset": 5430 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 54, + "startColumn": 4, + "startOffset": 3002, + "endColumn": 102, + "endOffset": 3100 + } + } + }, + { + "to": { + "startLine": 82, + "startColumn": 4, + "startOffset": 5435, + "endColumn": 50, + "endOffset": 5481 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 55, + "startColumn": 4, + "startOffset": 3105, + "endColumn": 50, + "endOffset": 3151 + } + } + }, + { + "to": { + "startLine": 83, + "startColumn": 4, + "startOffset": 5486, + "endColumn": 100, + "endOffset": 5582 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1876, + "endColumn": 100, + "endOffset": 1972 + } + } + }, + { + "to": { + "startLine": 84, + "startColumn": 4, + "startOffset": 5587, + "endColumn": 57, + "endOffset": 5640 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 56, + "startColumn": 4, + "startOffset": 3156, + "endColumn": 57, + "endOffset": 3209 + } + } + }, + { + "to": { + "startLine": 85, + "startColumn": 4, + "startOffset": 5645, + "endColumn": 96, + "endOffset": 5737 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 57, + "startColumn": 4, + "startOffset": 3214, + "endColumn": 96, + "endOffset": 3306 + } + } + }, + { + "to": { + "startLine": 86, + "startColumn": 4, + "startOffset": 5742, + "endColumn": 48, + "endOffset": 5786 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 58, + "startColumn": 4, + "startOffset": 3311, + "endColumn": 48, + "endOffset": 3355 + } + } + }, + { + "to": { + "startLine": 87, + "startColumn": 4, + "startOffset": 5791, + "endColumn": 62, + "endOffset": 5849 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 59, + "startColumn": 4, + "startOffset": 3360, + "endColumn": 62, + "endOffset": 3418 + } + } + }, + { + "to": { + "startLine": 88, + "startColumn": 4, + "startOffset": 5854, + "endColumn": 61, + "endOffset": 5911 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 60, + "startColumn": 4, + "startOffset": 3423, + "endColumn": 61, + "endOffset": 3480 + } + } + }, + { + "to": { + "startLine": 89, + "startColumn": 4, + "startOffset": 5916, + "endColumn": 53, + "endOffset": 5965 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 61, + "startColumn": 4, + "startOffset": 3485, + "endColumn": 53, + "endOffset": 3534 + } + } + }, + { + "to": { + "startLine": 90, + "startColumn": 4, + "startOffset": 5970, + "endColumn": 44, + "endOffset": 6010 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 62, + "startColumn": 4, + "startOffset": 3539, + "endColumn": 44, + "endOffset": 3579 + } + } + }, + { + "to": { + "startLine": 91, + "startColumn": 4, + "startOffset": 6015, + "endColumn": 69, + "endOffset": 6080 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 63, + "startColumn": 4, + "startOffset": 3584, + "endColumn": 69, + "endOffset": 3649 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/multi/values-zu.json b/android/build/intermediates/blame/res/androidTest/debug/multi/values-zu.json new file mode 100644 index 000000000..6f5c17883 --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/multi/values-zu.json @@ -0,0 +1,387 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-zu/values-zu.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 107, + "endOffset": 158 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zu/values-zu.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 107, + "endOffset": 158 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 163, + "endColumn": 107, + "endOffset": 266 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zu/values-zu.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 163, + "endColumn": 107, + "endOffset": 266 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 271, + "endColumn": 122, + "endOffset": 389 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zu/values-zu.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 271, + "endColumn": 122, + "endOffset": 389 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 394, + "endColumn": 106, + "endOffset": 496 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zu/values-zu.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 394, + "endColumn": 106, + "endOffset": 496 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 501, + "endColumn": 113, + "endOffset": 610 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zu/values-zu.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 501, + "endColumn": 113, + "endOffset": 610 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 615, + "endColumn": 87, + "endOffset": 698 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zu/values-zu.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 615, + "endColumn": 87, + "endOffset": 698 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 703, + "endColumn": 102, + "endOffset": 801 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zu/values-zu.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 703, + "endColumn": 102, + "endOffset": 801 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 806, + "endColumn": 126, + "endOffset": 928 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zu/values-zu.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 806, + "endColumn": 126, + "endOffset": 928 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 933, + "endColumn": 79, + "endOffset": 1008 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zu/values-zu.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 933, + "endColumn": 79, + "endOffset": 1008 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1013, + "endColumn": 79, + "endOffset": 1088 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zu/values-zu.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1013, + "endColumn": 79, + "endOffset": 1088 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1093, + "endColumn": 85, + "endOffset": 1174 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zu/values-zu.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1093, + "endColumn": 85, + "endOffset": 1174 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1179, + "endColumn": 103, + "endOffset": 1278 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zu/values-zu.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1179, + "endColumn": 103, + "endOffset": 1278 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1283, + "endColumn": 105, + "endOffset": 1384 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zu/values-zu.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1283, + "endColumn": 105, + "endOffset": 1384 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1389, + "endColumn": 97, + "endOffset": 1482 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zu/values-zu.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1389, + "endColumn": 97, + "endOffset": 1482 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1487, + "endColumn": 106, + "endOffset": 1589 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zu/values-zu.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1487, + "endColumn": 106, + "endOffset": 1589 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1594, + "endColumn": 105, + "endOffset": 1695 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zu/values-zu.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1594, + "endColumn": 105, + "endOffset": 1695 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1700, + "endColumn": 105, + "endOffset": 1801 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zu/values-zu.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1700, + "endColumn": 105, + "endOffset": 1801 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1806, + "endColumn": 119, + "endOffset": 1921 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zu/values-zu.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1806, + "endColumn": 119, + "endOffset": 1921 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1926, + "endColumn": 95, + "endOffset": 2017 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zu/values-zu.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1926, + "endColumn": 95, + "endOffset": 2017 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2022, + "endColumn": 100, + "endOffset": 2118 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zu/values-zu.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2022, + "endColumn": 100, + "endOffset": 2118 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/multi/values.json b/android/build/intermediates/blame/res/androidTest/debug/multi/values.json new file mode 100644 index 000000000..b2f7dbca5 --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/multi/values.json @@ -0,0 +1,13096 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values/values.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 54, + "endOffset": 105 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 54, + "endOffset": 105 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 110, + "endColumn": 44, + "endOffset": 150 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 110, + "endColumn": 44, + "endOffset": 150 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 155, + "endColumn": 48, + "endOffset": 199 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 155, + "endColumn": 48, + "endOffset": 199 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 204, + "endColumn": 40, + "endOffset": 240 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 204, + "endColumn": 40, + "endOffset": 240 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 245, + "endColumn": 54, + "endOffset": 295 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 245, + "endColumn": 54, + "endOffset": 295 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 300, + "endColumn": 62, + "endOffset": 358 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 300, + "endColumn": 62, + "endOffset": 358 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 363, + "endColumn": 75, + "endOffset": 434 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 363, + "endColumn": 75, + "endOffset": 434 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 439, + "endColumn": 57, + "endOffset": 492 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 439, + "endColumn": 57, + "endOffset": 492 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 497, + "endColumn": 61, + "endOffset": 554 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 497, + "endColumn": 61, + "endOffset": 554 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 559, + "endColumn": 72, + "endOffset": 627 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 559, + "endColumn": 72, + "endOffset": 627 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 632, + "endColumn": 67, + "endOffset": 695 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 632, + "endColumn": 67, + "endOffset": 695 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 700, + "endColumn": 77, + "endOffset": 773 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 700, + "endColumn": 77, + "endOffset": 773 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 778, + "endColumn": 80, + "endOffset": 854 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 778, + "endColumn": 80, + "endOffset": 854 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 859, + "endColumn": 60, + "endOffset": 915 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 859, + "endColumn": 60, + "endOffset": 915 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 920, + "endColumn": 74, + "endOffset": 990 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 920, + "endColumn": 74, + "endOffset": 990 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 995, + "endColumn": 75, + "endOffset": 1066 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 995, + "endColumn": 75, + "endOffset": 1066 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1071, + "endColumn": 76, + "endOffset": 1143 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1071, + "endColumn": 76, + "endOffset": 1143 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1148, + "endColumn": 77, + "endOffset": 1221 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1148, + "endColumn": 77, + "endOffset": 1221 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1226, + "endColumn": 84, + "endOffset": 1306 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1226, + "endColumn": 84, + "endOffset": 1306 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1311, + "endColumn": 81, + "endOffset": 1388 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1311, + "endColumn": 81, + "endOffset": 1388 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 1393, + "endColumn": 75, + "endOffset": 1464 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 1393, + "endColumn": 75, + "endOffset": 1464 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 1469, + "endColumn": 75, + "endOffset": 1540 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 1469, + "endColumn": 75, + "endOffset": 1540 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 1545, + "endColumn": 49, + "endOffset": 1590 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values/values.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 49, + "endOffset": 100 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 1595, + "endColumn": 76, + "endOffset": 1667 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 24, + "startColumn": 4, + "startOffset": 1545, + "endColumn": 76, + "endOffset": 1617 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 1672, + "endColumn": 77, + "endOffset": 1745 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 25, + "startColumn": 4, + "startOffset": 1622, + "endColumn": 77, + "endOffset": 1695 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 1750, + "endColumn": 105, + "endOffset": 1851 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 1700, + "endColumn": 105, + "endOffset": 1801 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 1856, + "endColumn": 105, + "endOffset": 1957 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 27, + "startColumn": 4, + "startOffset": 1806, + "endColumn": 105, + "endOffset": 1907 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 1962, + "endColumn": 78, + "endOffset": 2036 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 28, + "startColumn": 4, + "startOffset": 1912, + "endColumn": 78, + "endOffset": 1986 + } + } + }, + { + "to": { + "startLine": 30, + "startColumn": 4, + "startOffset": 2041, + "endColumn": 79, + "endOffset": 2116 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 1991, + "endColumn": 79, + "endOffset": 2066 + } + } + }, + { + "to": { + "startLine": 31, + "startColumn": 4, + "startOffset": 2121, + "endColumn": 56, + "endOffset": 2173 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 30, + "startColumn": 4, + "startOffset": 2071, + "endColumn": 56, + "endOffset": 2123 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 2178, + "endColumn": 57, + "endOffset": 2231 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 31, + "startColumn": 4, + "startOffset": 2128, + "endColumn": 57, + "endOffset": 2181 + } + } + }, + { + "to": { + "startLine": 33, + "startColumn": 4, + "startOffset": 2236, + "endColumn": 62, + "endOffset": 2294 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 62, + "endOffset": 113 + } + } + }, + { + "to": { + "startLine": 34, + "startColumn": 4, + "startOffset": 2299, + "endColumn": 45, + "endOffset": 2340 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values/values.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 105, + "endColumn": 45, + "endOffset": 146 + } + } + }, + { + "to": { + "startLine": 35, + "startColumn": 4, + "startOffset": 2345, + "endColumn": 46, + "endOffset": 2387 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 151, + "endColumn": 46, + "endOffset": 193 + } + } + }, + { + "to": { + "startLine": 36, + "startColumn": 4, + "startOffset": 2392, + "endColumn": 50, + "endOffset": 2438 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 198, + "endColumn": 50, + "endOffset": 244 + } + } + }, + { + "to": { + "startLine": 37, + "startColumn": 4, + "startOffset": 2443, + "endColumn": 80, + "endOffset": 2519 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 80, + "endOffset": 131 + } + } + }, + { + "to": { + "startLine": 38, + "startColumn": 4, + "startOffset": 2524, + "endColumn": 63, + "endOffset": 2583 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 136, + "endColumn": 63, + "endOffset": 195 + } + } + }, + { + "to": { + "startLine": 39, + "startColumn": 4, + "startOffset": 2588, + "endColumn": 65, + "endOffset": 2649 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 200, + "endColumn": 65, + "endOffset": 261 + } + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 2654, + "endColumn": 69, + "endOffset": 2719 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 266, + "endColumn": 69, + "endOffset": 331 + } + } + }, + { + "to": { + "startLine": 41, + "startColumn": 4, + "startOffset": 2724, + "endColumn": 69, + "endOffset": 2789 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 336, + "endColumn": 69, + "endOffset": 401 + } + } + }, + { + "to": { + "startLine": 42, + "startColumn": 4, + "startOffset": 2794, + "endColumn": 69, + "endOffset": 2859 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 406, + "endColumn": 69, + "endOffset": 471 + } + } + }, + { + "to": { + "startLine": 43, + "startColumn": 4, + "startOffset": 2864, + "endColumn": 69, + "endOffset": 2929 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 476, + "endColumn": 69, + "endOffset": 541 + } + } + }, + { + "to": { + "startLine": 44, + "startColumn": 4, + "startOffset": 2934, + "endColumn": 66, + "endOffset": 2996 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 546, + "endColumn": 66, + "endOffset": 608 + } + } + }, + { + "to": { + "startLine": 45, + "startColumn": 4, + "startOffset": 3001, + "endColumn": 69, + "endOffset": 3066 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 613, + "endColumn": 69, + "endOffset": 678 + } + } + }, + { + "to": { + "startLine": 46, + "startColumn": 4, + "startOffset": 3071, + "endColumn": 70, + "endOffset": 3137 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 683, + "endColumn": 70, + "endOffset": 749 + } + } + }, + { + "to": { + "startLine": 47, + "startColumn": 4, + "startOffset": 3142, + "endColumn": 73, + "endOffset": 3211 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 32, + "startColumn": 4, + "startOffset": 2186, + "endColumn": 73, + "endOffset": 2255 + } + } + }, + { + "to": { + "startLine": 48, + "startColumn": 4, + "startOffset": 3216, + "endColumn": 74, + "endOffset": 3286 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 33, + "startColumn": 4, + "startOffset": 2260, + "endColumn": 74, + "endOffset": 2330 + } + } + }, + { + "to": { + "startLine": 49, + "startColumn": 4, + "startOffset": 3291, + "endColumn": 64, + "endOffset": 3351 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 34, + "startColumn": 4, + "startOffset": 2335, + "endColumn": 64, + "endOffset": 2395 + } + } + }, + { + "to": { + "startLine": 50, + "startColumn": 4, + "startOffset": 3356, + "endColumn": 65, + "endOffset": 3417 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 35, + "startColumn": 4, + "startOffset": 2400, + "endColumn": 65, + "endOffset": 2461 + } + } + }, + { + "to": { + "startLine": 51, + "startColumn": 4, + "startOffset": 3422, + "endColumn": 71, + "endOffset": 3489 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 36, + "startColumn": 4, + "startOffset": 2466, + "endColumn": 71, + "endOffset": 2533 + } + } + }, + { + "to": { + "startLine": 52, + "startColumn": 4, + "startOffset": 3494, + "endColumn": 72, + "endOffset": 3562 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 37, + "startColumn": 4, + "startOffset": 2538, + "endColumn": 72, + "endOffset": 2606 + } + } + }, + { + "to": { + "startLine": 53, + "startColumn": 4, + "startOffset": 3567, + "endColumn": 66, + "endOffset": 3629 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 38, + "startColumn": 4, + "startOffset": 2611, + "endColumn": 66, + "endOffset": 2673 + } + } + }, + { + "to": { + "startLine": 54, + "startColumn": 4, + "startOffset": 3634, + "endColumn": 67, + "endOffset": 3697 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 39, + "startColumn": 4, + "startOffset": 2678, + "endColumn": 67, + "endOffset": 2741 + } + } + }, + { + "to": { + "startLine": 55, + "startColumn": 4, + "startOffset": 3702, + "endColumn": 103, + "endOffset": 3801 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 40, + "startColumn": 4, + "startOffset": 2746, + "endColumn": 103, + "endOffset": 2845 + } + } + }, + { + "to": { + "startLine": 56, + "startColumn": 4, + "startOffset": 3806, + "endColumn": 105, + "endOffset": 3907 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 41, + "startColumn": 4, + "startOffset": 2850, + "endColumn": 105, + "endOffset": 2951 + } + } + }, + { + "to": { + "startLine": 57, + "startColumn": 4, + "startOffset": 3912, + "endColumn": 58, + "endOffset": 3966 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 42, + "startColumn": 4, + "startOffset": 2956, + "endColumn": 58, + "endOffset": 3010 + } + } + }, + { + "to": { + "startLine": 58, + "startColumn": 4, + "startOffset": 3971, + "endColumn": 58, + "endOffset": 4025 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 43, + "startColumn": 4, + "startOffset": 3015, + "endColumn": 58, + "endOffset": 3069 + } + } + }, + { + "to": { + "startLine": 59, + "startColumn": 4, + "startOffset": 4030, + "endColumn": 58, + "endOffset": 4084 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 44, + "startColumn": 4, + "startOffset": 3074, + "endColumn": 58, + "endOffset": 3128 + } + } + }, + { + "to": { + "startLine": 60, + "startColumn": 4, + "startOffset": 4089, + "endColumn": 58, + "endOffset": 4143 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 45, + "startColumn": 4, + "startOffset": 3133, + "endColumn": 58, + "endOffset": 3187 + } + } + }, + { + "to": { + "startLine": 61, + "startColumn": 4, + "startOffset": 4148, + "endColumn": 58, + "endOffset": 4202 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 46, + "startColumn": 4, + "startOffset": 3192, + "endColumn": 58, + "endOffset": 3246 + } + } + }, + { + "to": { + "startLine": 62, + "startColumn": 4, + "startOffset": 4207, + "endColumn": 53, + "endOffset": 4256 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 47, + "startColumn": 4, + "startOffset": 3251, + "endColumn": 53, + "endOffset": 3300 + } + } + }, + { + "to": { + "startLine": 63, + "startColumn": 4, + "startOffset": 4261, + "endColumn": 53, + "endOffset": 4310 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 48, + "startColumn": 4, + "startOffset": 3305, + "endColumn": 53, + "endOffset": 3354 + } + } + }, + { + "to": { + "startLine": 64, + "startColumn": 4, + "startOffset": 4315, + "endColumn": 52, + "endOffset": 4363 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 49, + "startColumn": 4, + "startOffset": 3359, + "endColumn": 52, + "endOffset": 3407 + } + } + }, + { + "to": { + "startLine": 65, + "startColumn": 4, + "startOffset": 4368, + "endColumn": 53, + "endOffset": 4417 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 50, + "startColumn": 4, + "startOffset": 3412, + "endColumn": 53, + "endOffset": 3461 + } + } + }, + { + "to": { + "startLine": 66, + "startColumn": 4, + "startOffset": 4422, + "endColumn": 53, + "endOffset": 4471 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 51, + "startColumn": 4, + "startOffset": 3466, + "endColumn": 53, + "endOffset": 3515 + } + } + }, + { + "to": { + "startLine": 67, + "startColumn": 4, + "startOffset": 4476, + "endColumn": 53, + "endOffset": 4525 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 52, + "startColumn": 4, + "startOffset": 3520, + "endColumn": 53, + "endOffset": 3569 + } + } + }, + { + "to": { + "startLine": 68, + "startColumn": 4, + "startOffset": 4530, + "endColumn": 53, + "endOffset": 4579 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 53, + "startColumn": 4, + "startOffset": 3574, + "endColumn": 53, + "endOffset": 3623 + } + } + }, + { + "to": { + "startLine": 69, + "startColumn": 4, + "startOffset": 4584, + "endColumn": 73, + "endOffset": 4653 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 54, + "startColumn": 4, + "startOffset": 3628, + "endColumn": 73, + "endOffset": 3697 + } + } + }, + { + "to": { + "startLine": 70, + "startColumn": 4, + "startOffset": 4658, + "endColumn": 78, + "endOffset": 4732 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 55, + "startColumn": 4, + "startOffset": 3702, + "endColumn": 78, + "endOffset": 3776 + } + } + }, + { + "to": { + "startLine": 71, + "startColumn": 4, + "startOffset": 4737, + "endColumn": 72, + "endOffset": 4805 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 56, + "startColumn": 4, + "startOffset": 3781, + "endColumn": 72, + "endOffset": 3849 + } + } + }, + { + "to": { + "startLine": 72, + "startColumn": 4, + "startOffset": 4810, + "endColumn": 73, + "endOffset": 4879 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 57, + "startColumn": 4, + "startOffset": 3854, + "endColumn": 73, + "endOffset": 3923 + } + } + }, + { + "to": { + "startLine": 73, + "startColumn": 4, + "startOffset": 4884, + "endColumn": 70, + "endOffset": 4950 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 58, + "startColumn": 4, + "startOffset": 3928, + "endColumn": 70, + "endOffset": 3994 + } + } + }, + { + "to": { + "startLine": 74, + "startColumn": 4, + "startOffset": 4955, + "endColumn": 71, + "endOffset": 5022 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 59, + "startColumn": 4, + "startOffset": 3999, + "endColumn": 71, + "endOffset": 4066 + } + } + }, + { + "to": { + "startLine": 75, + "startColumn": 4, + "startOffset": 5027, + "endColumn": 71, + "endOffset": 5094 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 60, + "startColumn": 4, + "startOffset": 4071, + "endColumn": 71, + "endOffset": 4138 + } + } + }, + { + "to": { + "startLine": 76, + "startColumn": 4, + "startOffset": 5099, + "endColumn": 72, + "endOffset": 5167 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 61, + "startColumn": 4, + "startOffset": 4143, + "endColumn": 72, + "endOffset": 4211 + } + } + }, + { + "to": { + "startLine": 77, + "startColumn": 4, + "startOffset": 5172, + "endColumn": 56, + "endOffset": 5224 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 62, + "startColumn": 4, + "startOffset": 4216, + "endColumn": 56, + "endOffset": 4268 + } + } + }, + { + "to": { + "startLine": 78, + "startColumn": 4, + "startOffset": 5229, + "endColumn": 57, + "endOffset": 5282 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 63, + "startColumn": 4, + "startOffset": 4273, + "endColumn": 57, + "endOffset": 4326 + } + } + }, + { + "to": { + "startLine": 79, + "startColumn": 4, + "startOffset": 5287, + "endColumn": 72, + "endOffset": 5355 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 64, + "startColumn": 4, + "startOffset": 4331, + "endColumn": 72, + "endOffset": 4399 + } + } + }, + { + "to": { + "startLine": 80, + "startColumn": 4, + "startOffset": 5360, + "endColumn": 73, + "endOffset": 5429 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 65, + "startColumn": 4, + "startOffset": 4404, + "endColumn": 73, + "endOffset": 4473 + } + } + }, + { + "to": { + "startLine": 81, + "startColumn": 4, + "startOffset": 5434, + "endColumn": 73, + "endOffset": 5503 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 66, + "startColumn": 4, + "startOffset": 4478, + "endColumn": 73, + "endOffset": 4547 + } + } + }, + { + "to": { + "startLine": 82, + "startColumn": 4, + "startOffset": 5508, + "endColumn": 74, + "endOffset": 5578 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 67, + "startColumn": 4, + "startOffset": 4552, + "endColumn": 74, + "endOffset": 4622 + } + } + }, + { + "to": { + "startLine": 83, + "startColumn": 4, + "startOffset": 5583, + "endColumn": 71, + "endOffset": 5650 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 68, + "startColumn": 4, + "startOffset": 4627, + "endColumn": 71, + "endOffset": 4694 + } + } + }, + { + "to": { + "startLine": 84, + "startColumn": 4, + "startOffset": 5655, + "endColumn": 72, + "endOffset": 5723 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 69, + "startColumn": 4, + "startOffset": 4699, + "endColumn": 72, + "endOffset": 4767 + } + } + }, + { + "to": { + "startLine": 85, + "startColumn": 4, + "startOffset": 5728, + "endColumn": 69, + "endOffset": 5793 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 70, + "startColumn": 4, + "startOffset": 4772, + "endColumn": 69, + "endOffset": 4837 + } + } + }, + { + "to": { + "startLine": 86, + "startColumn": 4, + "startOffset": 5798, + "endColumn": 70, + "endOffset": 5864 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 71, + "startColumn": 4, + "startOffset": 4842, + "endColumn": 70, + "endOffset": 4908 + } + } + }, + { + "to": { + "startLine": 141, + "startColumn": 4, + "startOffset": 32500, + "endColumn": 68, + "endOffset": 32564 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 101, + "startColumn": 4, + "startOffset": 21248, + "endColumn": 68, + "endOffset": 21312 + } + } + }, + { + "to": { + "startLine": 142, + "startColumn": 4, + "startOffset": 32569, + "endColumn": 69, + "endOffset": 32634 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 102, + "startColumn": 4, + "startOffset": 21317, + "endColumn": 69, + "endOffset": 21382 + } + } + }, + { + "to": { + "startLine": 143, + "startColumn": 4, + "startOffset": 32639, + "endColumn": 73, + "endOffset": 32708 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 103, + "startColumn": 4, + "startOffset": 21387, + "endColumn": 73, + "endOffset": 21456 + } + } + }, + { + "to": { + "startLine": 144, + "startColumn": 4, + "startOffset": 32713, + "endColumn": 75, + "endOffset": 32784 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 104, + "startColumn": 4, + "startOffset": 21461, + "endColumn": 75, + "endOffset": 21532 + } + } + }, + { + "to": { + "startLine": 145, + "startColumn": 4, + "startOffset": 32789, + "endColumn": 76, + "endOffset": 32861 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 105, + "startColumn": 4, + "startOffset": 21537, + "endColumn": 76, + "endOffset": 21609 + } + } + }, + { + "to": { + "startLine": 146, + "startColumn": 4, + "startOffset": 32866, + "endColumn": 75, + "endOffset": 32937 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 106, + "startColumn": 4, + "startOffset": 21614, + "endColumn": 75, + "endOffset": 21685 + } + } + }, + { + "to": { + "startLine": 147, + "startColumn": 4, + "startOffset": 32942, + "endColumn": 76, + "endOffset": 33014 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 107, + "startColumn": 4, + "startOffset": 21690, + "endColumn": 76, + "endOffset": 21762 + } + } + }, + { + "to": { + "startLine": 148, + "startColumn": 4, + "startOffset": 33019, + "endColumn": 63, + "endOffset": 33078 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 108, + "startColumn": 4, + "startOffset": 21767, + "endColumn": 63, + "endOffset": 21826 + } + } + }, + { + "to": { + "startLine": 149, + "startColumn": 4, + "startOffset": 33083, + "endColumn": 64, + "endOffset": 33143 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 109, + "startColumn": 4, + "startOffset": 21831, + "endColumn": 64, + "endOffset": 21891 + } + } + }, + { + "to": { + "startLine": 150, + "startColumn": 4, + "startOffset": 33148, + "endColumn": 68, + "endOffset": 33212 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 110, + "startColumn": 4, + "startOffset": 21896, + "endColumn": 68, + "endOffset": 21960 + } + } + }, + { + "to": { + "startLine": 151, + "startColumn": 4, + "startOffset": 33217, + "endColumn": 76, + "endOffset": 33289 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 111, + "startColumn": 4, + "startOffset": 21965, + "endColumn": 76, + "endOffset": 22037 + } + } + }, + { + "to": { + "startLine": 152, + "startColumn": 4, + "startOffset": 33294, + "endColumn": 74, + "endOffset": 33364 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 112, + "startColumn": 4, + "startOffset": 22042, + "endColumn": 74, + "endOffset": 22112 + } + } + }, + { + "to": { + "startLine": 153, + "startColumn": 4, + "startOffset": 33369, + "endColumn": 68, + "endOffset": 33433 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 113, + "startColumn": 4, + "startOffset": 22117, + "endColumn": 68, + "endOffset": 22181 + } + } + }, + { + "to": { + "startLine": 154, + "startColumn": 4, + "startOffset": 33438, + "endColumn": 67, + "endOffset": 33501 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 114, + "startColumn": 4, + "startOffset": 22186, + "endColumn": 67, + "endOffset": 22249 + } + } + }, + { + "to": { + "startLine": 155, + "startColumn": 4, + "startOffset": 33506, + "endColumn": 76, + "endOffset": 33578 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 115, + "startColumn": 4, + "startOffset": 22254, + "endColumn": 76, + "endOffset": 22326 + } + } + }, + { + "to": { + "startLine": 156, + "startColumn": 4, + "startOffset": 33583, + "endColumn": 65, + "endOffset": 33644 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 116, + "startColumn": 4, + "startOffset": 22331, + "endColumn": 65, + "endOffset": 22392 + } + } + }, + { + "to": { + "startLine": 157, + "startColumn": 4, + "startOffset": 33649, + "endColumn": 96, + "endOffset": 33741 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 117, + "startColumn": 4, + "startOffset": 22397, + "endColumn": 96, + "endOffset": 22489 + } + } + }, + { + "to": { + "startLine": 158, + "startColumn": 4, + "startOffset": 33746, + "endColumn": 64, + "endOffset": 33806 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 118, + "startColumn": 4, + "startOffset": 22494, + "endColumn": 64, + "endOffset": 22554 + } + } + }, + { + "to": { + "startLine": 159, + "startColumn": 4, + "startOffset": 33811, + "endColumn": 68, + "endOffset": 33875 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 119, + "startColumn": 4, + "startOffset": 22559, + "endColumn": 68, + "endOffset": 22623 + } + } + }, + { + "to": { + "startLine": 160, + "startColumn": 4, + "startOffset": 33880, + "endColumn": 98, + "endOffset": 33974 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 120, + "startColumn": 4, + "startOffset": 22628, + "endColumn": 98, + "endOffset": 22722 + } + } + }, + { + "to": { + "startLine": 161, + "startColumn": 4, + "startOffset": 33979, + "endColumn": 58, + "endOffset": 34033 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 121, + "startColumn": 4, + "startOffset": 22727, + "endColumn": 58, + "endOffset": 22781 + } + } + }, + { + "to": { + "startLine": 162, + "startColumn": 4, + "startOffset": 34038, + "endColumn": 57, + "endOffset": 34091 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 122, + "startColumn": 4, + "startOffset": 22786, + "endColumn": 57, + "endOffset": 22839 + } + } + }, + { + "to": { + "startLine": 163, + "startColumn": 4, + "startOffset": 34096, + "endColumn": 56, + "endOffset": 34148 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 123, + "startColumn": 4, + "startOffset": 22844, + "endColumn": 56, + "endOffset": 22896 + } + } + }, + { + "to": { + "startLine": 164, + "startColumn": 4, + "startOffset": 34153, + "endColumn": 58, + "endOffset": 34207 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 124, + "startColumn": 4, + "startOffset": 22901, + "endColumn": 58, + "endOffset": 22955 + } + } + }, + { + "to": { + "startLine": 165, + "startColumn": 4, + "startOffset": 34212, + "endColumn": 70, + "endOffset": 34278 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 125, + "startColumn": 4, + "startOffset": 22960, + "endColumn": 70, + "endOffset": 23026 + } + } + }, + { + "to": { + "startLine": 166, + "startColumn": 4, + "startOffset": 34283, + "endColumn": 71, + "endOffset": 34350 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 126, + "startColumn": 4, + "startOffset": 23031, + "endColumn": 71, + "endOffset": 23098 + } + } + }, + { + "to": { + "startLine": 167, + "startColumn": 4, + "startOffset": 34355, + "endColumn": 71, + "endOffset": 34422 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 127, + "startColumn": 4, + "startOffset": 23103, + "endColumn": 71, + "endOffset": 23170 + } + } + }, + { + "to": { + "startLine": 168, + "startColumn": 4, + "startOffset": 34427, + "endColumn": 71, + "endOffset": 34494 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 128, + "startColumn": 4, + "startOffset": 23175, + "endColumn": 71, + "endOffset": 23242 + } + } + }, + { + "to": { + "startLine": 169, + "startColumn": 4, + "startOffset": 34499, + "endColumn": 71, + "endOffset": 34566 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 129, + "startColumn": 4, + "startOffset": 23247, + "endColumn": 71, + "endOffset": 23314 + } + } + }, + { + "to": { + "startLine": 170, + "startColumn": 4, + "startOffset": 34571, + "endColumn": 67, + "endOffset": 34634 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 130, + "startColumn": 4, + "startOffset": 23319, + "endColumn": 67, + "endOffset": 23382 + } + } + }, + { + "to": { + "startLine": 171, + "startColumn": 4, + "startOffset": 34639, + "endColumn": 67, + "endOffset": 34702 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 131, + "startColumn": 4, + "startOffset": 23387, + "endColumn": 67, + "endOffset": 23450 + } + } + }, + { + "to": { + "startLine": 172, + "startColumn": 4, + "startOffset": 34707, + "endColumn": 58, + "endOffset": 34761 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 132, + "startColumn": 4, + "startOffset": 23455, + "endColumn": 58, + "endOffset": 23509 + } + } + }, + { + "to": { + "startLine": 173, + "startColumn": 4, + "startOffset": 34766, + "endColumn": 62, + "endOffset": 34824 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 133, + "startColumn": 4, + "startOffset": 23514, + "endColumn": 62, + "endOffset": 23572 + } + } + }, + { + "to": { + "startLine": 174, + "startColumn": 4, + "startOffset": 34829, + "endColumn": 89, + "endOffset": 34914 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 134, + "startColumn": 4, + "startOffset": 23577, + "endColumn": 89, + "endOffset": 23662 + } + } + }, + { + "to": { + "startLine": 175, + "startColumn": 4, + "startOffset": 34919, + "endColumn": 90, + "endOffset": 35005 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 135, + "startColumn": 4, + "startOffset": 23667, + "endColumn": 90, + "endOffset": 23753 + } + } + }, + { + "to": { + "startLine": 176, + "startColumn": 4, + "startOffset": 35010, + "endColumn": 59, + "endOffset": 35065 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 136, + "startColumn": 4, + "startOffset": 23758, + "endColumn": 59, + "endOffset": 23813 + } + } + }, + { + "to": { + "startLine": 177, + "startColumn": 4, + "startOffset": 35070, + "endColumn": 65, + "endOffset": 35131 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 137, + "startColumn": 4, + "startOffset": 23818, + "endColumn": 65, + "endOffset": 23879 + } + } + }, + { + "to": { + "startLine": 178, + "startColumn": 4, + "startOffset": 35136, + "endColumn": 66, + "endOffset": 35198 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 138, + "startColumn": 4, + "startOffset": 23884, + "endColumn": 66, + "endOffset": 23946 + } + } + }, + { + "to": { + "startLine": 179, + "startColumn": 4, + "startOffset": 35203, + "endColumn": 65, + "endOffset": 35264 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 139, + "startColumn": 4, + "startOffset": 23951, + "endColumn": 65, + "endOffset": 24012 + } + } + }, + { + "to": { + "startLine": 180, + "startColumn": 4, + "startOffset": 35269, + "endColumn": 69, + "endOffset": 35334 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 140, + "startColumn": 4, + "startOffset": 24017, + "endColumn": 69, + "endOffset": 24082 + } + } + }, + { + "to": { + "startLine": 181, + "startColumn": 4, + "startOffset": 35339, + "endColumn": 63, + "endOffset": 35398 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 141, + "startColumn": 4, + "startOffset": 24087, + "endColumn": 63, + "endOffset": 24146 + } + } + }, + { + "to": { + "startLine": 182, + "startColumn": 4, + "startOffset": 35403, + "endColumn": 52, + "endOffset": 35451 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 142, + "startColumn": 4, + "startOffset": 24151, + "endColumn": 52, + "endOffset": 24199 + } + } + }, + { + "to": { + "startLine": 183, + "startColumn": 4, + "startOffset": 35456, + "endColumn": 112, + "endOffset": 35564 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 143, + "startColumn": 4, + "startOffset": 24204, + "endColumn": 112, + "endOffset": 24312 + } + } + }, + { + "to": { + "startLine": 184, + "startColumn": 4, + "startOffset": 35569, + "endColumn": 57, + "endOffset": 35622 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 144, + "startColumn": 4, + "startOffset": 24317, + "endColumn": 57, + "endOffset": 24370 + } + } + }, + { + "to": { + "startLine": 185, + "startColumn": 4, + "startOffset": 35627, + "endColumn": 64, + "endOffset": 35687 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 145, + "startColumn": 4, + "startOffset": 24375, + "endColumn": 64, + "endOffset": 24435 + } + } + }, + { + "to": { + "startLine": 186, + "startColumn": 4, + "startOffset": 35692, + "endColumn": 63, + "endOffset": 35751 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 146, + "startColumn": 4, + "startOffset": 24440, + "endColumn": 63, + "endOffset": 24499 + } + } + }, + { + "to": { + "startLine": 187, + "startColumn": 4, + "startOffset": 35756, + "endColumn": 74, + "endOffset": 35826 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 147, + "startColumn": 4, + "startOffset": 24504, + "endColumn": 74, + "endOffset": 24574 + } + } + }, + { + "to": { + "startLine": 188, + "startColumn": 4, + "startOffset": 35831, + "endColumn": 72, + "endOffset": 35899 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 148, + "startColumn": 4, + "startOffset": 24579, + "endColumn": 72, + "endOffset": 24647 + } + } + }, + { + "to": { + "startLine": 189, + "startColumn": 4, + "startOffset": 35904, + "endColumn": 71, + "endOffset": 35971 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 149, + "startColumn": 4, + "startOffset": 24652, + "endColumn": 71, + "endOffset": 24719 + } + } + }, + { + "to": { + "startLine": 190, + "startColumn": 4, + "startOffset": 35976, + "endColumn": 48, + "endOffset": 36020 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 150, + "startColumn": 4, + "startOffset": 24724, + "endColumn": 48, + "endOffset": 24768 + } + } + }, + { + "to": { + "startLine": 191, + "startColumn": 4, + "startOffset": 36025, + "endColumn": 60, + "endOffset": 36081 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 151, + "startColumn": 4, + "startOffset": 24773, + "endColumn": 60, + "endOffset": 24829 + } + } + }, + { + "to": { + "startLine": 192, + "startColumn": 4, + "startOffset": 36086, + "endColumn": 60, + "endOffset": 36142 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 152, + "startColumn": 4, + "startOffset": 24834, + "endColumn": 60, + "endOffset": 24890 + } + } + }, + { + "to": { + "startLine": 193, + "startColumn": 4, + "startOffset": 36147, + "endColumn": 60, + "endOffset": 36203 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 153, + "startColumn": 4, + "startOffset": 24895, + "endColumn": 60, + "endOffset": 24951 + } + } + }, + { + "to": { + "startLine": 194, + "startColumn": 4, + "startOffset": 36208, + "endColumn": 61, + "endOffset": 36265 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 154, + "startColumn": 4, + "startOffset": 24956, + "endColumn": 61, + "endOffset": 25013 + } + } + }, + { + "to": { + "startLine": 195, + "startColumn": 4, + "startOffset": 36270, + "endColumn": 63, + "endOffset": 36329 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 155, + "startColumn": 4, + "startOffset": 25018, + "endColumn": 63, + "endOffset": 25077 + } + } + }, + { + "to": { + "startLine": 196, + "startColumn": 4, + "startOffset": 36334, + "endColumn": 63, + "endOffset": 36393 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 156, + "startColumn": 4, + "startOffset": 25082, + "endColumn": 63, + "endOffset": 25141 + } + } + }, + { + "to": { + "startLine": 197, + "startColumn": 4, + "startOffset": 36398, + "endColumn": 63, + "endOffset": 36457 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 157, + "startColumn": 4, + "startOffset": 25146, + "endColumn": 63, + "endOffset": 25205 + } + } + }, + { + "to": { + "startLine": 198, + "startColumn": 4, + "startOffset": 36462, + "endColumn": 64, + "endOffset": 36522 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 158, + "startColumn": 4, + "startOffset": 25210, + "endColumn": 64, + "endOffset": 25270 + } + } + }, + { + "to": { + "startLine": 199, + "startColumn": 4, + "startOffset": 36527, + "endColumn": 62, + "endOffset": 36585 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 159, + "startColumn": 4, + "startOffset": 25275, + "endColumn": 62, + "endOffset": 25333 + } + } + }, + { + "to": { + "startLine": 200, + "startColumn": 4, + "startOffset": 36590, + "endColumn": 59, + "endOffset": 36645 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 160, + "startColumn": 4, + "startOffset": 25338, + "endColumn": 59, + "endOffset": 25393 + } + } + }, + { + "to": { + "startLine": 201, + "startColumn": 4, + "startOffset": 36650, + "endColumn": 60, + "endOffset": 36706 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 161, + "startColumn": 4, + "startOffset": 25398, + "endColumn": 60, + "endOffset": 25454 + } + } + }, + { + "to": { + "startLine": 202, + "startColumn": 4, + "startOffset": 36711, + "endColumn": 58, + "endOffset": 36765 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 162, + "startColumn": 4, + "startOffset": 25459, + "endColumn": 58, + "endOffset": 25513 + } + } + }, + { + "to": { + "startLine": 203, + "startColumn": 4, + "startOffset": 36770, + "endColumn": 59, + "endOffset": 36825 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 163, + "startColumn": 4, + "startOffset": 25518, + "endColumn": 59, + "endOffset": 25573 + } + } + }, + { + "to": { + "startLine": 204, + "startColumn": 4, + "startOffset": 36830, + "endColumn": 61, + "endOffset": 36887 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 164, + "startColumn": 4, + "startOffset": 25578, + "endColumn": 61, + "endOffset": 25635 + } + } + }, + { + "to": { + "startLine": 205, + "startColumn": 4, + "startOffset": 36892, + "endColumn": 70, + "endOffset": 36958 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 165, + "startColumn": 4, + "startOffset": 25640, + "endColumn": 70, + "endOffset": 25706 + } + } + }, + { + "to": { + "startLine": 206, + "startColumn": 4, + "startOffset": 36963, + "endColumn": 59, + "endOffset": 37018 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 166, + "startColumn": 4, + "startOffset": 25711, + "endColumn": 59, + "endOffset": 25766 + } + } + }, + { + "to": { + "startLine": 207, + "startColumn": 4, + "startOffset": 37023, + "endColumn": 67, + "endOffset": 37086 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 167, + "startColumn": 4, + "startOffset": 25771, + "endColumn": 67, + "endOffset": 25834 + } + } + }, + { + "to": { + "startLine": 208, + "startColumn": 4, + "startOffset": 37091, + "endColumn": 57, + "endOffset": 37144 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 434, + "endColumn": 57, + "endOffset": 487 + } + } + }, + { + "to": { + "startLine": 209, + "startColumn": 4, + "startOffset": 37149, + "endColumn": 55, + "endOffset": 37200 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 492, + "endColumn": 55, + "endOffset": 543 + } + } + }, + { + "to": { + "startLine": 210, + "startColumn": 4, + "startOffset": 37205, + "endColumn": 53, + "endOffset": 37254 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 7616, + "endColumn": 53, + "endOffset": 7665 + } + } + }, + { + "to": { + "startLine": 211, + "startColumn": 4, + "startOffset": 37259, + "endColumn": 66, + "endOffset": 37321 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 30, + "startColumn": 4, + "startOffset": 7670, + "endColumn": 66, + "endOffset": 7732 + } + } + }, + { + "to": { + "startLine": 212, + "startColumn": 4, + "startOffset": 37326, + "endColumn": 69, + "endOffset": 37391 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 31, + "startColumn": 4, + "startOffset": 7737, + "endColumn": 69, + "endOffset": 7802 + } + } + }, + { + "to": { + "startLine": 213, + "startColumn": 4, + "startOffset": 37396, + "endColumn": 55, + "endOffset": 37447 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 32, + "startColumn": 4, + "startOffset": 7807, + "endColumn": 55, + "endOffset": 7858 + } + } + }, + { + "to": { + "startLine": 214, + "startColumn": 4, + "startOffset": 37452, + "endColumn": 50, + "endOffset": 37498 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 33, + "startColumn": 4, + "startOffset": 7863, + "endColumn": 50, + "endOffset": 7909 + } + } + }, + { + "to": { + "startLine": 215, + "startColumn": 4, + "startOffset": 37503, + "endColumn": 52, + "endOffset": 37551 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 34, + "startColumn": 4, + "startOffset": 7914, + "endColumn": 52, + "endOffset": 7962 + } + } + }, + { + "to": { + "startLine": 216, + "startColumn": 4, + "startOffset": 37556, + "endColumn": 51, + "endOffset": 37603 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 35, + "startColumn": 4, + "startOffset": 7967, + "endColumn": 51, + "endOffset": 8014 + } + } + }, + { + "to": { + "startLine": 217, + "startColumn": 4, + "startOffset": 37608, + "endColumn": 53, + "endOffset": 37657 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 36, + "startColumn": 4, + "startOffset": 8019, + "endColumn": 53, + "endOffset": 8068 + } + } + }, + { + "to": { + "startLine": 218, + "startColumn": 4, + "startOffset": 37662, + "endColumn": 62, + "endOffset": 37720 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 37, + "startColumn": 4, + "startOffset": 8073, + "endColumn": 62, + "endOffset": 8131 + } + } + }, + { + "to": { + "startLine": 219, + "startColumn": 4, + "startOffset": 37725, + "endColumn": 58, + "endOffset": 37779 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 38, + "startColumn": 4, + "startOffset": 8136, + "endColumn": 58, + "endOffset": 8190 + } + } + }, + { + "to": { + "startLine": 220, + "startColumn": 4, + "startOffset": 37784, + "endColumn": 61, + "endOffset": 37841 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 39, + "startColumn": 4, + "startOffset": 8195, + "endColumn": 61, + "endOffset": 8252 + } + } + }, + { + "to": { + "startLine": 221, + "startColumn": 4, + "startOffset": 37846, + "endColumn": 58, + "endOffset": 37900 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 40, + "startColumn": 4, + "startOffset": 8257, + "endColumn": 58, + "endOffset": 8311 + } + } + }, + { + "to": { + "startLine": 222, + "startColumn": 4, + "startOffset": 37905, + "endColumn": 59, + "endOffset": 37960 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 41, + "startColumn": 4, + "startOffset": 8316, + "endColumn": 59, + "endOffset": 8371 + } + } + }, + { + "to": { + "startLine": 223, + "startColumn": 4, + "startOffset": 37965, + "endColumn": 62, + "endOffset": 38023 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 42, + "startColumn": 4, + "startOffset": 8376, + "endColumn": 62, + "endOffset": 8434 + } + } + }, + { + "to": { + "startLine": 224, + "startColumn": 4, + "startOffset": 38028, + "endColumn": 74, + "endOffset": 38098 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 43, + "startColumn": 4, + "startOffset": 8439, + "endColumn": 74, + "endOffset": 8509 + } + } + }, + { + "to": { + "startLine": 225, + "startColumn": 4, + "startOffset": 38103, + "endColumn": 71, + "endOffset": 38170 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 44, + "startColumn": 4, + "startOffset": 8514, + "endColumn": 71, + "endOffset": 8581 + } + } + }, + { + "to": { + "startLine": 226, + "startColumn": 4, + "startOffset": 38175, + "endColumn": 70, + "endOffset": 38241 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 45, + "startColumn": 4, + "startOffset": 8586, + "endColumn": 70, + "endOffset": 8652 + } + } + }, + { + "to": { + "startLine": 227, + "startColumn": 4, + "startOffset": 38246, + "endColumn": 55, + "endOffset": 38297 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 46, + "startColumn": 4, + "startOffset": 8657, + "endColumn": 55, + "endOffset": 8708 + } + } + }, + { + "to": { + "startLine": 228, + "startColumn": 4, + "startOffset": 38302, + "endColumn": 70, + "endOffset": 38368 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 47, + "startColumn": 4, + "startOffset": 8713, + "endColumn": 70, + "endOffset": 8779 + } + } + }, + { + "to": { + "startLine": 229, + "startColumn": 4, + "startOffset": 38373, + "endColumn": 56, + "endOffset": 38425 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 48, + "startColumn": 4, + "startOffset": 8784, + "endColumn": 56, + "endOffset": 8836 + } + } + }, + { + "to": { + "startLine": 230, + "startColumn": 4, + "startOffset": 38430, + "endColumn": 56, + "endOffset": 38482 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 49, + "startColumn": 4, + "startOffset": 8841, + "endColumn": 56, + "endOffset": 8893 + } + } + }, + { + "to": { + "startLine": 231, + "startColumn": 4, + "startOffset": 38487, + "endColumn": 65, + "endOffset": 38548 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 50, + "startColumn": 4, + "startOffset": 8898, + "endColumn": 65, + "endOffset": 8959 + } + } + }, + { + "to": { + "startLine": 232, + "startColumn": 4, + "startOffset": 38553, + "endColumn": 63, + "endOffset": 38612 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 51, + "startColumn": 4, + "startOffset": 8964, + "endColumn": 63, + "endOffset": 9023 + } + } + }, + { + "to": { + "startLine": 233, + "startColumn": 4, + "startOffset": 38617, + "endColumn": 70, + "endOffset": 38683 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 52, + "startColumn": 4, + "startOffset": 9028, + "endColumn": 70, + "endOffset": 9094 + } + } + }, + { + "to": { + "startLine": 234, + "startColumn": 4, + "startOffset": 38688, + "endColumn": 56, + "endOffset": 38740 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 53, + "startColumn": 4, + "startOffset": 9099, + "endColumn": 56, + "endOffset": 9151 + } + } + }, + { + "to": { + "startLine": 235, + "startColumn": 4, + "startOffset": 38745, + "endColumn": 52, + "endOffset": 38793 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 54, + "startColumn": 4, + "startOffset": 9156, + "endColumn": 52, + "endOffset": 9204 + } + } + }, + { + "to": { + "startLine": 236, + "startColumn": 4, + "startOffset": 38798, + "endColumn": 62, + "endOffset": 38856 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 55, + "startColumn": 4, + "startOffset": 9209, + "endColumn": 62, + "endOffset": 9267 + } + } + }, + { + "to": { + "startLine": 237, + "startColumn": 4, + "startOffset": 38861, + "endColumn": 51, + "endOffset": 38908 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 56, + "startColumn": 4, + "startOffset": 9272, + "endColumn": 51, + "endOffset": 9319 + } + } + }, + { + "to": { + "startLine": 238, + "startColumn": 4, + "startOffset": 38913, + "endColumn": 57, + "endOffset": 38966 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 57, + "startColumn": 4, + "startOffset": 9324, + "endColumn": 57, + "endOffset": 9377 + } + } + }, + { + "to": { + "startLine": 239, + "startColumn": 4, + "startOffset": 38971, + "endColumn": 85, + "endOffset": 39052 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 168, + "startColumn": 4, + "startOffset": 25839, + "endColumn": 85, + "endOffset": 25920 + } + } + }, + { + "to": { + "startLine": 240, + "startColumn": 4, + "startOffset": 39057, + "endColumn": 86, + "endOffset": 39139 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 169, + "startColumn": 4, + "startOffset": 25925, + "endColumn": 86, + "endOffset": 26007 + } + } + }, + { + "to": { + "startLine": 241, + "startColumn": 4, + "startOffset": 39144, + "endColumn": 41, + "endOffset": 39181 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 548, + "endColumn": 41, + "endOffset": 585 + } + } + }, + { + "to": { + "startLine": 242, + "startColumn": 4, + "startOffset": 39186, + "endColumn": 89, + "endOffset": 39271 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 170, + "startColumn": 4, + "startOffset": 26012, + "endColumn": 89, + "endOffset": 26097 + } + } + }, + { + "to": { + "startLine": 243, + "startColumn": 4, + "startOffset": 39276, + "endColumn": 86, + "endOffset": 39358 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 171, + "startColumn": 4, + "startOffset": 26102, + "endColumn": 86, + "endOffset": 26184 + } + } + }, + { + "to": { + "startLine": 244, + "startColumn": 4, + "startOffset": 39363, + "endColumn": 87, + "endOffset": 39446 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 172, + "startColumn": 4, + "startOffset": 26189, + "endColumn": 87, + "endOffset": 26272 + } + } + }, + { + "to": { + "startLine": 245, + "startColumn": 4, + "startOffset": 39451, + "endColumn": 74, + "endOffset": 39521 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/recyclerview-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 327, + "endColumn": 74, + "endOffset": 397 + } + } + }, + { + "to": { + "startLine": 246, + "startColumn": 4, + "startOffset": 39526, + "endColumn": 75, + "endOffset": 39597 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/recyclerview-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 402, + "endColumn": 75, + "endOffset": 473 + } + } + }, + { + "to": { + "startLine": 247, + "startColumn": 4, + "startOffset": 39602, + "endColumn": 71, + "endOffset": 39669 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/recyclerview-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 478, + "endColumn": 71, + "endOffset": 545 + } + } + }, + { + "to": { + "startLine": 248, + "startColumn": 4, + "startOffset": 39674, + "endColumn": 49, + "endOffset": 39719 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 590, + "endColumn": 49, + "endOffset": 635 + } + } + }, + { + "to": { + "startLine": 249, + "startColumn": 4, + "startOffset": 39724, + "endColumn": 58, + "endOffset": 39778 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 640, + "endColumn": 58, + "endOffset": 694 + } + } + }, + { + "to": { + "startLine": 250, + "startColumn": 4, + "startOffset": 39783, + "endColumn": 61, + "endOffset": 39840 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 173, + "startColumn": 4, + "startOffset": 26277, + "endColumn": 61, + "endOffset": 26334 + } + } + }, + { + "to": { + "startLine": 251, + "startColumn": 4, + "startOffset": 39845, + "endColumn": 60, + "endOffset": 39901 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 174, + "startColumn": 4, + "startOffset": 26339, + "endColumn": 60, + "endOffset": 26395 + } + } + }, + { + "to": { + "startLine": 252, + "startColumn": 4, + "startOffset": 39906, + "endColumn": 56, + "endOffset": 39958 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 175, + "startColumn": 4, + "startOffset": 26400, + "endColumn": 56, + "endOffset": 26452 + } + } + }, + { + "to": { + "startLine": 253, + "startColumn": 4, + "startOffset": 39963, + "endColumn": 87, + "endOffset": 40046 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 699, + "endColumn": 87, + "endOffset": 782 + } + } + }, + { + "to": { + "startLine": 254, + "startColumn": 4, + "startOffset": 40051, + "endColumn": 89, + "endOffset": 40136 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 787, + "endColumn": 89, + "endOffset": 872 + } + } + }, + { + "to": { + "startLine": 255, + "startColumn": 4, + "startOffset": 40141, + "endColumn": 87, + "endOffset": 40224 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 877, + "endColumn": 87, + "endOffset": 960 + } + } + }, + { + "to": { + "startLine": 256, + "startColumn": 4, + "startOffset": 40229, + "endColumn": 83, + "endOffset": 40308 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 965, + "endColumn": 83, + "endOffset": 1044 + } + } + }, + { + "to": { + "startLine": 257, + "startColumn": 4, + "startOffset": 40313, + "endColumn": 85, + "endOffset": 40394 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1049, + "endColumn": 85, + "endOffset": 1130 + } + } + }, + { + "to": { + "startLine": 258, + "startColumn": 4, + "startOffset": 40399, + "endColumn": 93, + "endOffset": 40488 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values/values.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1135, + "endColumn": 93, + "endOffset": 1224 + } + } + }, + { + "to": { + "startLine": 259, + "startColumn": 4, + "startOffset": 40493, + "endColumn": 71, + "endOffset": 40560 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 176, + "startColumn": 4, + "startOffset": 26457, + "endColumn": 71, + "endOffset": 26524 + } + } + }, + { + "to": { + "startLine": 260, + "startColumn": 4, + "startOffset": 40565, + "endColumn": 56, + "endOffset": 40617 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 177, + "startColumn": 4, + "startOffset": 26529, + "endColumn": 56, + "endOffset": 26581 + } + } + }, + { + "to": { + "startLine": 261, + "startColumn": 4, + "startOffset": 40622, + "endColumn": 47, + "endOffset": 40665 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 178, + "startColumn": 4, + "startOffset": 26586, + "endColumn": 47, + "endOffset": 26629 + } + } + }, + { + "to": { + "startLine": 262, + "startColumn": 4, + "startOffset": 40670, + "endColumn": 48, + "endOffset": 40714 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 179, + "startColumn": 4, + "startOffset": 26634, + "endColumn": 48, + "endOffset": 26678 + } + } + }, + { + "to": { + "startLine": 263, + "startColumn": 4, + "startOffset": 40719, + "endColumn": 50, + "endOffset": 40765 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 180, + "startColumn": 4, + "startOffset": 26683, + "endColumn": 50, + "endOffset": 26729 + } + } + }, + { + "to": { + "startLine": 264, + "startColumn": 4, + "startOffset": 40770, + "endColumn": 33, + "endOffset": 40799 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 181, + "startColumn": 4, + "startOffset": 26734, + "endColumn": 33, + "endOffset": 26763 + } + } + }, + { + "to": { + "startLine": 265, + "startColumn": 4, + "startOffset": 40804, + "endColumn": 65, + "endOffset": 40865 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/recyclerview-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 550, + "endColumn": 65, + "endOffset": 611 + } + } + }, + { + "to": { + "startLine": 266, + "startColumn": 4, + "startOffset": 40870, + "endColumn": 46, + "endOffset": 40912 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 182, + "startColumn": 4, + "startOffset": 26768, + "endColumn": 46, + "endOffset": 26810 + } + } + }, + { + "to": { + "startLine": 267, + "startColumn": 4, + "startOffset": 40917, + "endColumn": 48, + "endOffset": 40961 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 183, + "startColumn": 4, + "startOffset": 26815, + "endColumn": 48, + "endOffset": 26859 + } + } + }, + { + "to": { + "startLine": 268, + "startColumn": 4, + "startOffset": 40966, + "endColumn": 45, + "endOffset": 41007 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 184, + "startColumn": 4, + "startOffset": 26864, + "endColumn": 45, + "endOffset": 26905 + } + } + }, + { + "to": { + "startLine": 269, + "startColumn": 4, + "startOffset": 41012, + "endColumn": 31, + "endOffset": 41039 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 185, + "startColumn": 4, + "startOffset": 26910, + "endColumn": 31, + "endOffset": 26937 + } + } + }, + { + "to": { + "startLine": 270, + "startColumn": 4, + "startOffset": 41044, + "endColumn": 47, + "endOffset": 41087 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 58, + "startColumn": 4, + "startOffset": 9382, + "endColumn": 47, + "endOffset": 9425 + } + } + }, + { + "to": { + "startLine": 271, + "startColumn": 4, + "startOffset": 41092, + "endColumn": 63, + "endOffset": 41151 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 186, + "startColumn": 4, + "startOffset": 26942, + "endColumn": 63, + "endOffset": 27001 + } + } + }, + { + "to": { + "startLine": 272, + "startColumn": 4, + "startOffset": 41156, + "endColumn": 61, + "endOffset": 41213 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 187, + "startColumn": 4, + "startOffset": 27006, + "endColumn": 61, + "endOffset": 27063 + } + } + }, + { + "to": { + "startLine": 273, + "startColumn": 4, + "startOffset": 41218, + "endColumn": 54, + "endOffset": 41268 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 188, + "startColumn": 4, + "startOffset": 27068, + "endColumn": 54, + "endOffset": 27118 + } + } + }, + { + "to": { + "startLine": 274, + "startColumn": 4, + "startOffset": 41273, + "endColumn": 61, + "endOffset": 41330 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 59, + "startColumn": 4, + "startOffset": 9430, + "endColumn": 61, + "endOffset": 9487 + } + } + }, + { + "to": { + "startLine": 275, + "startColumn": 4, + "startOffset": 41335, + "endColumn": 59, + "endOffset": 41390 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 189, + "startColumn": 4, + "startOffset": 27123, + "endColumn": 59, + "endOffset": 27178 + } + } + }, + { + "to": { + "startLine": 276, + "startColumn": 4, + "startOffset": 41395, + "endColumn": 62, + "endOffset": 41453 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 60, + "startColumn": 4, + "startOffset": 9492, + "endColumn": 62, + "endOffset": 9550 + } + } + }, + { + "to": { + "startLine": 277, + "startColumn": 4, + "startOffset": 41458, + "endColumn": 69, + "endOffset": 41523 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 190, + "startColumn": 4, + "startOffset": 27183, + "endColumn": 69, + "endOffset": 27248 + } + } + }, + { + "to": { + "startLine": 278, + "startColumn": 4, + "startOffset": 41528, + "endColumn": 73, + "endOffset": 41597 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 191, + "startColumn": 4, + "startOffset": 27253, + "endColumn": 73, + "endOffset": 27322 + } + } + }, + { + "to": { + "startLine": 279, + "startColumn": 4, + "startOffset": 41602, + "endColumn": 77, + "endOffset": 41675 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 192, + "startColumn": 4, + "startOffset": 27327, + "endColumn": 77, + "endOffset": 27400 + } + } + }, + { + "to": { + "startLine": 280, + "startColumn": 4, + "startOffset": 41680, + "endColumn": 92, + "endOffset": 41768 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 193, + "startColumn": 4, + "startOffset": 27405, + "endColumn": 92, + "endOffset": 27493 + } + } + }, + { + "to": { + "startLine": 281, + "startColumn": 4, + "startOffset": 41773, + "endColumn": 69, + "endOffset": 41838 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 194, + "startColumn": 4, + "startOffset": 27498, + "endColumn": 69, + "endOffset": 27563 + } + } + }, + { + "to": { + "startLine": 282, + "startColumn": 4, + "startOffset": 41843, + "endColumn": 77, + "endOffset": 41916 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 195, + "startColumn": 4, + "startOffset": 27568, + "endColumn": 77, + "endOffset": 27641 + } + } + }, + { + "to": { + "startLine": 283, + "startColumn": 4, + "startOffset": 41921, + "endColumn": 53, + "endOffset": 41970 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 196, + "startColumn": 4, + "startOffset": 27646, + "endColumn": 53, + "endOffset": 27695 + } + } + }, + { + "to": { + "startLine": 284, + "startColumn": 4, + "startOffset": 41975, + "endColumn": 69, + "endOffset": 42040 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 197, + "startColumn": 4, + "startOffset": 27700, + "endColumn": 69, + "endOffset": 27765 + } + } + }, + { + "to": { + "startLine": 285, + "startColumn": 4, + "startOffset": 42045, + "endColumn": 84, + "endOffset": 42125 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 198, + "startColumn": 4, + "startOffset": 27770, + "endColumn": 84, + "endOffset": 27850 + } + } + }, + { + "to": { + "startLine": 286, + "startColumn": 4, + "startOffset": 42130, + "endColumn": 47, + "endOffset": 42173 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 199, + "startColumn": 4, + "startOffset": 27855, + "endColumn": 47, + "endOffset": 27898 + } + } + }, + { + "to": { + "startLine": 287, + "startColumn": 4, + "startOffset": 42178, + "endColumn": 45, + "endOffset": 42219 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 200, + "startColumn": 4, + "startOffset": 27903, + "endColumn": 45, + "endOffset": 27944 + } + } + }, + { + "to": { + "startLine": 288, + "startColumn": 4, + "startOffset": 42224, + "endColumn": 51, + "endOffset": 42271 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 201, + "startColumn": 4, + "startOffset": 27949, + "endColumn": 51, + "endOffset": 27996 + } + } + }, + { + "to": { + "startLine": 289, + "startColumn": 4, + "startOffset": 42276, + "endColumn": 72, + "endOffset": 42344 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 202, + "startColumn": 4, + "startOffset": 28001, + "endColumn": 72, + "endOffset": 28069 + } + } + }, + { + "to": { + "startLine": 290, + "startColumn": 4, + "startOffset": 42349, + "endColumn": 73, + "endOffset": 42418 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 203, + "startColumn": 4, + "startOffset": 28074, + "endColumn": 73, + "endOffset": 28143 + } + } + }, + { + "to": { + "startLine": 291, + "startColumn": 4, + "startOffset": 42423, + "endColumn": 68, + "endOffset": 42487 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 204, + "startColumn": 4, + "startOffset": 28148, + "endColumn": 68, + "endOffset": 28212 + } + } + }, + { + "to": { + "startLine": 292, + "startColumn": 4, + "startOffset": 42492, + "endColumn": 74, + "endOffset": 42562 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 205, + "startColumn": 4, + "startOffset": 28217, + "endColumn": 74, + "endOffset": 28287 + } + } + }, + { + "to": { + "startLine": 293, + "startColumn": 4, + "startOffset": 42567, + "endColumn": 73, + "endOffset": 42636 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 206, + "startColumn": 4, + "startOffset": 28292, + "endColumn": 73, + "endOffset": 28361 + } + } + }, + { + "to": { + "startLine": 294, + "startColumn": 4, + "startOffset": 42641, + "endColumn": 73, + "endOffset": 42710 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 207, + "startColumn": 4, + "startOffset": 28366, + "endColumn": 73, + "endOffset": 28435 + } + } + }, + { + "to": { + "startLine": 295, + "startColumn": 4, + "startOffset": 42715, + "endColumn": 88, + "endOffset": 42799 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 208, + "startColumn": 4, + "startOffset": 28440, + "endColumn": 88, + "endOffset": 28524 + } + } + }, + { + "to": { + "startLine": 296, + "startColumn": 4, + "startOffset": 42804, + "endColumn": 69, + "endOffset": 42869 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 209, + "startColumn": 4, + "startOffset": 28529, + "endColumn": 69, + "endOffset": 28594 + } + } + }, + { + "to": { + "startLine": 297, + "startColumn": 4, + "startOffset": 42874, + "endColumn": 51, + "endOffset": 42921 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values/values.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1229, + "endColumn": 51, + "endOffset": 1276 + } + } + }, + { + "to": { + "startLine": 298, + "startColumn": 4, + "startOffset": 42926, + "endColumn": 46, + "endOffset": 42968 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values/values.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1281, + "endColumn": 46, + "endOffset": 1323 + } + } + }, + { + "to": { + "startLine": 299, + "startColumn": 4, + "startOffset": 42973, + "endColumn": 48, + "endOffset": 43017 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values/values.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1328, + "endColumn": 48, + "endOffset": 1372 + } + } + }, + { + "to": { + "startLine": 300, + "startColumn": 4, + "startOffset": 43022, + "endColumn": 46, + "endOffset": 43064 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values/values.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1377, + "endColumn": 46, + "endOffset": 1419 + } + } + }, + { + "to": { + "startLine": 301, + "startColumn": 4, + "startOffset": 43069, + "endColumn": 42, + "endOffset": 43107 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values/values.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 1424, + "endColumn": 42, + "endOffset": 1462 + } + } + }, + { + "to": { + "startLine": 302, + "startColumn": 4, + "startOffset": 43112, + "endColumn": 58, + "endOffset": 43166 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values/values.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 1467, + "endColumn": 58, + "endOffset": 1521 + } + } + }, + { + "to": { + "startLine": 303, + "startColumn": 4, + "startOffset": 43171, + "endColumn": 48, + "endOffset": 43215 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values/values.xml", + "position": { + "startLine": 24, + "startColumn": 4, + "startOffset": 1526, + "endColumn": 48, + "endOffset": 1570 + } + } + }, + { + "to": { + "startLine": 304, + "startColumn": 4, + "startOffset": 43220, + "endColumn": 46, + "endOffset": 43262 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values/values.xml", + "position": { + "startLine": 25, + "startColumn": 4, + "startOffset": 1575, + "endColumn": 46, + "endOffset": 1617 + } + } + }, + { + "to": { + "startLine": 305, + "startColumn": 4, + "startOffset": 43267, + "endColumn": 40, + "endOffset": 43303 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values/values.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 1622, + "endColumn": 40, + "endOffset": 1658 + } + } + }, + { + "to": { + "startLine": 306, + "startColumn": 4, + "startOffset": 43308, + "endColumn": 42, + "endOffset": 43346 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values/values.xml", + "position": { + "startLine": 27, + "startColumn": 4, + "startOffset": 1663, + "endColumn": 42, + "endOffset": 1701 + } + } + }, + { + "to": { + "startLine": 307, + "startColumn": 4, + "startOffset": 43351, + "endColumn": 45, + "endOffset": 43392 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values/values.xml", + "position": { + "startLine": 28, + "startColumn": 4, + "startOffset": 1706, + "endColumn": 45, + "endOffset": 1747 + } + } + }, + { + "to": { + "startLine": 308, + "startColumn": 4, + "startOffset": 43397, + "endColumn": 144, + "endOffset": 43537 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 61, + "startColumn": 4, + "startOffset": 9555, + "endColumn": 144, + "endOffset": 9695 + } + } + }, + { + "to": { + "startLine": 309, + "startColumn": 4, + "startOffset": 43542, + "endColumn": 148, + "endOffset": 43686 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values/values.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 1752, + "endColumn": 148, + "endOffset": 1896 + } + } + }, + { + "to": { + "startLine": 310, + "startColumn": 4, + "startOffset": 43691, + "endColumn": 51, + "endOffset": 43738 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values/values.xml", + "position": { + "startLine": 30, + "startColumn": 4, + "startOffset": 1901, + "endColumn": 51, + "endOffset": 1948 + } + } + }, + { + "to": { + "startLine": 311, + "startColumn": 4, + "startOffset": 43743, + "endColumn": 63, + "endOffset": 43802 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values/values.xml", + "position": { + "startLine": 31, + "startColumn": 4, + "startOffset": 1953, + "endColumn": 63, + "endOffset": 2012 + } + } + }, + { + "to": { + "startLine": 312, + "startColumn": 4, + "startOffset": 43807, + "endColumn": 137, + "endOffset": 43940 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values/values.xml", + "position": { + "startLine": 32, + "startColumn": 4, + "startOffset": 2017, + "endColumn": 137, + "endOffset": 2150 + } + } + }, + { + "to": { + "startLine": 313, + "startColumn": 4, + "startOffset": 43945, + "endColumn": 57, + "endOffset": 43998 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values/values.xml", + "position": { + "startLine": 33, + "startColumn": 4, + "startOffset": 2155, + "endColumn": 57, + "endOffset": 2208 + } + } + }, + { + "to": { + "startLine": 314, + "startColumn": 4, + "startOffset": 44003, + "endColumn": 79, + "endOffset": 44078 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values/values.xml", + "position": { + "startLine": 34, + "startColumn": 4, + "startOffset": 2213, + "endColumn": 79, + "endOffset": 2288 + } + } + }, + { + "to": { + "startLine": 315, + "startColumn": 4, + "startOffset": 44083, + "endColumn": 120, + "endOffset": 44199 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 62, + "startColumn": 4, + "startOffset": 9700, + "endColumn": 120, + "endOffset": 9816 + } + } + }, + { + "to": { + "startLine": 316, + "startColumn": 4, + "startOffset": 44204, + "endColumn": 56, + "endOffset": 44256 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values/values.xml", + "position": { + "startLine": 35, + "startColumn": 4, + "startOffset": 2293, + "endColumn": 56, + "endOffset": 2345 + } + } + }, + { + "to": { + "startLine": 317, + "startColumn": 4, + "startOffset": 44261, + "endColumn": 134, + "endOffset": 44391 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values/values.xml", + "position": { + "startLine": 36, + "startColumn": 4, + "startOffset": 2350, + "endColumn": 134, + "endOffset": 2480 + } + } + }, + { + "to": { + "startLine": 318, + "startColumn": 4, + "startOffset": 44396, + "endColumn": 47, + "endOffset": 44439 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values/values.xml", + "position": { + "startLine": 37, + "startColumn": 4, + "startOffset": 2485, + "endColumn": 47, + "endOffset": 2528 + } + } + }, + { + "to": { + "startLine": 319, + "startColumn": 4, + "startOffset": 44444, + "endColumn": 100, + "endOffset": 44540 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 118, + "endColumn": 100, + "endOffset": 214 + } + } + }, + { + "to": { + "startLine": 320, + "startColumn": 4, + "startOffset": 44545, + "endColumn": 110, + "endOffset": 44651 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 219, + "endColumn": 110, + "endOffset": 325 + } + } + }, + { + "to": { + "startLine": 321, + "startColumn": 4, + "startOffset": 44656, + "endColumn": 109, + "endOffset": 44761 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 330, + "endColumn": 109, + "endOffset": 435 + } + } + }, + { + "to": { + "startLine": 322, + "startColumn": 4, + "startOffset": 44766, + "endColumn": 113, + "endOffset": 44875 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 440, + "endColumn": 113, + "endOffset": 549 + } + } + }, + { + "to": { + "startLine": 323, + "startColumn": 4, + "startOffset": 44880, + "endColumn": 129, + "endOffset": 45005 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 554, + "endColumn": 129, + "endOffset": 679 + } + } + }, + { + "to": { + "startLine": 324, + "startColumn": 4, + "startOffset": 45010, + "endColumn": 134, + "endOffset": 45140 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 684, + "endColumn": 134, + "endOffset": 814 + } + } + }, + { + "to": { + "startLine": 325, + "startColumn": 4, + "startOffset": 45145, + "endColumn": 721, + "endOffset": 45862 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 819, + "endColumn": 721, + "endOffset": 1536 + } + } + }, + { + "to": { + "startLine": 326, + "startColumn": 4, + "startOffset": 45867, + "endColumn": 110, + "endOffset": 45973 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 1541, + "endColumn": 110, + "endOffset": 1647 + } + } + }, + { + "to": { + "startLine": 327, + "startColumn": 4, + "startOffset": 45978, + "endColumn": 102, + "endOffset": 46076 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1652, + "endColumn": 102, + "endOffset": 1750 + } + } + }, + { + "to": { + "startLine": 328, + "startColumn": 4, + "startOffset": 46081, + "endColumn": 107, + "endOffset": 46184 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1755, + "endColumn": 107, + "endOffset": 1858 + } + } + }, + { + "to": { + "startLine": 329, + "startColumn": 4, + "startOffset": 46189, + "endColumn": 112, + "endOffset": 46297 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1863, + "endColumn": 112, + "endOffset": 1971 + } + } + }, + { + "to": { + "startLine": 330, + "startColumn": 4, + "startOffset": 46302, + "endColumn": 109, + "endOffset": 46407 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1976, + "endColumn": 109, + "endOffset": 2081 + } + } + }, + { + "to": { + "startLine": 331, + "startColumn": 4, + "startOffset": 46412, + "endColumn": 114, + "endOffset": 46522 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 2086, + "endColumn": 114, + "endOffset": 2196 + } + } + }, + { + "to": { + "startLine": 332, + "startColumn": 4, + "startOffset": 46527, + "endColumn": 95, + "endOffset": 46618 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 2201, + "endColumn": 95, + "endOffset": 2292 + } + } + }, + { + "to": { + "startLine": 333, + "startColumn": 4, + "startOffset": 46623, + "endColumn": 131, + "endOffset": 46750 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 2297, + "endColumn": 131, + "endOffset": 2424 + } + } + }, + { + "to": { + "startLine": 334, + "startColumn": 4, + "startOffset": 46755, + "endColumn": 124, + "endOffset": 46875 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 2429, + "endColumn": 124, + "endOffset": 2549 + } + } + }, + { + "to": { + "startLine": 335, + "startColumn": 4, + "startOffset": 46880, + "endColumn": 98, + "endOffset": 46974 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 2554, + "endColumn": 98, + "endOffset": 2648 + } + } + }, + { + "to": { + "startLine": 336, + "startColumn": 4, + "startOffset": 46979, + "endColumn": 113, + "endOffset": 47088 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 2653, + "endColumn": 113, + "endOffset": 2762 + } + } + }, + { + "to": { + "startLine": 337, + "startColumn": 4, + "startOffset": 47093, + "endColumn": 104, + "endOffset": 47193 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2767, + "endColumn": 104, + "endOffset": 2867 + } + } + }, + { + "to": { + "startLine": 338, + "startColumn": 4, + "startOffset": 47198, + "endColumn": 102, + "endOffset": 47296 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2872, + "endColumn": 102, + "endOffset": 2970 + } + } + }, + { + "to": { + "startLine": 339, + "startColumn": 4, + "startOffset": 47301, + "endColumn": 86, + "endOffset": 47383 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 63, + "startColumn": 4, + "startOffset": 9821, + "endColumn": 86, + "endOffset": 9903 + } + } + }, + { + "to": { + "startLine": 340, + "startColumn": 4, + "startOffset": 47388, + "endColumn": 48, + "endOffset": 47432 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values/values.xml", + "position": { + "startLine": 38, + "startColumn": 4, + "startOffset": 2533, + "endColumn": 48, + "endOffset": 2577 + } + } + }, + { + "to": { + "startLine": 341, + "startColumn": 4, + "startOffset": 47437, + "endColumn": 99, + "endOffset": 47532 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values/values.xml", + "position": { + "startLine": 39, + "startColumn": 4, + "startOffset": 2582, + "endColumn": 99, + "endOffset": 2677 + } + } + }, + { + "to": { + "startLine": 342, + "startColumn": 4, + "startOffset": 47537, + "endColumn": 81, + "endOffset": 47614 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values/values.xml", + "position": { + "startLine": 40, + "startColumn": 4, + "startOffset": 2682, + "endColumn": 81, + "endOffset": 2759 + } + } + }, + { + "to": { + "startLine": 343, + "startColumn": 4, + "startOffset": 47619, + "endColumn": 102, + "endOffset": 47717 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values/values.xml", + "position": { + "startLine": 41, + "startColumn": 4, + "startOffset": 2764, + "endColumn": 102, + "endOffset": 2862 + } + } + }, + { + "to": { + "startLine": 344, + "startColumn": 4, + "startOffset": 47722, + "endColumn": 49, + "endOffset": 47767 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values/values.xml", + "position": { + "startLine": 42, + "startColumn": 4, + "startOffset": 2867, + "endColumn": 49, + "endOffset": 2912 + } + } + }, + { + "to": { + "startLine": 345, + "startColumn": 4, + "startOffset": 47772, + "endColumn": 92, + "endOffset": 47860 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values/values.xml", + "position": { + "startLine": 43, + "startColumn": 4, + "startOffset": 2917, + "endColumn": 92, + "endOffset": 3005 + } + } + }, + { + "to": { + "startLine": 346, + "startColumn": 4, + "startOffset": 47865, + "endColumn": 50, + "endOffset": 47911 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values/values.xml", + "position": { + "startLine": 44, + "startColumn": 4, + "startOffset": 3010, + "endColumn": 50, + "endOffset": 3056 + } + } + }, + { + "to": { + "startLine": 347, + "startColumn": 4, + "startOffset": 47916, + "endColumn": 130, + "endOffset": 48042 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values/values.xml", + "position": { + "startLine": 45, + "startColumn": 4, + "startOffset": 3061, + "endColumn": 130, + "endOffset": 3187 + } + } + }, + { + "to": { + "startLine": 348, + "startColumn": 4, + "startOffset": 48047, + "endColumn": 51, + "endOffset": 48094 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values/values.xml", + "position": { + "startLine": 46, + "startColumn": 4, + "startOffset": 3192, + "endColumn": 51, + "endOffset": 3239 + } + } + }, + { + "to": { + "startLine": 349, + "startColumn": 4, + "startOffset": 48099, + "endColumn": 73, + "endOffset": 48168 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values/values.xml", + "position": { + "startLine": 47, + "startColumn": 4, + "startOffset": 3244, + "endColumn": 73, + "endOffset": 3313 + } + } + }, + { + "to": { + "startLine": 350, + "startColumn": 4, + "startOffset": 48173, + "endColumn": 81, + "endOffset": 48250 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values/values.xml", + "position": { + "startLine": 48, + "startColumn": 4, + "startOffset": 3318, + "endColumn": 81, + "endOffset": 3395 + } + } + }, + { + "to": { + "startLine": 351, + "startColumn": 4, + "startOffset": 48255, + "endColumn": 61, + "endOffset": 48312 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values/values.xml", + "position": { + "startLine": 49, + "startColumn": 4, + "startOffset": 3400, + "endColumn": 61, + "endOffset": 3457 + } + } + }, + { + "to": { + "startLine": 352, + "startColumn": 4, + "startOffset": 48317, + "endColumn": 59, + "endOffset": 48372 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values/values.xml", + "position": { + "startLine": 50, + "startColumn": 4, + "startOffset": 3462, + "endColumn": 59, + "endOffset": 3517 + } + } + }, + { + "to": { + "startLine": 353, + "startColumn": 4, + "startOffset": 48377, + "endColumn": 60, + "endOffset": 48433 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values/values.xml", + "position": { + "startLine": 51, + "startColumn": 4, + "startOffset": 3522, + "endColumn": 60, + "endOffset": 3578 + } + } + }, + { + "to": { + "startLine": 354, + "startColumn": 4, + "startOffset": 48438, + "endColumn": 197, + "endOffset": 48631 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values/values.xml", + "position": { + "startLine": 52, + "startColumn": 4, + "startOffset": 3583, + "endColumn": 197, + "endOffset": 3776 + } + } + }, + { + "to": { + "startLine": 355, + "startColumn": 4, + "startOffset": 48636, + "endColumn": 58, + "endOffset": 48690 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values/values.xml", + "position": { + "startLine": 53, + "startColumn": 4, + "startOffset": 3781, + "endColumn": 58, + "endOffset": 3835 + } + } + }, + { + "to": { + "startLine": 356, + "startColumn": 4, + "startOffset": 48695, + "endColumn": 50, + "endOffset": 48741 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values/values.xml", + "position": { + "startLine": 54, + "startColumn": 4, + "startOffset": 3840, + "endColumn": 50, + "endOffset": 3886 + } + } + }, + { + "to": { + "startLine": 357, + "startColumn": 4, + "startOffset": 48746, + "endColumn": 57, + "endOffset": 48799 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values/values.xml", + "position": { + "startLine": 55, + "startColumn": 4, + "startOffset": 3891, + "endColumn": 57, + "endOffset": 3944 + } + } + }, + { + "to": { + "startLine": 358, + "startColumn": 4, + "startOffset": 48804, + "endColumn": 65, + "endOffset": 48865 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values/values.xml", + "position": { + "startLine": 56, + "startColumn": 4, + "startOffset": 3949, + "endColumn": 65, + "endOffset": 4010 + } + } + }, + { + "to": { + "startLine": 359, + "startColumn": 4, + "startOffset": 48870, + "endColumn": 50, + "endOffset": 48916 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values/values.xml", + "position": { + "startLine": 57, + "startColumn": 4, + "startOffset": 4015, + "endColumn": 50, + "endOffset": 4061 + } + } + }, + { + "to": { + "startLine": 360, + "startColumn": 4, + "startOffset": 48921, + "endColumn": 67, + "endOffset": 48984 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values/values.xml", + "position": { + "startLine": 58, + "startColumn": 4, + "startOffset": 4066, + "endColumn": 67, + "endOffset": 4129 + } + } + }, + { + "to": { + "startLine": 361, + "startColumn": 4, + "startOffset": 48989, + "endColumn": 244, + "endOffset": 49229 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values/values.xml", + "position": { + "startLine": 59, + "startColumn": 4, + "startOffset": 4134, + "endColumn": 244, + "endOffset": 4374 + } + } + }, + { + "to": { + "startLine": 362, + "startColumn": 4, + "startOffset": 49234, + "endColumn": 164, + "endOffset": 49394 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values/values.xml", + "position": { + "startLine": 60, + "startColumn": 4, + "startOffset": 4379, + "endColumn": 164, + "endOffset": 4539 + } + } + }, + { + "to": { + "startLine": 363, + "startColumn": 4, + "startOffset": 49399, + "endColumn": 69, + "endOffset": 49464 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values/values.xml", + "position": { + "startLine": 61, + "startColumn": 4, + "startOffset": 4544, + "endColumn": 69, + "endOffset": 4609 + } + } + }, + { + "to": { + "startLine": 364, + "startColumn": 4, + "startOffset": 49469, + "endColumn": 95, + "endOffset": 49560 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values/values.xml", + "position": { + "startLine": 62, + "startColumn": 4, + "startOffset": 4614, + "endColumn": 95, + "endOffset": 4705 + } + } + }, + { + "to": { + "startLine": 365, + "startColumn": 4, + "startOffset": 49565, + "endColumn": 53, + "endOffset": 49614 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values/values.xml", + "position": { + "startLine": 63, + "startColumn": 4, + "startOffset": 4710, + "endColumn": 53, + "endOffset": 4759 + } + } + }, + { + "to": { + "startLine": 366, + "startColumn": 4, + "startOffset": 49619, + "endColumn": 74, + "endOffset": 49689 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values/values.xml", + "position": { + "startLine": 64, + "startColumn": 4, + "startOffset": 4764, + "endColumn": 74, + "endOffset": 4834 + } + } + }, + { + "to": { + "startLine": 367, + "startColumn": 4, + "startOffset": 49694, + "endColumn": 45, + "endOffset": 49735 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values/values.xml", + "position": { + "startLine": 65, + "startColumn": 4, + "startOffset": 4839, + "endColumn": 45, + "endOffset": 4880 + } + } + }, + { + "to": { + "startLine": 368, + "startColumn": 4, + "startOffset": 49740, + "endColumn": 52, + "endOffset": 49788 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values/values.xml", + "position": { + "startLine": 66, + "startColumn": 4, + "startOffset": 4885, + "endColumn": 52, + "endOffset": 4933 + } + } + }, + { + "to": { + "startLine": 369, + "startColumn": 4, + "startOffset": 49793, + "endColumn": 137, + "endOffset": 49926 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values/values.xml", + "position": { + "startLine": 67, + "startColumn": 4, + "startOffset": 4938, + "endColumn": 137, + "endOffset": 5071 + } + } + }, + { + "to": { + "startLine": 370, + "startColumn": 4, + "startOffset": 49931, + "endColumn": 83, + "endOffset": 50010 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values/values.xml", + "position": { + "startLine": 68, + "startColumn": 4, + "startOffset": 5076, + "endColumn": 83, + "endOffset": 5155 + } + } + }, + { + "to": { + "startLine": 371, + "startColumn": 4, + "startOffset": 50015, + "endColumn": 62, + "endOffset": 50073 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values/values.xml", + "position": { + "startLine": 69, + "startColumn": 4, + "startOffset": 5160, + "endColumn": 62, + "endOffset": 5218 + } + } + }, + { + "to": { + "startLine": 372, + "startColumn": 4, + "startOffset": 50078, + "endColumn": 63, + "endOffset": 50137 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values/values.xml", + "position": { + "startLine": 70, + "startColumn": 4, + "startOffset": 5223, + "endColumn": 63, + "endOffset": 5282 + } + } + }, + { + "to": { + "startLine": 373, + "startColumn": 4, + "startOffset": 50142, + "endColumn": 192, + "endOffset": 50330 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values/values.xml", + "position": { + "startLine": 71, + "startColumn": 4, + "startOffset": 5287, + "endColumn": 192, + "endOffset": 5475 + } + } + }, + { + "to": { + "startLine": 374, + "startColumn": 4, + "startOffset": 50335, + "endColumn": 57, + "endOffset": 50388 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values/values.xml", + "position": { + "startLine": 72, + "startColumn": 4, + "startOffset": 5480, + "endColumn": 57, + "endOffset": 5533 + } + } + }, + { + "to": { + "startLine": 375, + "startColumn": 4, + "startOffset": 50393, + "endColumn": 70, + "endOffset": 50459 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 210, + "startColumn": 4, + "startOffset": 28599, + "endColumn": 70, + "endOffset": 28665 + } + } + }, + { + "to": { + "startLine": 376, + "startColumn": 4, + "startOffset": 50464, + "endColumn": 57, + "endOffset": 50517 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values/values.xml", + "position": { + "startLine": 73, + "startColumn": 4, + "startOffset": 5538, + "endColumn": 57, + "endOffset": 5591 + } + } + }, + { + "to": { + "startLine": 377, + "startColumn": 4, + "startOffset": 50522, + "endColumn": 96, + "endOffset": 50614 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values/values.xml", + "position": { + "startLine": 74, + "startColumn": 4, + "startOffset": 5596, + "endColumn": 96, + "endOffset": 5688 + } + } + }, + { + "to": { + "startLine": 378, + "startColumn": 4, + "startOffset": 50619, + "endColumn": 51, + "endOffset": 50666 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values/values.xml", + "position": { + "startLine": 75, + "startColumn": 4, + "startOffset": 5693, + "endColumn": 51, + "endOffset": 5740 + } + } + }, + { + "to": { + "startLine": 379, + "startColumn": 4, + "startOffset": 50671, + "endColumn": 79, + "endOffset": 50746 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values/values.xml", + "position": { + "startLine": 76, + "startColumn": 4, + "startOffset": 5745, + "endColumn": 79, + "endOffset": 5820 + } + } + }, + { + "to": { + "startLine": 380, + "startColumn": 4, + "startOffset": 50751, + "endColumn": 74, + "endOffset": 50821 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values/values.xml", + "position": { + "startLine": 77, + "startColumn": 4, + "startOffset": 5825, + "endColumn": 74, + "endOffset": 5895 + } + } + }, + { + "to": { + "startLine": 381, + "startColumn": 4, + "startOffset": 50826, + "endColumn": 58, + "endOffset": 50880 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values/values.xml", + "position": { + "startLine": 78, + "startColumn": 4, + "startOffset": 5900, + "endColumn": 58, + "endOffset": 5954 + } + } + }, + { + "to": { + "startLine": 382, + "startColumn": 4, + "startOffset": 50885, + "endColumn": 99, + "endOffset": 50980 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values/values.xml", + "position": { + "startLine": 79, + "startColumn": 4, + "startOffset": 5959, + "endColumn": 99, + "endOffset": 6054 + } + } + }, + { + "to": { + "startLine": 383, + "startColumn": 4, + "startOffset": 50985, + "endColumn": 56, + "endOffset": 51037 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values/values.xml", + "position": { + "startLine": 80, + "startColumn": 4, + "startOffset": 6059, + "endColumn": 56, + "endOffset": 6111 + } + } + }, + { + "to": { + "startLine": 384, + "startColumn": 4, + "startOffset": 51042, + "endColumn": 120, + "endOffset": 51158 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values/values.xml", + "position": { + "startLine": 81, + "startColumn": 4, + "startOffset": 6116, + "endColumn": 120, + "endOffset": 6232 + } + } + }, + { + "to": { + "startLine": 385, + "startColumn": 4, + "startOffset": 51163, + "endColumn": 77, + "endOffset": 51236 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 211, + "startColumn": 4, + "startOffset": 28670, + "endColumn": 77, + "endOffset": 28743 + } + } + }, + { + "to": { + "startLine": 386, + "startColumn": 4, + "startOffset": 51241, + "endColumn": 89, + "endOffset": 51326 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 212, + "startColumn": 4, + "startOffset": 28748, + "endColumn": 89, + "endOffset": 28833 + } + } + }, + { + "to": { + "startLine": 387, + "startColumn": 4, + "startOffset": 51331, + "endColumn": 87, + "endOffset": 51414 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 213, + "startColumn": 4, + "startOffset": 28838, + "endColumn": 87, + "endOffset": 28921 + } + } + }, + { + "to": { + "startLine": 388, + "startColumn": 4, + "startOffset": 51419, + "endColumn": 95, + "endOffset": 51510 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 214, + "startColumn": 4, + "startOffset": 28926, + "endColumn": 95, + "endOffset": 29017 + } + } + }, + { + "to": { + "startLine": 389, + "startColumn": 4, + "startOffset": 51515, + "endLine": 392, + "endColumn": 10, + "endOffset": 51758 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2975, + "endLine": 26, + "endColumn": 10, + "endOffset": 3218 + } + } + }, + { + "to": { + "startLine": 393, + "startColumn": 4, + "startOffset": 51763, + "endLine": 396, + "endColumn": 12, + "endOffset": 52045 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 64, + "startColumn": 4, + "startOffset": 9908, + "endLine": 67, + "endColumn": 12, + "endOffset": 10190 + } + } + }, + { + "to": { + "startLine": 397, + "startColumn": 4, + "startOffset": 52050, + "endLine": 402, + "endColumn": 12, + "endOffset": 52394 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values/values.xml", + "position": { + "startLine": 82, + "startColumn": 4, + "startOffset": 6237, + "endLine": 87, + "endColumn": 12, + "endOffset": 6581 + } + } + }, + { + "to": { + "startLine": 403, + "startColumn": 4, + "startOffset": 52399, + "endColumn": 89, + "endOffset": 52484 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values/values.xml", + "position": { + "startLine": 88, + "startColumn": 4, + "startOffset": 6586, + "endColumn": 89, + "endOffset": 6671 + } + } + }, + { + "to": { + "startLine": 404, + "startColumn": 4, + "startOffset": 52489, + "endLine": 407, + "endColumn": 12, + "endOffset": 52634 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values/values.xml", + "position": { + "startLine": 89, + "startColumn": 4, + "startOffset": 6676, + "endLine": 92, + "endColumn": 12, + "endOffset": 6821 + } + } + }, + { + "to": { + "startLine": 408, + "startColumn": 4, + "startOffset": 52639, + "endColumn": 79, + "endOffset": 52714 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values/values.xml", + "position": { + "startLine": 93, + "startColumn": 4, + "startOffset": 6826, + "endColumn": 79, + "endOffset": 6901 + } + } + }, + { + "to": { + "startLine": 409, + "startColumn": 4, + "startOffset": 52719, + "endLine": 415, + "endColumn": 12, + "endOffset": 53215 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 215, + "startColumn": 4, + "startOffset": 29022, + "endLine": 221, + "endColumn": 12, + "endOffset": 29518 + } + } + }, + { + "to": { + "startLine": 416, + "startColumn": 4, + "startOffset": 53220, + "endColumn": 88, + "endOffset": 53304 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 222, + "startColumn": 4, + "startOffset": 29523, + "endColumn": 88, + "endOffset": 29607 + } + } + }, + { + "to": { + "startLine": 417, + "startColumn": 4, + "startOffset": 53309, + "endLine": 420, + "endColumn": 12, + "endOffset": 53551 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 223, + "startColumn": 4, + "startOffset": 29612, + "endLine": 226, + "endColumn": 12, + "endOffset": 29854 + } + } + }, + { + "to": { + "startLine": 421, + "startColumn": 4, + "startOffset": 53556, + "endLine": 424, + "endColumn": 12, + "endOffset": 53832 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 227, + "startColumn": 4, + "startOffset": 29859, + "endLine": 230, + "endColumn": 12, + "endOffset": 30135 + } + } + }, + { + "to": { + "startLine": 425, + "startColumn": 4, + "startOffset": 53837, + "endLine": 429, + "endColumn": 12, + "endOffset": 54117 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 231, + "startColumn": 4, + "startOffset": 30140, + "endLine": 235, + "endColumn": 12, + "endOffset": 30420 + } + } + }, + { + "to": { + "startLine": 430, + "startColumn": 4, + "startOffset": 54122, + "endLine": 435, + "endColumn": 12, + "endOffset": 54510 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 236, + "startColumn": 4, + "startOffset": 30425, + "endLine": 241, + "endColumn": 12, + "endOffset": 30813 + } + } + }, + { + "to": { + "startLine": 436, + "startColumn": 4, + "startOffset": 54515, + "endLine": 442, + "endColumn": 12, + "endOffset": 54987 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 242, + "startColumn": 4, + "startOffset": 30818, + "endLine": 248, + "endColumn": 12, + "endOffset": 31290 + } + } + }, + { + "to": { + "startLine": 443, + "startColumn": 4, + "startOffset": 54992, + "endLine": 446, + "endColumn": 12, + "endOffset": 55209 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 249, + "startColumn": 4, + "startOffset": 31295, + "endLine": 252, + "endColumn": 12, + "endOffset": 31512 + } + } + }, + { + "to": { + "startLine": 447, + "startColumn": 4, + "startOffset": 55214, + "endLine": 450, + "endColumn": 12, + "endOffset": 55431 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 253, + "startColumn": 4, + "startOffset": 31517, + "endLine": 256, + "endColumn": 12, + "endOffset": 31734 + } + } + }, + { + "to": { + "startLine": 451, + "startColumn": 4, + "startOffset": 55436, + "endLine": 455, + "endColumn": 12, + "endOffset": 55699 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 257, + "startColumn": 4, + "startOffset": 31739, + "endLine": 261, + "endColumn": 12, + "endOffset": 32002 + } + } + }, + { + "to": { + "startLine": 456, + "startColumn": 4, + "startOffset": 55704, + "endLine": 459, + "endColumn": 12, + "endOffset": 55926 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 262, + "startColumn": 4, + "startOffset": 32007, + "endLine": 265, + "endColumn": 12, + "endOffset": 32229 + } + } + }, + { + "to": { + "startLine": 460, + "startColumn": 4, + "startOffset": 55931, + "endLine": 463, + "endColumn": 12, + "endOffset": 56156 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 266, + "startColumn": 4, + "startOffset": 32234, + "endLine": 269, + "endColumn": 12, + "endOffset": 32459 + } + } + }, + { + "to": { + "startLine": 464, + "startColumn": 4, + "startOffset": 56161, + "endLine": 467, + "endColumn": 12, + "endOffset": 56386 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 270, + "startColumn": 4, + "startOffset": 32464, + "endLine": 273, + "endColumn": 12, + "endOffset": 32689 + } + } + }, + { + "to": { + "startLine": 468, + "startColumn": 4, + "startOffset": 56391, + "endLine": 471, + "endColumn": 12, + "endOffset": 56616 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 274, + "startColumn": 4, + "startOffset": 32694, + "endLine": 277, + "endColumn": 12, + "endOffset": 32919 + } + } + }, + { + "to": { + "startLine": 472, + "startColumn": 4, + "startOffset": 56621, + "endLine": 475, + "endColumn": 12, + "endOffset": 56846 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 278, + "startColumn": 4, + "startOffset": 32924, + "endLine": 281, + "endColumn": 12, + "endOffset": 33149 + } + } + }, + { + "to": { + "startLine": 476, + "startColumn": 4, + "startOffset": 56851, + "endLine": 479, + "endColumn": 12, + "endOffset": 57073 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 282, + "startColumn": 4, + "startOffset": 33154, + "endLine": 285, + "endColumn": 12, + "endOffset": 33376 + } + } + }, + { + "to": { + "startLine": 480, + "startColumn": 4, + "startOffset": 57078, + "endLine": 483, + "endColumn": 12, + "endOffset": 57312 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 286, + "startColumn": 4, + "startOffset": 33381, + "endLine": 289, + "endColumn": 12, + "endOffset": 33615 + } + } + }, + { + "to": { + "startLine": 484, + "startColumn": 4, + "startOffset": 57317, + "endLine": 487, + "endColumn": 12, + "endOffset": 57538 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 290, + "startColumn": 4, + "startOffset": 33620, + "endLine": 293, + "endColumn": 12, + "endOffset": 33841 + } + } + }, + { + "to": { + "startLine": 488, + "startColumn": 4, + "startOffset": 57543, + "endLine": 491, + "endColumn": 12, + "endOffset": 57783 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 294, + "startColumn": 4, + "startOffset": 33846, + "endLine": 297, + "endColumn": 12, + "endOffset": 34086 + } + } + }, + { + "to": { + "startLine": 492, + "startColumn": 4, + "startOffset": 57788, + "endLine": 493, + "endColumn": 12, + "endOffset": 57913 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 298, + "startColumn": 4, + "startOffset": 34091, + "endLine": 299, + "endColumn": 12, + "endOffset": 34216 + } + } + }, + { + "to": { + "startLine": 494, + "startColumn": 4, + "startOffset": 57918, + "endLine": 495, + "endColumn": 12, + "endOffset": 58043 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 300, + "startColumn": 4, + "startOffset": 34221, + "endLine": 301, + "endColumn": 12, + "endOffset": 34346 + } + } + }, + { + "to": { + "startLine": 496, + "startColumn": 4, + "startOffset": 58048, + "endLine": 499, + "endColumn": 12, + "endOffset": 58273 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 302, + "startColumn": 4, + "startOffset": 34351, + "endLine": 305, + "endColumn": 12, + "endOffset": 34576 + } + } + }, + { + "to": { + "startLine": 500, + "startColumn": 4, + "startOffset": 58278, + "endLine": 503, + "endColumn": 12, + "endOffset": 58521 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 306, + "startColumn": 4, + "startOffset": 34581, + "endLine": 309, + "endColumn": 12, + "endOffset": 34824 + } + } + }, + { + "to": { + "startLine": 504, + "startColumn": 4, + "startOffset": 58526, + "endLine": 507, + "endColumn": 12, + "endOffset": 58740 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 310, + "startColumn": 4, + "startOffset": 34829, + "endLine": 313, + "endColumn": 12, + "endOffset": 35043 + } + } + }, + { + "to": { + "startLine": 508, + "startColumn": 4, + "startOffset": 58745, + "endLine": 512, + "endColumn": 12, + "endOffset": 59023 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 314, + "startColumn": 4, + "startOffset": 35048, + "endLine": 318, + "endColumn": 12, + "endOffset": 35326 + } + } + }, + { + "to": { + "startLine": 513, + "startColumn": 4, + "startOffset": 59028, + "endLine": 516, + "endColumn": 12, + "endOffset": 59231 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 319, + "startColumn": 4, + "startOffset": 35331, + "endLine": 322, + "endColumn": 12, + "endOffset": 35534 + } + } + }, + { + "to": { + "startLine": 517, + "startColumn": 4, + "startOffset": 59236, + "endLine": 519, + "endColumn": 12, + "endOffset": 59362 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 323, + "startColumn": 4, + "startOffset": 35539, + "endLine": 325, + "endColumn": 12, + "endOffset": 35665 + } + } + }, + { + "to": { + "startLine": 520, + "startColumn": 4, + "startOffset": 59367, + "endLine": 523, + "endColumn": 12, + "endOffset": 59589 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 326, + "startColumn": 4, + "startOffset": 35670, + "endLine": 329, + "endColumn": 12, + "endOffset": 35892 + } + } + }, + { + "to": { + "startLine": 524, + "startColumn": 4, + "startOffset": 59594, + "endLine": 527, + "endColumn": 12, + "endOffset": 59835 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 330, + "startColumn": 4, + "startOffset": 35897, + "endLine": 333, + "endColumn": 12, + "endOffset": 36138 + } + } + }, + { + "to": { + "startLine": 528, + "startColumn": 4, + "startOffset": 59840, + "endLine": 531, + "endColumn": 12, + "endOffset": 60060 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 334, + "startColumn": 4, + "startOffset": 36143, + "endLine": 337, + "endColumn": 12, + "endOffset": 36363 + } + } + }, + { + "to": { + "startLine": 532, + "startColumn": 4, + "startOffset": 60065, + "endLine": 535, + "endColumn": 12, + "endOffset": 60307 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 338, + "startColumn": 4, + "startOffset": 36368, + "endLine": 341, + "endColumn": 12, + "endOffset": 36610 + } + } + }, + { + "to": { + "startLine": 536, + "startColumn": 4, + "startOffset": 60312, + "endLine": 539, + "endColumn": 12, + "endOffset": 60528 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 342, + "startColumn": 4, + "startOffset": 36615, + "endLine": 345, + "endColumn": 12, + "endOffset": 36831 + } + } + }, + { + "to": { + "startLine": 540, + "startColumn": 4, + "startOffset": 60533, + "endLine": 543, + "endColumn": 12, + "endOffset": 60773 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 346, + "startColumn": 4, + "startOffset": 36836, + "endLine": 349, + "endColumn": 12, + "endOffset": 37076 + } + } + }, + { + "to": { + "startLine": 544, + "startColumn": 4, + "startOffset": 60778, + "endLine": 547, + "endColumn": 12, + "endOffset": 61049 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 350, + "startColumn": 4, + "startOffset": 37081, + "endLine": 353, + "endColumn": 12, + "endOffset": 37352 + } + } + }, + { + "to": { + "startLine": 548, + "startColumn": 4, + "startOffset": 61054, + "endLine": 551, + "endColumn": 12, + "endOffset": 61350 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 354, + "startColumn": 4, + "startOffset": 37357, + "endLine": 357, + "endColumn": 12, + "endOffset": 37653 + } + } + }, + { + "to": { + "startLine": 552, + "startColumn": 4, + "startOffset": 61355, + "endLine": 555, + "endColumn": 12, + "endOffset": 61674 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 358, + "startColumn": 4, + "startOffset": 37658, + "endLine": 361, + "endColumn": 12, + "endOffset": 37977 + } + } + }, + { + "to": { + "startLine": 556, + "startColumn": 4, + "startOffset": 61679, + "endLine": 559, + "endColumn": 12, + "endOffset": 61965 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 362, + "startColumn": 4, + "startOffset": 37982, + "endLine": 365, + "endColumn": 12, + "endOffset": 38268 + } + } + }, + { + "to": { + "startLine": 560, + "startColumn": 4, + "startOffset": 61970, + "endLine": 563, + "endColumn": 12, + "endOffset": 62279 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 366, + "startColumn": 4, + "startOffset": 38273, + "endLine": 369, + "endColumn": 12, + "endOffset": 38582 + } + } + }, + { + "to": { + "startLine": 564, + "startColumn": 4, + "startOffset": 62284, + "endColumn": 136, + "endOffset": 62416 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 370, + "startColumn": 4, + "startOffset": 38587, + "endColumn": 136, + "endOffset": 38719 + } + } + }, + { + "to": { + "startLine": 565, + "startColumn": 4, + "startOffset": 62421, + "endColumn": 130, + "endOffset": 62547 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 371, + "startColumn": 4, + "startOffset": 38724, + "endColumn": 130, + "endOffset": 38850 + } + } + }, + { + "to": { + "startLine": 566, + "startColumn": 4, + "startOffset": 62552, + "endColumn": 104, + "endOffset": 62652 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 372, + "startColumn": 4, + "startOffset": 38855, + "endColumn": 104, + "endOffset": 38955 + } + } + }, + { + "to": { + "startLine": 567, + "startColumn": 4, + "startOffset": 62657, + "endLine": 569, + "endColumn": 12, + "endOffset": 62856 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 373, + "startColumn": 4, + "startOffset": 38960, + "endLine": 375, + "endColumn": 12, + "endOffset": 39159 + } + } + }, + { + "to": { + "startLine": 570, + "startColumn": 4, + "startOffset": 62861, + "endLine": 572, + "endColumn": 12, + "endOffset": 63064 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 376, + "startColumn": 4, + "startOffset": 39164, + "endLine": 378, + "endColumn": 12, + "endOffset": 39367 + } + } + }, + { + "to": { + "startLine": 573, + "startColumn": 4, + "startOffset": 63069, + "endLine": 574, + "endColumn": 12, + "endOffset": 63188 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 379, + "startColumn": 4, + "startOffset": 39372, + "endLine": 380, + "endColumn": 12, + "endOffset": 39491 + } + } + }, + { + "to": { + "startLine": 575, + "startColumn": 4, + "startOffset": 63193, + "endLine": 576, + "endColumn": 12, + "endOffset": 63312 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 381, + "startColumn": 4, + "startOffset": 39496, + "endLine": 382, + "endColumn": 12, + "endOffset": 39615 + } + } + }, + { + "to": { + "startLine": 577, + "startColumn": 4, + "startOffset": 63317, + "endColumn": 104, + "endOffset": 63417 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 383, + "startColumn": 4, + "startOffset": 39620, + "endColumn": 104, + "endOffset": 39720 + } + } + }, + { + "to": { + "startLine": 578, + "startColumn": 4, + "startOffset": 63422, + "endColumn": 116, + "endOffset": 63534 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 384, + "startColumn": 4, + "startOffset": 39725, + "endColumn": 116, + "endOffset": 39837 + } + } + }, + { + "to": { + "startLine": 579, + "startColumn": 4, + "startOffset": 63539, + "endLine": 581, + "endColumn": 12, + "endOffset": 63748 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 385, + "startColumn": 4, + "startOffset": 39842, + "endLine": 387, + "endColumn": 12, + "endOffset": 40051 + } + } + }, + { + "to": { + "startLine": 582, + "startColumn": 4, + "startOffset": 63753, + "endLine": 583, + "endColumn": 12, + "endOffset": 63894 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 388, + "startColumn": 4, + "startOffset": 40056, + "endLine": 389, + "endColumn": 12, + "endOffset": 40197 + } + } + }, + { + "to": { + "startLine": 584, + "startColumn": 4, + "startOffset": 63899, + "endLine": 585, + "endColumn": 12, + "endOffset": 64034 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 390, + "startColumn": 4, + "startOffset": 40202, + "endLine": 391, + "endColumn": 12, + "endOffset": 40337 + } + } + }, + { + "to": { + "startLine": 586, + "startColumn": 4, + "startOffset": 64039, + "endLine": 587, + "endColumn": 12, + "endOffset": 64120 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 392, + "startColumn": 4, + "startOffset": 40342, + "endLine": 393, + "endColumn": 12, + "endOffset": 40423 + } + } + }, + { + "to": { + "startLine": 588, + "startColumn": 4, + "startOffset": 64125, + "endLine": 592, + "endColumn": 12, + "endOffset": 64468 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 394, + "startColumn": 4, + "startOffset": 40428, + "endLine": 398, + "endColumn": 12, + "endOffset": 40771 + } + } + }, + { + "to": { + "startLine": 593, + "startColumn": 4, + "startOffset": 64473, + "endColumn": 87, + "endOffset": 64556 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 399, + "startColumn": 4, + "startOffset": 40776, + "endColumn": 87, + "endOffset": 40859 + } + } + }, + { + "to": { + "startLine": 594, + "startColumn": 4, + "startOffset": 64561, + "endLine": 597, + "endColumn": 12, + "endOffset": 64786 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 400, + "startColumn": 4, + "startOffset": 40864, + "endLine": 403, + "endColumn": 12, + "endOffset": 41089 + } + } + }, + { + "to": { + "startLine": 598, + "startColumn": 4, + "startOffset": 64791, + "endLine": 603, + "endColumn": 12, + "endOffset": 65204 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 404, + "startColumn": 4, + "startOffset": 41094, + "endLine": 409, + "endColumn": 12, + "endOffset": 41507 + } + } + }, + { + "to": { + "startLine": 604, + "startColumn": 4, + "startOffset": 65209, + "endLine": 607, + "endColumn": 12, + "endOffset": 65437 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 410, + "startColumn": 4, + "startOffset": 41512, + "endLine": 413, + "endColumn": 12, + "endOffset": 41740 + } + } + }, + { + "to": { + "startLine": 608, + "startColumn": 4, + "startOffset": 65442, + "endColumn": 81, + "endOffset": 65519 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 414, + "startColumn": 4, + "startOffset": 41745, + "endColumn": 81, + "endOffset": 41822 + } + } + }, + { + "to": { + "startLine": 609, + "startColumn": 4, + "startOffset": 65524, + "endLine": 610, + "endColumn": 12, + "endOffset": 65617 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 415, + "startColumn": 4, + "startOffset": 41827, + "endLine": 416, + "endColumn": 12, + "endOffset": 41920 + } + } + }, + { + "to": { + "startLine": 611, + "startColumn": 4, + "startOffset": 65622, + "endLine": 621, + "endColumn": 12, + "endOffset": 66234 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 417, + "startColumn": 4, + "startOffset": 41925, + "endLine": 427, + "endColumn": 12, + "endOffset": 42537 + } + } + }, + { + "to": { + "startLine": 622, + "startColumn": 4, + "startOffset": 66239, + "endColumn": 99, + "endOffset": 66334 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 428, + "startColumn": 4, + "startOffset": 42542, + "endColumn": 99, + "endOffset": 42637 + } + } + }, + { + "to": { + "startLine": 623, + "startColumn": 4, + "startOffset": 66339, + "endLine": 626, + "endColumn": 12, + "endOffset": 66570 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 429, + "startColumn": 4, + "startOffset": 42642, + "endLine": 432, + "endColumn": 12, + "endOffset": 42873 + } + } + }, + { + "to": { + "startLine": 627, + "startColumn": 4, + "startOffset": 66575, + "endLine": 632, + "endColumn": 12, + "endOffset": 66994 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 433, + "startColumn": 4, + "startOffset": 42878, + "endLine": 438, + "endColumn": 12, + "endOffset": 43297 + } + } + }, + { + "to": { + "startLine": 633, + "startColumn": 4, + "startOffset": 66999, + "endLine": 636, + "endColumn": 12, + "endOffset": 67233 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 439, + "startColumn": 4, + "startOffset": 43302, + "endLine": 442, + "endColumn": 12, + "endOffset": 43536 + } + } + }, + { + "to": { + "startLine": 637, + "startColumn": 4, + "startOffset": 67238, + "endColumn": 93, + "endOffset": 67327 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 443, + "startColumn": 4, + "startOffset": 43541, + "endColumn": 93, + "endOffset": 43630 + } + } + }, + { + "to": { + "startLine": 638, + "startColumn": 4, + "startOffset": 67332, + "endColumn": 88, + "endOffset": 67416 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 444, + "startColumn": 4, + "startOffset": 43635, + "endColumn": 88, + "endOffset": 43719 + } + } + }, + { + "to": { + "startLine": 639, + "startColumn": 4, + "startOffset": 67421, + "endLine": 642, + "endColumn": 12, + "endOffset": 67653 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 445, + "startColumn": 4, + "startOffset": 43724, + "endLine": 448, + "endColumn": 12, + "endOffset": 43956 + } + } + }, + { + "to": { + "startLine": 643, + "startColumn": 4, + "startOffset": 67658, + "endLine": 668, + "endColumn": 12, + "endOffset": 69604 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 449, + "startColumn": 4, + "startOffset": 43961, + "endLine": 474, + "endColumn": 12, + "endOffset": 45907 + } + } + }, + { + "to": { + "startLine": 669, + "startColumn": 4, + "startOffset": 69609, + "endLine": 672, + "endColumn": 12, + "endOffset": 69846 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 475, + "startColumn": 4, + "startOffset": 45912, + "endLine": 478, + "endColumn": 12, + "endOffset": 46149 + } + } + }, + { + "to": { + "startLine": 673, + "startColumn": 4, + "startOffset": 69851, + "endLine": 699, + "endColumn": 12, + "endOffset": 71928 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 479, + "startColumn": 4, + "startOffset": 46154, + "endLine": 505, + "endColumn": 12, + "endOffset": 48231 + } + } + }, + { + "to": { + "startLine": 700, + "startColumn": 4, + "startOffset": 71933, + "endLine": 854, + "endColumn": 12, + "endOffset": 81794 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 506, + "startColumn": 4, + "startOffset": 48236, + "endLine": 660, + "endColumn": 12, + "endOffset": 58097 + } + } + }, + { + "to": { + "startLine": 855, + "startColumn": 4, + "startOffset": 81799, + "endLine": 876, + "endColumn": 12, + "endOffset": 83061 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 661, + "startColumn": 4, + "startOffset": 58102, + "endLine": 682, + "endColumn": 12, + "endOffset": 59364 + } + } + }, + { + "to": { + "startLine": 877, + "startColumn": 4, + "startOffset": 83066, + "endLine": 1031, + "endColumn": 12, + "endOffset": 93037 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 683, + "startColumn": 4, + "startOffset": 59369, + "endLine": 837, + "endColumn": 12, + "endOffset": 69340 + } + } + }, + { + "to": { + "startLine": 1032, + "startColumn": 4, + "startOffset": 93042, + "endLine": 1053, + "endColumn": 12, + "endOffset": 94318 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 838, + "startColumn": 4, + "startOffset": 69345, + "endLine": 859, + "endColumn": 12, + "endOffset": 70621 + } + } + }, + { + "to": { + "startLine": 1054, + "startColumn": 4, + "startOffset": 94323, + "endLine": 1060, + "endColumn": 12, + "endOffset": 94854 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 860, + "startColumn": 4, + "startOffset": 70626, + "endLine": 866, + "endColumn": 12, + "endOffset": 71157 + } + } + }, + { + "to": { + "startLine": 1061, + "startColumn": 4, + "startOffset": 94859, + "endLine": 1065, + "endColumn": 12, + "endOffset": 95184 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 867, + "startColumn": 4, + "startOffset": 71162, + "endLine": 871, + "endColumn": 12, + "endOffset": 71487 + } + } + }, + { + "to": { + "startLine": 1066, + "startColumn": 4, + "startOffset": 95189, + "endLine": 1086, + "endColumn": 12, + "endOffset": 96307 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 872, + "startColumn": 4, + "startOffset": 71492, + "endLine": 892, + "endColumn": 12, + "endOffset": 72610 + } + } + }, + { + "to": { + "startLine": 1087, + "startColumn": 4, + "startOffset": 96312, + "endLine": 1091, + "endColumn": 12, + "endOffset": 96563 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 893, + "startColumn": 4, + "startOffset": 72615, + "endLine": 897, + "endColumn": 12, + "endOffset": 72866 + } + } + }, + { + "to": { + "startLine": 1092, + "startColumn": 4, + "startOffset": 96568, + "endLine": 1096, + "endColumn": 12, + "endOffset": 96799 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 898, + "startColumn": 4, + "startOffset": 72871, + "endLine": 902, + "endColumn": 12, + "endOffset": 73102 + } + } + }, + { + "to": { + "startLine": 1097, + "startColumn": 4, + "startOffset": 96804, + "endLine": 1106, + "endColumn": 12, + "endOffset": 97346 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 903, + "startColumn": 4, + "startOffset": 73107, + "endLine": 912, + "endColumn": 12, + "endOffset": 73649 + } + } + }, + { + "to": { + "startLine": 1107, + "startColumn": 4, + "startOffset": 97351, + "endLine": 1115, + "endColumn": 12, + "endOffset": 97840 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 913, + "startColumn": 4, + "startOffset": 73654, + "endLine": 921, + "endColumn": 12, + "endOffset": 74143 + } + } + }, + { + "to": { + "startLine": 1116, + "startColumn": 4, + "startOffset": 97845, + "endLine": 1124, + "endColumn": 12, + "endOffset": 98445 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 922, + "startColumn": 4, + "startOffset": 74148, + "endLine": 930, + "endColumn": 12, + "endOffset": 74748 + } + } + }, + { + "to": { + "startLine": 1125, + "startColumn": 4, + "startOffset": 98450, + "endLine": 1127, + "endColumn": 12, + "endOffset": 98593 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 931, + "startColumn": 4, + "startOffset": 74753, + "endLine": 933, + "endColumn": 12, + "endOffset": 74896 + } + } + }, + { + "to": { + "startLine": 1128, + "startColumn": 4, + "startOffset": 98598, + "endLine": 1134, + "endColumn": 12, + "endOffset": 99181 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 934, + "startColumn": 4, + "startOffset": 74901, + "endLine": 940, + "endColumn": 12, + "endOffset": 75484 + } + } + }, + { + "to": { + "startLine": 1135, + "startColumn": 4, + "startOffset": 99186, + "endLine": 1142, + "endColumn": 12, + "endOffset": 99745 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 941, + "startColumn": 4, + "startOffset": 75489, + "endLine": 948, + "endColumn": 12, + "endOffset": 76048 + } + } + }, + { + "to": { + "startLine": 1143, + "startColumn": 4, + "startOffset": 99750, + "endLine": 1149, + "endColumn": 12, + "endOffset": 100120 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 949, + "startColumn": 4, + "startOffset": 76053, + "endLine": 955, + "endColumn": 12, + "endOffset": 76423 + } + } + }, + { + "to": { + "startLine": 1150, + "startColumn": 4, + "startOffset": 100125, + "endColumn": 117, + "endOffset": 100238 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 956, + "startColumn": 4, + "startOffset": 76428, + "endColumn": 117, + "endOffset": 76541 + } + } + }, + { + "to": { + "startLine": 1151, + "startColumn": 4, + "startOffset": 100243, + "endLine": 1159, + "endColumn": 12, + "endOffset": 100776 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 957, + "startColumn": 4, + "startOffset": 76546, + "endLine": 965, + "endColumn": 12, + "endOffset": 77079 + } + } + }, + { + "to": { + "startLine": 1160, + "startColumn": 4, + "startOffset": 100781, + "endLine": 1162, + "endColumn": 12, + "endOffset": 100933 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 966, + "startColumn": 4, + "startOffset": 77084, + "endLine": 968, + "endColumn": 12, + "endOffset": 77236 + } + } + }, + { + "to": { + "startLine": 1163, + "startColumn": 4, + "startOffset": 100938, + "endLine": 1165, + "endColumn": 12, + "endOffset": 101077 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 969, + "startColumn": 4, + "startOffset": 77241, + "endLine": 971, + "endColumn": 12, + "endOffset": 77380 + } + } + }, + { + "to": { + "startLine": 1166, + "startColumn": 4, + "startOffset": 101082, + "endLine": 1170, + "endColumn": 12, + "endOffset": 101397 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 972, + "startColumn": 4, + "startOffset": 77385, + "endLine": 976, + "endColumn": 12, + "endOffset": 77700 + } + } + }, + { + "to": { + "startLine": 1171, + "startColumn": 4, + "startOffset": 101402, + "endLine": 1174, + "endColumn": 12, + "endOffset": 101653 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 977, + "startColumn": 4, + "startOffset": 77705, + "endLine": 980, + "endColumn": 12, + "endOffset": 77956 + } + } + }, + { + "to": { + "startLine": 1175, + "startColumn": 4, + "startOffset": 101658, + "endLine": 1178, + "endColumn": 12, + "endOffset": 101823 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 981, + "startColumn": 4, + "startOffset": 77961, + "endLine": 984, + "endColumn": 12, + "endOffset": 78126 + } + } + }, + { + "to": { + "startLine": 1179, + "startColumn": 4, + "startOffset": 101828, + "endLine": 1181, + "endColumn": 12, + "endOffset": 101964 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 985, + "startColumn": 4, + "startOffset": 78131, + "endLine": 987, + "endColumn": 12, + "endOffset": 78267 + } + } + }, + { + "to": { + "startLine": 1182, + "startColumn": 4, + "startOffset": 101969, + "endColumn": 63, + "endOffset": 102028 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 988, + "startColumn": 4, + "startOffset": 78272, + "endColumn": 63, + "endOffset": 78331 + } + } + }, + { + "to": { + "startLine": 1183, + "startColumn": 4, + "startOffset": 102033, + "endLine": 1186, + "endColumn": 12, + "endOffset": 102310 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 989, + "startColumn": 4, + "startOffset": 78336, + "endLine": 992, + "endColumn": 12, + "endOffset": 78613 + } + } + }, + { + "to": { + "startLine": 1187, + "startColumn": 4, + "startOffset": 102315, + "endLine": 1190, + "endColumn": 12, + "endOffset": 102596 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 993, + "startColumn": 4, + "startOffset": 78618, + "endLine": 996, + "endColumn": 12, + "endOffset": 78899 + } + } + }, + { + "to": { + "startLine": 1191, + "startColumn": 4, + "startOffset": 102601, + "endLine": 1200, + "endColumn": 12, + "endOffset": 103272 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 997, + "startColumn": 4, + "startOffset": 78904, + "endLine": 1006, + "endColumn": 12, + "endOffset": 79575 + } + } + }, + { + "to": { + "startLine": 1201, + "startColumn": 4, + "startOffset": 103277, + "endLine": 1205, + "endColumn": 12, + "endOffset": 103536 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1007, + "startColumn": 4, + "startOffset": 79580, + "endLine": 1011, + "endColumn": 12, + "endOffset": 79839 + } + } + }, + { + "to": { + "startLine": 1206, + "startColumn": 4, + "startOffset": 103541, + "endLine": 1212, + "endColumn": 12, + "endOffset": 103874 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1012, + "startColumn": 4, + "startOffset": 79844, + "endLine": 1018, + "endColumn": 12, + "endOffset": 80177 + } + } + }, + { + "to": { + "startLine": 1213, + "startColumn": 4, + "startOffset": 103879, + "endLine": 1218, + "endColumn": 12, + "endOffset": 104227 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1019, + "startColumn": 4, + "startOffset": 80182, + "endLine": 1024, + "endColumn": 12, + "endOffset": 80530 + } + } + }, + { + "to": { + "startLine": 1219, + "startColumn": 4, + "startOffset": 104232, + "endColumn": 93, + "endOffset": 104321 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1025, + "startColumn": 4, + "startOffset": 80535, + "endColumn": 93, + "endOffset": 80624 + } + } + }, + { + "to": { + "startLine": 1220, + "startColumn": 4, + "startOffset": 104326, + "endLine": 1222, + "endColumn": 12, + "endOffset": 104507 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1026, + "startColumn": 4, + "startOffset": 80629, + "endLine": 1028, + "endColumn": 12, + "endOffset": 80810 + } + } + }, + { + "to": { + "startLine": 1223, + "startColumn": 4, + "startOffset": 104512, + "endLine": 1226, + "endColumn": 12, + "endOffset": 104813 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1029, + "startColumn": 4, + "startOffset": 80815, + "endLine": 1032, + "endColumn": 12, + "endOffset": 81116 + } + } + }, + { + "to": { + "startLine": 1227, + "startColumn": 4, + "startOffset": 104818, + "endLine": 1231, + "endColumn": 12, + "endOffset": 105075 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1033, + "startColumn": 4, + "startOffset": 81121, + "endLine": 1037, + "endColumn": 12, + "endOffset": 81378 + } + } + }, + { + "to": { + "startLine": 1232, + "startColumn": 4, + "startOffset": 105080, + "endLine": 1233, + "endColumn": 12, + "endOffset": 105200 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1038, + "startColumn": 4, + "startOffset": 81383, + "endLine": 1039, + "endColumn": 12, + "endOffset": 81503 + } + } + }, + { + "to": { + "startLine": 1234, + "startColumn": 4, + "startOffset": 105205, + "endLine": 1235, + "endColumn": 12, + "endOffset": 105327 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1040, + "startColumn": 4, + "startOffset": 81508, + "endLine": 1041, + "endColumn": 12, + "endOffset": 81630 + } + } + }, + { + "to": { + "startLine": 1236, + "startColumn": 4, + "startOffset": 105332, + "endLine": 1238, + "endColumn": 12, + "endOffset": 105566 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1042, + "startColumn": 4, + "startOffset": 81635, + "endLine": 1044, + "endColumn": 12, + "endOffset": 81869 + } + } + }, + { + "to": { + "startLine": 1239, + "startColumn": 4, + "startOffset": 105571, + "endLine": 1241, + "endColumn": 12, + "endOffset": 105777 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1045, + "startColumn": 4, + "startOffset": 81874, + "endLine": 1047, + "endColumn": 12, + "endOffset": 82080 + } + } + }, + { + "to": { + "startLine": 1242, + "startColumn": 4, + "startOffset": 105782, + "endLine": 1243, + "endColumn": 12, + "endOffset": 105896 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1048, + "startColumn": 4, + "startOffset": 82085, + "endLine": 1049, + "endColumn": 12, + "endOffset": 82199 + } + } + }, + { + "to": { + "startLine": 1244, + "startColumn": 4, + "startOffset": 105901, + "endLine": 1247, + "endColumn": 12, + "endOffset": 106089 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1050, + "startColumn": 4, + "startOffset": 82204, + "endLine": 1053, + "endColumn": 12, + "endOffset": 82392 + } + } + }, + { + "to": { + "startLine": 1248, + "startColumn": 4, + "startOffset": 106094, + "endLine": 1254, + "endColumn": 12, + "endOffset": 106544 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1054, + "startColumn": 4, + "startOffset": 82397, + "endLine": 1060, + "endColumn": 12, + "endOffset": 82847 + } + } + }, + { + "to": { + "startLine": 1255, + "startColumn": 4, + "startOffset": 106549, + "endLine": 1257, + "endColumn": 12, + "endOffset": 106725 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1061, + "startColumn": 4, + "startOffset": 82852, + "endLine": 1063, + "endColumn": 12, + "endOffset": 83028 + } + } + }, + { + "to": { + "startLine": 1258, + "startColumn": 4, + "startOffset": 106730, + "endLine": 1260, + "endColumn": 12, + "endOffset": 106847 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1064, + "startColumn": 4, + "startOffset": 83033, + "endLine": 1066, + "endColumn": 12, + "endOffset": 83150 + } + } + }, + { + "to": { + "startLine": 1261, + "startColumn": 4, + "startOffset": 106852, + "endLine": 1264, + "endColumn": 12, + "endOffset": 107106 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1067, + "startColumn": 4, + "startOffset": 83155, + "endLine": 1070, + "endColumn": 12, + "endOffset": 83409 + } + } + }, + { + "to": { + "startLine": 1265, + "startColumn": 4, + "startOffset": 107111, + "endLine": 1266, + "endColumn": 12, + "endOffset": 107219 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1071, + "startColumn": 4, + "startOffset": 83414, + "endLine": 1072, + "endColumn": 12, + "endOffset": 83522 + } + } + }, + { + "to": { + "startLine": 1267, + "startColumn": 4, + "startOffset": 107224, + "endLine": 1270, + "endColumn": 12, + "endOffset": 107406 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1073, + "startColumn": 4, + "startOffset": 83527, + "endLine": 1076, + "endColumn": 12, + "endOffset": 83709 + } + } + }, + { + "to": { + "startLine": 1271, + "startColumn": 4, + "startOffset": 107411, + "endLine": 1272, + "endColumn": 12, + "endOffset": 107508 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1077, + "startColumn": 4, + "startOffset": 83714, + "endLine": 1078, + "endColumn": 12, + "endOffset": 83811 + } + } + }, + { + "to": { + "startLine": 1273, + "startColumn": 4, + "startOffset": 107513, + "endLine": 1278, + "endColumn": 12, + "endOffset": 107952 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1079, + "startColumn": 4, + "startOffset": 83816, + "endLine": 1084, + "endColumn": 12, + "endOffset": 84255 + } + } + }, + { + "to": { + "startLine": 1279, + "startColumn": 4, + "startOffset": 107957, + "endLine": 1280, + "endColumn": 12, + "endOffset": 108076 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1085, + "startColumn": 4, + "startOffset": 84260, + "endLine": 1086, + "endColumn": 12, + "endOffset": 84379 + } + } + }, + { + "to": { + "startLine": 1281, + "startColumn": 4, + "startOffset": 108081, + "endLine": 1284, + "endColumn": 12, + "endOffset": 108361 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1087, + "startColumn": 4, + "startOffset": 84384, + "endLine": 1090, + "endColumn": 12, + "endOffset": 84664 + } + } + }, + { + "to": { + "startLine": 1285, + "startColumn": 4, + "startOffset": 108366, + "endLine": 1292, + "endColumn": 12, + "endOffset": 108869 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1091, + "startColumn": 4, + "startOffset": 84669, + "endLine": 1098, + "endColumn": 12, + "endOffset": 85172 + } + } + }, + { + "to": { + "startLine": 1293, + "startColumn": 4, + "startOffset": 108874, + "endLine": 1300, + "endColumn": 12, + "endOffset": 109365 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1099, + "startColumn": 4, + "startOffset": 85177, + "endLine": 1106, + "endColumn": 12, + "endOffset": 85668 + } + } + }, + { + "to": { + "startLine": 1301, + "startColumn": 4, + "startOffset": 109370, + "endLine": 1312, + "endColumn": 12, + "endOffset": 110252 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1107, + "startColumn": 4, + "startOffset": 85673, + "endLine": 1118, + "endColumn": 12, + "endOffset": 86555 + } + } + }, + { + "to": { + "startLine": 1313, + "startColumn": 4, + "startOffset": 110257, + "endLine": 1318, + "endColumn": 12, + "endOffset": 110546 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1119, + "startColumn": 4, + "startOffset": 86560, + "endLine": 1124, + "endColumn": 12, + "endOffset": 86849 + } + } + }, + { + "to": { + "startLine": 1319, + "startColumn": 4, + "startOffset": 110551, + "endLine": 1327, + "endColumn": 12, + "endOffset": 111116 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1125, + "startColumn": 4, + "startOffset": 86854, + "endLine": 1133, + "endColumn": 12, + "endOffset": 87419 + } + } + }, + { + "to": { + "startLine": 1328, + "startColumn": 4, + "startOffset": 111121, + "endLine": 1338, + "endColumn": 12, + "endOffset": 111848 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1134, + "startColumn": 4, + "startOffset": 87424, + "endLine": 1144, + "endColumn": 12, + "endOffset": 88151 + } + } + }, + { + "to": { + "startLine": 1339, + "startColumn": 4, + "startOffset": 111853, + "endLine": 1341, + "endColumn": 12, + "endOffset": 112020 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1145, + "startColumn": 4, + "startOffset": 88156, + "endLine": 1147, + "endColumn": 12, + "endOffset": 88323 + } + } + }, + { + "to": { + "startLine": 1342, + "startColumn": 4, + "startOffset": 112025, + "endLine": 1346, + "endColumn": 12, + "endOffset": 112356 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1148, + "startColumn": 4, + "startOffset": 88328, + "endLine": 1152, + "endColumn": 12, + "endOffset": 88659 + } + } + }, + { + "to": { + "startLine": 1347, + "startColumn": 4, + "startOffset": 112361, + "endLine": 1358, + "endColumn": 12, + "endOffset": 113264 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1153, + "startColumn": 4, + "startOffset": 88664, + "endLine": 1164, + "endColumn": 12, + "endOffset": 89567 + } + } + }, + { + "to": { + "startLine": 1359, + "startColumn": 4, + "startOffset": 113269, + "endLine": 1363, + "endColumn": 12, + "endOffset": 113542 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1165, + "startColumn": 4, + "startOffset": 89572, + "endLine": 1169, + "endColumn": 12, + "endOffset": 89845 + } + } + }, + { + "to": { + "startLine": 1364, + "startColumn": 4, + "startOffset": 113547, + "endLine": 1373, + "endColumn": 12, + "endOffset": 114133 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 68, + "startColumn": 4, + "startOffset": 10195, + "endLine": 77, + "endColumn": 12, + "endOffset": 10781 + } + } + }, + { + "to": { + "startLine": 1374, + "startColumn": 4, + "startOffset": 114138, + "endLine": 1376, + "endColumn": 12, + "endOffset": 114297 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/values/values.xml", + "position": { + "startLine": 94, + "startColumn": 4, + "startOffset": 6906, + "endLine": 96, + "endColumn": 12, + "endOffset": 7065 + } + } + }, + { + "to": { + "startLine": 1377, + "startColumn": 4, + "startOffset": 114302, + "endLine": 1414, + "endColumn": 12, + "endOffset": 117159 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1170, + "startColumn": 4, + "startOffset": 89850, + "endLine": 1207, + "endColumn": 12, + "endOffset": 92707 + } + } + }, + { + "to": { + "startLine": 1415, + "startColumn": 4, + "startOffset": 117164, + "endLine": 1453, + "endColumn": 12, + "endOffset": 120161 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1208, + "startColumn": 4, + "startOffset": 92712, + "endLine": 1246, + "endColumn": 12, + "endOffset": 95709 + } + } + }, + { + "to": { + "startLine": 1454, + "startColumn": 4, + "startOffset": 120166, + "endColumn": 61, + "endOffset": 120223 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1247, + "startColumn": 4, + "startOffset": 95714, + "endColumn": 61, + "endOffset": 95771 + } + } + }, + { + "to": { + "startLine": 1455, + "startColumn": 4, + "startOffset": 120228, + "endLine": 1464, + "endColumn": 12, + "endOffset": 120853 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1248, + "startColumn": 4, + "startOffset": 95776, + "endLine": 1257, + "endColumn": 12, + "endOffset": 96401 + } + } + }, + { + "to": { + "startLine": 1465, + "startColumn": 4, + "startOffset": 120858, + "endLine": 1473, + "endColumn": 12, + "endOffset": 121467 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1258, + "startColumn": 4, + "startOffset": 96406, + "endLine": 1266, + "endColumn": 12, + "endOffset": 97015 + } + } + }, + { + "to": { + "startLine": 1474, + "startColumn": 4, + "startOffset": 121472, + "endColumn": 85, + "endOffset": 121553 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1267, + "startColumn": 4, + "startOffset": 97020, + "endColumn": 85, + "endOffset": 97101 + } + } + }, + { + "to": { + "startLine": 1475, + "startColumn": 4, + "startOffset": 121558, + "endLine": 1476, + "endColumn": 12, + "endOffset": 121666 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1268, + "startColumn": 4, + "startOffset": 97106, + "endLine": 1269, + "endColumn": 12, + "endOffset": 97214 + } + } + }, + { + "to": { + "startLine": 1477, + "startColumn": 4, + "startOffset": 121671, + "endLine": 1480, + "endColumn": 12, + "endOffset": 121895 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1270, + "startColumn": 4, + "startOffset": 97219, + "endLine": 1273, + "endColumn": 12, + "endOffset": 97443 + } + } + }, + { + "to": { + "startLine": 1481, + "startColumn": 4, + "startOffset": 121900, + "endLine": 1483, + "endColumn": 12, + "endOffset": 122055 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1274, + "startColumn": 4, + "startOffset": 97448, + "endLine": 1276, + "endColumn": 12, + "endOffset": 97603 + } + } + }, + { + "to": { + "startLine": 1484, + "startColumn": 4, + "startOffset": 122060, + "endLine": 1486, + "endColumn": 12, + "endOffset": 122207 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1277, + "startColumn": 4, + "startOffset": 97608, + "endLine": 1279, + "endColumn": 12, + "endOffset": 97755 + } + } + }, + { + "to": { + "startLine": 1487, + "startColumn": 4, + "startOffset": 122212, + "endLine": 1489, + "endColumn": 12, + "endOffset": 122378 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1280, + "startColumn": 4, + "startOffset": 97760, + "endLine": 1282, + "endColumn": 12, + "endOffset": 97926 + } + } + }, + { + "to": { + "startLine": 1490, + "startColumn": 4, + "startOffset": 122383, + "endLine": 1492, + "endColumn": 12, + "endOffset": 122545 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1283, + "startColumn": 4, + "startOffset": 97931, + "endLine": 1285, + "endColumn": 12, + "endOffset": 98093 + } + } + }, + { + "to": { + "startLine": 1493, + "startColumn": 4, + "startOffset": 122550, + "endLine": 1496, + "endColumn": 12, + "endOffset": 122788 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1286, + "startColumn": 4, + "startOffset": 98098, + "endLine": 1289, + "endColumn": 12, + "endOffset": 98336 + } + } + }, + { + "to": { + "startLine": 1497, + "startColumn": 4, + "startOffset": 122793, + "endLine": 1499, + "endColumn": 12, + "endOffset": 122958 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1290, + "startColumn": 4, + "startOffset": 98341, + "endLine": 1292, + "endColumn": 12, + "endOffset": 98506 + } + } + }, + { + "to": { + "startLine": 1500, + "startColumn": 4, + "startOffset": 122963, + "endLine": 1502, + "endColumn": 12, + "endOffset": 123131 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1293, + "startColumn": 4, + "startOffset": 98511, + "endLine": 1295, + "endColumn": 12, + "endOffset": 98679 + } + } + }, + { + "to": { + "startLine": 1503, + "startColumn": 4, + "startOffset": 123136, + "endLine": 1505, + "endColumn": 12, + "endOffset": 123302 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1296, + "startColumn": 4, + "startOffset": 98684, + "endLine": 1298, + "endColumn": 12, + "endOffset": 98850 + } + } + }, + { + "to": { + "startLine": 1506, + "startColumn": 4, + "startOffset": 123307, + "endLine": 1509, + "endColumn": 12, + "endOffset": 123576 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1299, + "startColumn": 4, + "startOffset": 98855, + "endLine": 1302, + "endColumn": 12, + "endOffset": 99124 + } + } + }, + { + "to": { + "startLine": 1510, + "startColumn": 4, + "startOffset": 123581, + "endLine": 1512, + "endColumn": 12, + "endOffset": 123775 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1303, + "startColumn": 4, + "startOffset": 99129, + "endLine": 1305, + "endColumn": 12, + "endOffset": 99323 + } + } + }, + { + "to": { + "startLine": 1513, + "startColumn": 4, + "startOffset": 123780, + "endLine": 1516, + "endColumn": 12, + "endOffset": 123980 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1306, + "startColumn": 4, + "startOffset": 99328, + "endLine": 1309, + "endColumn": 12, + "endOffset": 99528 + } + } + }, + { + "to": { + "startLine": 1517, + "startColumn": 4, + "startOffset": 123985, + "endLine": 1520, + "endColumn": 12, + "endOffset": 124310 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1310, + "startColumn": 4, + "startOffset": 99533, + "endLine": 1313, + "endColumn": 12, + "endOffset": 99858 + } + } + }, + { + "to": { + "startLine": 1521, + "startColumn": 4, + "startOffset": 124315, + "endColumn": 83, + "endOffset": 124394 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1314, + "startColumn": 4, + "startOffset": 99863, + "endColumn": 83, + "endOffset": 99942 + } + } + }, + { + "to": { + "startLine": 1522, + "startColumn": 4, + "startOffset": 124399, + "endColumn": 95, + "endOffset": 124490 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1315, + "startColumn": 4, + "startOffset": 99947, + "endColumn": 95, + "endOffset": 100038 + } + } + }, + { + "to": { + "startLine": 1523, + "startColumn": 4, + "startOffset": 124495, + "endColumn": 95, + "endOffset": 124586 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1316, + "startColumn": 4, + "startOffset": 100043, + "endColumn": 95, + "endOffset": 100134 + } + } + }, + { + "to": { + "startLine": 1524, + "startColumn": 4, + "startOffset": 124591, + "endColumn": 97, + "endOffset": 124684 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1317, + "startColumn": 4, + "startOffset": 100139, + "endColumn": 97, + "endOffset": 100232 + } + } + }, + { + "to": { + "startLine": 1525, + "startColumn": 4, + "startOffset": 124689, + "endColumn": 99, + "endOffset": 124784 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1318, + "startColumn": 4, + "startOffset": 100237, + "endColumn": 99, + "endOffset": 100332 + } + } + }, + { + "to": { + "startLine": 1526, + "startColumn": 4, + "startOffset": 124789, + "endColumn": 101, + "endOffset": 124886 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1319, + "startColumn": 4, + "startOffset": 100337, + "endColumn": 101, + "endOffset": 100434 + } + } + }, + { + "to": { + "startLine": 1527, + "startColumn": 4, + "startOffset": 124891, + "endColumn": 101, + "endOffset": 124988 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1320, + "startColumn": 4, + "startOffset": 100439, + "endColumn": 101, + "endOffset": 100536 + } + } + }, + { + "to": { + "startLine": 1528, + "startColumn": 4, + "startOffset": 124993, + "endColumn": 101, + "endOffset": 125090 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1321, + "startColumn": 4, + "startOffset": 100541, + "endColumn": 101, + "endOffset": 100638 + } + } + }, + { + "to": { + "startLine": 1529, + "startColumn": 4, + "startOffset": 125095, + "endColumn": 101, + "endOffset": 125192 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1322, + "startColumn": 4, + "startOffset": 100643, + "endColumn": 101, + "endOffset": 100740 + } + } + }, + { + "to": { + "startLine": 1530, + "startColumn": 4, + "startOffset": 125197, + "endColumn": 101, + "endOffset": 125294 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1323, + "startColumn": 4, + "startOffset": 100745, + "endColumn": 101, + "endOffset": 100842 + } + } + }, + { + "to": { + "startLine": 1531, + "startColumn": 4, + "startOffset": 125299, + "endColumn": 99, + "endOffset": 125394 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1324, + "startColumn": 4, + "startOffset": 100847, + "endColumn": 99, + "endOffset": 100942 + } + } + }, + { + "to": { + "startLine": 1532, + "startColumn": 4, + "startOffset": 125399, + "endColumn": 95, + "endOffset": 125490 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1325, + "startColumn": 4, + "startOffset": 100947, + "endColumn": 95, + "endOffset": 101038 + } + } + }, + { + "to": { + "startLine": 1533, + "startColumn": 4, + "startOffset": 125495, + "endColumn": 111, + "endOffset": 125602 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1326, + "startColumn": 4, + "startOffset": 101043, + "endColumn": 111, + "endOffset": 101150 + } + } + }, + { + "to": { + "startLine": 1534, + "startColumn": 4, + "startOffset": 125607, + "endColumn": 128, + "endOffset": 125731 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1327, + "startColumn": 4, + "startOffset": 101155, + "endColumn": 128, + "endOffset": 101279 + } + } + }, + { + "to": { + "startLine": 1535, + "startColumn": 4, + "startOffset": 125736, + "endColumn": 122, + "endOffset": 125854 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1328, + "startColumn": 4, + "startOffset": 101284, + "endColumn": 122, + "endOffset": 101402 + } + } + }, + { + "to": { + "startLine": 1536, + "startColumn": 4, + "startOffset": 125859, + "endLine": 1537, + "endColumn": 12, + "endOffset": 126008 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1329, + "startColumn": 4, + "startOffset": 101407, + "endLine": 1330, + "endColumn": 12, + "endOffset": 101556 + } + } + }, + { + "to": { + "startLine": 1538, + "startColumn": 4, + "startOffset": 126013, + "endLine": 1539, + "endColumn": 12, + "endOffset": 126162 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1331, + "startColumn": 4, + "startOffset": 101561, + "endLine": 1332, + "endColumn": 12, + "endOffset": 101710 + } + } + }, + { + "to": { + "startLine": 1540, + "startColumn": 4, + "startOffset": 126167, + "endColumn": 97, + "endOffset": 126260 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1333, + "startColumn": 4, + "startOffset": 101715, + "endColumn": 97, + "endOffset": 101808 + } + } + }, + { + "to": { + "startLine": 1541, + "startColumn": 4, + "startOffset": 126265, + "endColumn": 113, + "endOffset": 126374 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1334, + "startColumn": 4, + "startOffset": 101813, + "endColumn": 113, + "endOffset": 101922 + } + } + }, + { + "to": { + "startLine": 1542, + "startColumn": 4, + "startOffset": 126379, + "endColumn": 93, + "endOffset": 126468 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1335, + "startColumn": 4, + "startOffset": 101927, + "endColumn": 93, + "endOffset": 102016 + } + } + }, + { + "to": { + "startLine": 1543, + "startColumn": 4, + "startOffset": 126473, + "endLine": 1544, + "endColumn": 12, + "endOffset": 126608 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1336, + "startColumn": 4, + "startOffset": 102021, + "endLine": 1337, + "endColumn": 12, + "endOffset": 102156 + } + } + }, + { + "to": { + "startLine": 1545, + "startColumn": 4, + "startOffset": 126613, + "endLine": 1546, + "endColumn": 12, + "endOffset": 126742 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1338, + "startColumn": 4, + "startOffset": 102161, + "endLine": 1339, + "endColumn": 12, + "endOffset": 102290 + } + } + }, + { + "to": { + "startLine": 1547, + "startColumn": 4, + "startOffset": 126747, + "endColumn": 95, + "endOffset": 126838 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1340, + "startColumn": 4, + "startOffset": 102295, + "endColumn": 95, + "endOffset": 102386 + } + } + }, + { + "to": { + "startLine": 1548, + "startColumn": 4, + "startOffset": 126843, + "endColumn": 111, + "endOffset": 126950 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1341, + "startColumn": 4, + "startOffset": 102391, + "endColumn": 111, + "endOffset": 102498 + } + } + }, + { + "to": { + "startLine": 1549, + "startColumn": 4, + "startOffset": 126955, + "endColumn": 99, + "endOffset": 127050 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1342, + "startColumn": 4, + "startOffset": 102503, + "endColumn": 99, + "endOffset": 102598 + } + } + }, + { + "to": { + "startLine": 1550, + "startColumn": 4, + "startOffset": 127055, + "endColumn": 115, + "endOffset": 127166 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1343, + "startColumn": 4, + "startOffset": 102603, + "endColumn": 115, + "endOffset": 102714 + } + } + }, + { + "to": { + "startLine": 1551, + "startColumn": 4, + "startOffset": 127171, + "endColumn": 95, + "endOffset": 127262 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1344, + "startColumn": 4, + "startOffset": 102719, + "endColumn": 95, + "endOffset": 102810 + } + } + }, + { + "to": { + "startLine": 1552, + "startColumn": 4, + "startOffset": 127267, + "endColumn": 111, + "endOffset": 127374 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1345, + "startColumn": 4, + "startOffset": 102815, + "endColumn": 111, + "endOffset": 102922 + } + } + }, + { + "to": { + "startLine": 1553, + "startColumn": 4, + "startOffset": 127379, + "endLine": 1554, + "endColumn": 12, + "endOffset": 127514 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1346, + "startColumn": 4, + "startOffset": 102927, + "endLine": 1347, + "endColumn": 12, + "endOffset": 103062 + } + } + }, + { + "to": { + "startLine": 1555, + "startColumn": 4, + "startOffset": 127519, + "endColumn": 135, + "endOffset": 127650 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1348, + "startColumn": 4, + "startOffset": 103067, + "endColumn": 135, + "endOffset": 103198 + } + } + }, + { + "to": { + "startLine": 1556, + "startColumn": 4, + "startOffset": 127655, + "endLine": 1557, + "endColumn": 12, + "endOffset": 127814 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1349, + "startColumn": 4, + "startOffset": 103203, + "endLine": 1350, + "endColumn": 12, + "endOffset": 103362 + } + } + }, + { + "to": { + "startLine": 1558, + "startColumn": 4, + "startOffset": 127819, + "endColumn": 129, + "endOffset": 127944 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1351, + "startColumn": 4, + "startOffset": 103367, + "endColumn": 129, + "endOffset": 103492 + } + } + }, + { + "to": { + "startLine": 1559, + "startColumn": 4, + "startOffset": 127949, + "endLine": 1560, + "endColumn": 12, + "endOffset": 128102 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1352, + "startColumn": 4, + "startOffset": 103497, + "endLine": 1353, + "endColumn": 12, + "endOffset": 103650 + } + } + }, + { + "to": { + "startLine": 1561, + "startColumn": 4, + "startOffset": 128107, + "endLine": 1562, + "endColumn": 12, + "endOffset": 128252 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1354, + "startColumn": 4, + "startOffset": 103655, + "endLine": 1355, + "endColumn": 12, + "endOffset": 103800 + } + } + }, + { + "to": { + "startLine": 1563, + "startColumn": 4, + "startOffset": 128257, + "endColumn": 140, + "endOffset": 128393 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1356, + "startColumn": 4, + "startOffset": 103805, + "endColumn": 140, + "endOffset": 103941 + } + } + }, + { + "to": { + "startLine": 1564, + "startColumn": 4, + "startOffset": 128398, + "endLine": 1565, + "endColumn": 12, + "endOffset": 128537 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1357, + "startColumn": 4, + "startOffset": 103946, + "endLine": 1358, + "endColumn": 12, + "endOffset": 104085 + } + } + }, + { + "to": { + "startLine": 1566, + "startColumn": 4, + "startOffset": 128542, + "endColumn": 134, + "endOffset": 128672 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1359, + "startColumn": 4, + "startOffset": 104090, + "endColumn": 134, + "endOffset": 104220 + } + } + }, + { + "to": { + "startLine": 1567, + "startColumn": 4, + "startOffset": 128677, + "endColumn": 111, + "endOffset": 128784 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1360, + "startColumn": 4, + "startOffset": 104225, + "endColumn": 111, + "endOffset": 104332 + } + } + }, + { + "to": { + "startLine": 1568, + "startColumn": 4, + "startOffset": 128789, + "endColumn": 127, + "endOffset": 128912 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1361, + "startColumn": 4, + "startOffset": 104337, + "endColumn": 127, + "endOffset": 104460 + } + } + }, + { + "to": { + "startLine": 1569, + "startColumn": 4, + "startOffset": 128917, + "endLine": 1570, + "endColumn": 12, + "endOffset": 129048 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1362, + "startColumn": 4, + "startOffset": 104465, + "endLine": 1363, + "endColumn": 12, + "endOffset": 104596 + } + } + }, + { + "to": { + "startLine": 1571, + "startColumn": 4, + "startOffset": 129053, + "endLine": 1572, + "endColumn": 12, + "endOffset": 129190 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1364, + "startColumn": 4, + "startOffset": 104601, + "endLine": 1365, + "endColumn": 12, + "endOffset": 104738 + } + } + }, + { + "to": { + "startLine": 1573, + "startColumn": 4, + "startOffset": 129195, + "endLine": 1574, + "endColumn": 12, + "endOffset": 129332 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1366, + "startColumn": 4, + "startOffset": 104743, + "endLine": 1367, + "endColumn": 12, + "endOffset": 104880 + } + } + }, + { + "to": { + "startLine": 1575, + "startColumn": 4, + "startOffset": 129337, + "endColumn": 111, + "endOffset": 129444 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1368, + "startColumn": 4, + "startOffset": 104885, + "endColumn": 111, + "endOffset": 104992 + } + } + }, + { + "to": { + "startLine": 1576, + "startColumn": 4, + "startOffset": 129449, + "endColumn": 139, + "endOffset": 129584 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1369, + "startColumn": 4, + "startOffset": 104997, + "endColumn": 139, + "endOffset": 105132 + } + } + }, + { + "to": { + "startLine": 1577, + "startColumn": 4, + "startOffset": 129589, + "endLine": 1579, + "endColumn": 12, + "endOffset": 129785 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 78, + "startColumn": 4, + "startOffset": 10786, + "endLine": 80, + "endColumn": 12, + "endOffset": 10982 + } + } + }, + { + "to": { + "startLine": 1580, + "startColumn": 4, + "startOffset": 129790, + "endColumn": 91, + "endOffset": 129877 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 81, + "startColumn": 4, + "startOffset": 10987, + "endColumn": 91, + "endOffset": 11074 + } + } + }, + { + "to": { + "startLine": 1581, + "startColumn": 4, + "startOffset": 129882, + "endLine": 1583, + "endColumn": 12, + "endOffset": 130057 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 82, + "startColumn": 4, + "startOffset": 11079, + "endLine": 84, + "endColumn": 12, + "endOffset": 11254 + } + } + }, + { + "to": { + "startLine": 1584, + "startColumn": 4, + "startOffset": 130062, + "endLine": 1586, + "endColumn": 12, + "endOffset": 130226 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 85, + "startColumn": 4, + "startOffset": 11259, + "endLine": 87, + "endColumn": 12, + "endOffset": 11423 + } + } + }, + { + "to": { + "startLine": 1587, + "startColumn": 4, + "startOffset": 130231, + "endLine": 1589, + "endColumn": 12, + "endOffset": 130401 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 88, + "startColumn": 4, + "startOffset": 11428, + "endLine": 90, + "endColumn": 12, + "endOffset": 11598 + } + } + }, + { + "to": { + "startLine": 1590, + "startColumn": 4, + "startOffset": 130406, + "endLine": 1593, + "endColumn": 12, + "endOffset": 130654 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 91, + "startColumn": 4, + "startOffset": 11603, + "endLine": 94, + "endColumn": 12, + "endOffset": 11851 + } + } + }, + { + "to": { + "startLine": 1594, + "startColumn": 4, + "startOffset": 130659, + "endLine": 1598, + "endColumn": 12, + "endOffset": 130945 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 95, + "startColumn": 4, + "startOffset": 11856, + "endLine": 99, + "endColumn": 12, + "endOffset": 12142 + } + } + }, + { + "to": { + "startLine": 1599, + "startColumn": 4, + "startOffset": 130950, + "endColumn": 67, + "endOffset": 131013 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1370, + "startColumn": 4, + "startOffset": 105137, + "endColumn": 67, + "endOffset": 105200 + } + } + }, + { + "to": { + "startLine": 1600, + "startColumn": 4, + "startOffset": 131018, + "endColumn": 72, + "endOffset": 131086 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1371, + "startColumn": 4, + "startOffset": 105205, + "endColumn": 72, + "endOffset": 105273 + } + } + }, + { + "to": { + "startLine": 1601, + "startColumn": 4, + "startOffset": 131091, + "endColumn": 73, + "endOffset": 131160 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1372, + "startColumn": 4, + "startOffset": 105278, + "endColumn": 73, + "endOffset": 105347 + } + } + }, + { + "to": { + "startLine": 1602, + "startColumn": 4, + "startOffset": 131165, + "endColumn": 72, + "endOffset": 131233 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1373, + "startColumn": 4, + "startOffset": 105352, + "endColumn": 72, + "endOffset": 105420 + } + } + }, + { + "to": { + "startLine": 1603, + "startColumn": 4, + "startOffset": 131238, + "endColumn": 73, + "endOffset": 131307 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1374, + "startColumn": 4, + "startOffset": 105425, + "endColumn": 73, + "endOffset": 105494 + } + } + }, + { + "to": { + "startLine": 1604, + "startColumn": 4, + "startOffset": 131312, + "endLine": 1605, + "endColumn": 12, + "endOffset": 131453 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1375, + "startColumn": 4, + "startOffset": 105499, + "endLine": 1376, + "endColumn": 12, + "endOffset": 105640 + } + } + }, + { + "to": { + "startLine": 1606, + "startColumn": 4, + "startOffset": 131458, + "endLine": 1607, + "endColumn": 12, + "endOffset": 131597 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1377, + "startColumn": 4, + "startOffset": 105645, + "endLine": 1378, + "endColumn": 12, + "endOffset": 105784 + } + } + }, + { + "to": { + "startLine": 1608, + "startColumn": 4, + "startOffset": 131602, + "endLine": 1609, + "endColumn": 12, + "endOffset": 131735 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1379, + "startColumn": 4, + "startOffset": 105789, + "endLine": 1380, + "endColumn": 12, + "endOffset": 105922 + } + } + }, + { + "to": { + "startLine": 1610, + "startColumn": 4, + "startOffset": 131740, + "endColumn": 25, + "endOffset": 131761 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 27, + "startColumn": 4, + "startOffset": 3223, + "endColumn": 25, + "endOffset": 3244 + } + } + }, + { + "to": { + "startLine": 1611, + "startColumn": 4, + "startOffset": 131766, + "endColumn": 65, + "endOffset": 131827 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1381, + "startColumn": 4, + "startOffset": 105927, + "endColumn": 65, + "endOffset": 105988 + } + } + }, + { + "to": { + "startLine": 1612, + "startColumn": 4, + "startOffset": 131832, + "endColumn": 89, + "endOffset": 131917 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1382, + "startColumn": 4, + "startOffset": 105993, + "endColumn": 89, + "endOffset": 106078 + } + } + }, + { + "to": { + "startLine": 1613, + "startColumn": 4, + "startOffset": 131922, + "endColumn": 75, + "endOffset": 131993 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1383, + "startColumn": 4, + "startOffset": 106083, + "endColumn": 75, + "endOffset": 106154 + } + } + }, + { + "to": { + "startLine": 1614, + "startColumn": 4, + "startOffset": 131998, + "endColumn": 103, + "endOffset": 132097 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1384, + "startColumn": 4, + "startOffset": 106159, + "endColumn": 103, + "endOffset": 106258 + } + } + }, + { + "to": { + "startLine": 1615, + "startColumn": 4, + "startOffset": 132102, + "endColumn": 89, + "endOffset": 132187 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1385, + "startColumn": 4, + "startOffset": 106263, + "endColumn": 89, + "endOffset": 106348 + } + } + }, + { + "to": { + "startLine": 1616, + "startColumn": 4, + "startOffset": 132192, + "endColumn": 101, + "endOffset": 132289 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1386, + "startColumn": 4, + "startOffset": 106353, + "endColumn": 101, + "endOffset": 106450 + } + } + }, + { + "to": { + "startLine": 1617, + "startColumn": 4, + "startOffset": 132294, + "endColumn": 107, + "endOffset": 132397 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1387, + "startColumn": 4, + "startOffset": 106455, + "endColumn": 107, + "endOffset": 106558 + } + } + }, + { + "to": { + "startLine": 1618, + "startColumn": 4, + "startOffset": 132402, + "endColumn": 107, + "endOffset": 132505 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1388, + "startColumn": 4, + "startOffset": 106563, + "endColumn": 107, + "endOffset": 106666 + } + } + }, + { + "to": { + "startLine": 1619, + "startColumn": 4, + "startOffset": 132510, + "endColumn": 99, + "endOffset": 132605 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1389, + "startColumn": 4, + "startOffset": 106671, + "endColumn": 99, + "endOffset": 106766 + } + } + }, + { + "to": { + "startLine": 1620, + "startColumn": 4, + "startOffset": 132610, + "endColumn": 79, + "endOffset": 132685 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1390, + "startColumn": 4, + "startOffset": 106771, + "endColumn": 79, + "endOffset": 106846 + } + } + }, + { + "to": { + "startLine": 1621, + "startColumn": 4, + "startOffset": 132690, + "endColumn": 91, + "endOffset": 132777 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1391, + "startColumn": 4, + "startOffset": 106851, + "endColumn": 91, + "endOffset": 106938 + } + } + }, + { + "to": { + "startLine": 1622, + "startColumn": 4, + "startOffset": 132782, + "endColumn": 97, + "endOffset": 132875 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1392, + "startColumn": 4, + "startOffset": 106943, + "endColumn": 97, + "endOffset": 107036 + } + } + }, + { + "to": { + "startLine": 1623, + "startColumn": 4, + "startOffset": 132880, + "endLine": 1624, + "endColumn": 12, + "endOffset": 132985 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1393, + "startColumn": 4, + "startOffset": 107041, + "endLine": 1394, + "endColumn": 12, + "endOffset": 107146 + } + } + }, + { + "to": { + "startLine": 1625, + "startColumn": 4, + "startOffset": 132990, + "endColumn": 77, + "endOffset": 133063 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1395, + "startColumn": 4, + "startOffset": 107151, + "endColumn": 77, + "endOffset": 107224 + } + } + }, + { + "to": { + "startLine": 1626, + "startColumn": 4, + "startOffset": 133068, + "endColumn": 105, + "endOffset": 133169 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1396, + "startColumn": 4, + "startOffset": 107229, + "endColumn": 105, + "endOffset": 107330 + } + } + }, + { + "to": { + "startLine": 1627, + "startColumn": 4, + "startOffset": 133174, + "endColumn": 91, + "endOffset": 133261 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1397, + "startColumn": 4, + "startOffset": 107335, + "endColumn": 91, + "endOffset": 107422 + } + } + }, + { + "to": { + "startLine": 1628, + "startColumn": 4, + "startOffset": 133266, + "endColumn": 103, + "endOffset": 133365 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1398, + "startColumn": 4, + "startOffset": 107427, + "endColumn": 103, + "endOffset": 107526 + } + } + }, + { + "to": { + "startLine": 1629, + "startColumn": 4, + "startOffset": 133370, + "endColumn": 109, + "endOffset": 133475 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1399, + "startColumn": 4, + "startOffset": 107531, + "endColumn": 109, + "endOffset": 107636 + } + } + }, + { + "to": { + "startLine": 1630, + "startColumn": 4, + "startOffset": 133480, + "endLine": 1631, + "endColumn": 12, + "endOffset": 133597 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1400, + "startColumn": 4, + "startOffset": 107641, + "endLine": 1401, + "endColumn": 12, + "endOffset": 107758 + } + } + }, + { + "to": { + "startLine": 1632, + "startColumn": 4, + "startOffset": 133602, + "endLine": 1635, + "endColumn": 12, + "endOffset": 133760 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1402, + "startColumn": 4, + "startOffset": 107763, + "endLine": 1405, + "endColumn": 12, + "endOffset": 107921 + } + } + }, + { + "to": { + "startLine": 1636, + "startColumn": 4, + "startOffset": 133765, + "endLine": 1639, + "endColumn": 12, + "endOffset": 133917 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1406, + "startColumn": 4, + "startOffset": 107926, + "endLine": 1409, + "endColumn": 12, + "endOffset": 108078 + } + } + }, + { + "to": { + "startLine": 1640, + "startColumn": 4, + "startOffset": 133922, + "endColumn": 34, + "endOffset": 133952 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 28, + "startColumn": 4, + "startOffset": 3249, + "endColumn": 34, + "endOffset": 3279 + } + } + }, + { + "to": { + "startLine": 1641, + "startColumn": 4, + "startOffset": 133957, + "endLine": 1647, + "endColumn": 10, + "endOffset": 134418 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 3284, + "endLine": 35, + "endColumn": 10, + "endOffset": 3745 + } + } + }, + { + "to": { + "startLine": 1648, + "startColumn": 4, + "startOffset": 134423, + "endLine": 1650, + "endColumn": 12, + "endOffset": 134572 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 100, + "startColumn": 4, + "startOffset": 12147, + "endLine": 102, + "endColumn": 12, + "endOffset": 12296 + } + } + }, + { + "to": { + "startLine": 1651, + "startColumn": 4, + "startOffset": 134577, + "endLine": 1655, + "endColumn": 12, + "endOffset": 134930 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 103, + "startColumn": 4, + "startOffset": 12301, + "endLine": 107, + "endColumn": 12, + "endOffset": 12654 + } + } + }, + { + "to": { + "startLine": 1656, + "startColumn": 4, + "startOffset": 134935, + "endLine": 1658, + "endColumn": 12, + "endOffset": 135097 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 108, + "startColumn": 4, + "startOffset": 12659, + "endLine": 110, + "endColumn": 12, + "endOffset": 12821 + } + } + }, + { + "to": { + "startLine": 1659, + "startColumn": 4, + "startOffset": 135102, + "endLine": 1663, + "endColumn": 12, + "endOffset": 135467 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 111, + "startColumn": 4, + "startOffset": 12826, + "endLine": 115, + "endColumn": 12, + "endOffset": 13191 + } + } + }, + { + "to": { + "startLine": 1664, + "startColumn": 4, + "startOffset": 135472, + "endLine": 1667, + "endColumn": 12, + "endOffset": 135627 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 116, + "startColumn": 4, + "startOffset": 13196, + "endLine": 119, + "endColumn": 12, + "endOffset": 13351 + } + } + }, + { + "to": { + "startLine": 1668, + "startColumn": 4, + "startOffset": 135632, + "endLine": 1671, + "endColumn": 12, + "endOffset": 135781 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 120, + "startColumn": 4, + "startOffset": 13356, + "endLine": 123, + "endColumn": 12, + "endOffset": 13505 + } + } + }, + { + "to": { + "startLine": 1672, + "startColumn": 4, + "startOffset": 135786, + "endLine": 1674, + "endColumn": 12, + "endOffset": 135964 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 36, + "startColumn": 4, + "startOffset": 3750, + "endLine": 38, + "endColumn": 12, + "endOffset": 3928 + } + } + }, + { + "to": { + "startLine": 1675, + "startColumn": 4, + "startOffset": 135969, + "endLine": 1680, + "endColumn": 12, + "endOffset": 136329 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 39, + "startColumn": 4, + "startOffset": 3933, + "endLine": 44, + "endColumn": 12, + "endOffset": 4293 + } + } + }, + { + "to": { + "startLine": 1681, + "startColumn": 4, + "startOffset": 136334, + "endColumn": 79, + "endOffset": 136409 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1410, + "startColumn": 4, + "startOffset": 108083, + "endColumn": 79, + "endOffset": 108158 + } + } + }, + { + "to": { + "startLine": 1682, + "startColumn": 4, + "startOffset": 136414, + "endColumn": 99, + "endOffset": 136509 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1411, + "startColumn": 4, + "startOffset": 108163, + "endColumn": 99, + "endOffset": 108258 + } + } + }, + { + "to": { + "startLine": 1683, + "startColumn": 4, + "startOffset": 136514, + "endColumn": 89, + "endOffset": 136599 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1412, + "startColumn": 4, + "startOffset": 108263, + "endColumn": 89, + "endOffset": 108348 + } + } + }, + { + "to": { + "startLine": 1684, + "startColumn": 4, + "startOffset": 136604, + "endColumn": 109, + "endOffset": 136709 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1413, + "startColumn": 4, + "startOffset": 108353, + "endColumn": 109, + "endOffset": 108458 + } + } + }, + { + "to": { + "startLine": 1685, + "startColumn": 4, + "startOffset": 136714, + "endColumn": 91, + "endOffset": 136801 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1414, + "startColumn": 4, + "startOffset": 108463, + "endColumn": 91, + "endOffset": 108550 + } + } + }, + { + "to": { + "startLine": 1686, + "startColumn": 4, + "startOffset": 136806, + "endLine": 1687, + "endColumn": 12, + "endOffset": 136901 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1415, + "startColumn": 4, + "startOffset": 108555, + "endLine": 1416, + "endColumn": 12, + "endOffset": 108650 + } + } + }, + { + "to": { + "startLine": 1688, + "startColumn": 4, + "startOffset": 136906, + "endLine": 1689, + "endColumn": 12, + "endOffset": 137013 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1417, + "startColumn": 4, + "startOffset": 108655, + "endLine": 1418, + "endColumn": 12, + "endOffset": 108762 + } + } + }, + { + "to": { + "startLine": 1690, + "startColumn": 4, + "startOffset": 137018, + "endLine": 1691, + "endColumn": 12, + "endOffset": 137127 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1419, + "startColumn": 4, + "startOffset": 108767, + "endLine": 1420, + "endColumn": 12, + "endOffset": 108876 + } + } + }, + { + "to": { + "startLine": 1692, + "startColumn": 4, + "startOffset": 137132, + "endLine": 1693, + "endColumn": 12, + "endOffset": 137243 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1421, + "startColumn": 4, + "startOffset": 108881, + "endLine": 1422, + "endColumn": 12, + "endOffset": 108992 + } + } + }, + { + "to": { + "startLine": 1694, + "startColumn": 4, + "startOffset": 137248, + "endLine": 1695, + "endColumn": 12, + "endOffset": 137359 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1423, + "startColumn": 4, + "startOffset": 108997, + "endLine": 1424, + "endColumn": 12, + "endOffset": 109108 + } + } + }, + { + "to": { + "startLine": 1696, + "startColumn": 4, + "startOffset": 137364, + "endColumn": 93, + "endOffset": 137453 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1425, + "startColumn": 4, + "startOffset": 109113, + "endColumn": 93, + "endOffset": 109202 + } + } + }, + { + "to": { + "startLine": 1697, + "startColumn": 4, + "startOffset": 137458, + "endColumn": 113, + "endOffset": 137567 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1426, + "startColumn": 4, + "startOffset": 109207, + "endColumn": 113, + "endOffset": 109316 + } + } + }, + { + "to": { + "startLine": 1698, + "startColumn": 4, + "startOffset": 137572, + "endColumn": 111, + "endOffset": 137679 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1427, + "startColumn": 4, + "startOffset": 109321, + "endColumn": 111, + "endOffset": 109428 + } + } + }, + { + "to": { + "startLine": 1699, + "startColumn": 4, + "startOffset": 137684, + "endLine": 1700, + "endColumn": 12, + "endOffset": 137781 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1428, + "startColumn": 4, + "startOffset": 109433, + "endLine": 1429, + "endColumn": 12, + "endOffset": 109530 + } + } + }, + { + "to": { + "startLine": 1701, + "startColumn": 4, + "startOffset": 137786, + "endLine": 1702, + "endColumn": 12, + "endOffset": 137901 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1430, + "startColumn": 4, + "startOffset": 109535, + "endLine": 1431, + "endColumn": 12, + "endOffset": 109650 + } + } + }, + { + "to": { + "startLine": 1703, + "startColumn": 4, + "startOffset": 137906, + "endLine": 1704, + "endColumn": 12, + "endOffset": 138023 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1432, + "startColumn": 4, + "startOffset": 109655, + "endLine": 1433, + "endColumn": 12, + "endOffset": 109772 + } + } + }, + { + "to": { + "startLine": 1705, + "startColumn": 4, + "startOffset": 138028, + "endColumn": 81, + "endOffset": 138105 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1434, + "startColumn": 4, + "startOffset": 109777, + "endColumn": 81, + "endOffset": 109854 + } + } + }, + { + "to": { + "startLine": 1706, + "startColumn": 4, + "startOffset": 138110, + "endColumn": 103, + "endOffset": 138209 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1435, + "startColumn": 4, + "startOffset": 109859, + "endColumn": 103, + "endOffset": 109958 + } + } + }, + { + "to": { + "startLine": 1707, + "startColumn": 4, + "startOffset": 138214, + "endColumn": 119, + "endOffset": 138329 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1436, + "startColumn": 4, + "startOffset": 109963, + "endColumn": 119, + "endOffset": 110078 + } + } + }, + { + "to": { + "startLine": 1708, + "startColumn": 4, + "startOffset": 138334, + "endColumn": 125, + "endOffset": 138455 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1437, + "startColumn": 4, + "startOffset": 110083, + "endColumn": 125, + "endOffset": 110204 + } + } + }, + { + "to": { + "startLine": 1709, + "startColumn": 4, + "startOffset": 138460, + "endColumn": 97, + "endOffset": 138553 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1438, + "startColumn": 4, + "startOffset": 110209, + "endColumn": 97, + "endOffset": 110302 + } + } + }, + { + "to": { + "startLine": 1710, + "startColumn": 4, + "startOffset": 138558, + "endColumn": 93, + "endOffset": 138647 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1439, + "startColumn": 4, + "startOffset": 110307, + "endColumn": 93, + "endOffset": 110396 + } + } + }, + { + "to": { + "startLine": 1711, + "startColumn": 4, + "startOffset": 138652, + "endColumn": 87, + "endOffset": 138735 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1440, + "startColumn": 4, + "startOffset": 110401, + "endColumn": 87, + "endOffset": 110484 + } + } + }, + { + "to": { + "startLine": 1712, + "startColumn": 4, + "startOffset": 138740, + "endColumn": 111, + "endOffset": 138847 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1441, + "startColumn": 4, + "startOffset": 110489, + "endColumn": 111, + "endOffset": 110596 + } + } + }, + { + "to": { + "startLine": 1713, + "startColumn": 4, + "startOffset": 138852, + "endColumn": 115, + "endOffset": 138963 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1442, + "startColumn": 4, + "startOffset": 110601, + "endColumn": 115, + "endOffset": 110712 + } + } + }, + { + "to": { + "startLine": 1714, + "startColumn": 4, + "startOffset": 138968, + "endColumn": 121, + "endOffset": 139085 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1443, + "startColumn": 4, + "startOffset": 110717, + "endColumn": 121, + "endOffset": 110834 + } + } + }, + { + "to": { + "startLine": 1715, + "startColumn": 4, + "startOffset": 139090, + "endColumn": 111, + "endOffset": 139197 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1444, + "startColumn": 4, + "startOffset": 110839, + "endColumn": 111, + "endOffset": 110946 + } + } + }, + { + "to": { + "startLine": 1716, + "startColumn": 4, + "startOffset": 139202, + "endLine": 1718, + "endColumn": 12, + "endOffset": 139372 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1445, + "startColumn": 4, + "startOffset": 110951, + "endLine": 1447, + "endColumn": 12, + "endOffset": 111121 + } + } + }, + { + "to": { + "startLine": 1719, + "startColumn": 4, + "startOffset": 139377, + "endColumn": 115, + "endOffset": 139488 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1448, + "startColumn": 4, + "startOffset": 111126, + "endColumn": 115, + "endOffset": 111237 + } + } + }, + { + "to": { + "startLine": 1720, + "startColumn": 4, + "startOffset": 139493, + "endColumn": 85, + "endOffset": 139574 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1449, + "startColumn": 4, + "startOffset": 111242, + "endColumn": 85, + "endOffset": 111323 + } + } + }, + { + "to": { + "startLine": 1721, + "startColumn": 4, + "startOffset": 139579, + "endColumn": 91, + "endOffset": 139666 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1450, + "startColumn": 4, + "startOffset": 111328, + "endColumn": 91, + "endOffset": 111415 + } + } + }, + { + "to": { + "startLine": 1722, + "startColumn": 4, + "startOffset": 139671, + "endLine": 1723, + "endColumn": 12, + "endOffset": 139778 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1451, + "startColumn": 4, + "startOffset": 111420, + "endLine": 1452, + "endColumn": 12, + "endOffset": 111527 + } + } + }, + { + "to": { + "startLine": 1724, + "startColumn": 4, + "startOffset": 139783, + "endLine": 1725, + "endColumn": 12, + "endOffset": 139902 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1453, + "startColumn": 4, + "startOffset": 111532, + "endLine": 1454, + "endColumn": 12, + "endOffset": 111651 + } + } + }, + { + "to": { + "startLine": 1726, + "startColumn": 4, + "startOffset": 139907, + "endColumn": 66, + "endOffset": 139969 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1455, + "startColumn": 4, + "startOffset": 111656, + "endColumn": 66, + "endOffset": 111718 + } + } + }, + { + "to": { + "startLine": 1727, + "startColumn": 4, + "startOffset": 139974, + "endLine": 1728, + "endColumn": 12, + "endOffset": 140095 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1456, + "startColumn": 4, + "startOffset": 111723, + "endLine": 1457, + "endColumn": 12, + "endOffset": 111844 + } + } + }, + { + "to": { + "startLine": 1729, + "startColumn": 4, + "startOffset": 140100, + "endColumn": 67, + "endOffset": 140163 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1458, + "startColumn": 4, + "startOffset": 111849, + "endColumn": 67, + "endOffset": 111912 + } + } + }, + { + "to": { + "startLine": 1730, + "startColumn": 4, + "startOffset": 140168, + "endLine": 1731, + "endColumn": 12, + "endOffset": 140291 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1459, + "startColumn": 4, + "startOffset": 111917, + "endLine": 1460, + "endColumn": 12, + "endOffset": 112040 + } + } + }, + { + "to": { + "startLine": 1732, + "startColumn": 4, + "startOffset": 140296, + "endLine": 1733, + "endColumn": 12, + "endOffset": 140435 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1461, + "startColumn": 4, + "startOffset": 112045, + "endLine": 1462, + "endColumn": 12, + "endOffset": 112184 + } + } + }, + { + "to": { + "startLine": 1734, + "startColumn": 4, + "startOffset": 140440, + "endLine": 1735, + "endColumn": 12, + "endOffset": 140563 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1463, + "startColumn": 4, + "startOffset": 112189, + "endLine": 1464, + "endColumn": 12, + "endOffset": 112312 + } + } + }, + { + "to": { + "startLine": 1736, + "startColumn": 4, + "startOffset": 140568, + "endColumn": 68, + "endOffset": 140632 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1465, + "startColumn": 4, + "startOffset": 112317, + "endColumn": 68, + "endOffset": 112381 + } + } + }, + { + "to": { + "startLine": 1737, + "startColumn": 4, + "startOffset": 140637, + "endColumn": 94, + "endOffset": 140727 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1466, + "startColumn": 4, + "startOffset": 112386, + "endColumn": 94, + "endOffset": 112476 + } + } + }, + { + "to": { + "startLine": 1738, + "startColumn": 4, + "startOffset": 140732, + "endColumn": 114, + "endOffset": 140842 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1467, + "startColumn": 4, + "startOffset": 112481, + "endColumn": 114, + "endOffset": 112591 + } + } + }, + { + "to": { + "startLine": 1739, + "startColumn": 4, + "startOffset": 140847, + "endColumn": 112, + "endOffset": 140955 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1468, + "startColumn": 4, + "startOffset": 112596, + "endColumn": 112, + "endOffset": 112704 + } + } + }, + { + "to": { + "startLine": 1740, + "startColumn": 4, + "startOffset": 140960, + "endColumn": 98, + "endOffset": 141054 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1469, + "startColumn": 4, + "startOffset": 112709, + "endColumn": 98, + "endOffset": 112803 + } + } + }, + { + "to": { + "startLine": 1741, + "startColumn": 4, + "startOffset": 141059, + "endColumn": 108, + "endOffset": 141163 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1470, + "startColumn": 4, + "startOffset": 112808, + "endColumn": 108, + "endOffset": 112912 + } + } + }, + { + "to": { + "startLine": 1742, + "startColumn": 4, + "startOffset": 141168, + "endColumn": 110, + "endOffset": 141274 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1471, + "startColumn": 4, + "startOffset": 112917, + "endColumn": 110, + "endOffset": 113023 + } + } + }, + { + "to": { + "startLine": 1743, + "startColumn": 4, + "startOffset": 141279, + "endColumn": 110, + "endOffset": 141385 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1472, + "startColumn": 4, + "startOffset": 113028, + "endColumn": 110, + "endOffset": 113134 + } + } + }, + { + "to": { + "startLine": 1744, + "startColumn": 4, + "startOffset": 141390, + "endColumn": 100, + "endOffset": 141486 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1473, + "startColumn": 4, + "startOffset": 113139, + "endColumn": 100, + "endOffset": 113235 + } + } + }, + { + "to": { + "startLine": 1745, + "startColumn": 4, + "startOffset": 141491, + "endColumn": 104, + "endOffset": 141591 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1474, + "startColumn": 4, + "startOffset": 113240, + "endColumn": 104, + "endOffset": 113340 + } + } + }, + { + "to": { + "startLine": 1746, + "startColumn": 4, + "startOffset": 141596, + "endLine": 1747, + "endColumn": 12, + "endOffset": 141703 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1475, + "startColumn": 4, + "startOffset": 113345, + "endLine": 1476, + "endColumn": 12, + "endOffset": 113452 + } + } + }, + { + "to": { + "startLine": 1748, + "startColumn": 4, + "startOffset": 141708, + "endLine": 1749, + "endColumn": 12, + "endOffset": 141833 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1477, + "startColumn": 4, + "startOffset": 113457, + "endLine": 1478, + "endColumn": 12, + "endOffset": 113582 + } + } + }, + { + "to": { + "startLine": 1750, + "startColumn": 4, + "startOffset": 141838, + "endColumn": 90, + "endOffset": 141924 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1479, + "startColumn": 4, + "startOffset": 113587, + "endColumn": 90, + "endOffset": 113673 + } + } + }, + { + "to": { + "startLine": 1751, + "startColumn": 4, + "startOffset": 141929, + "endColumn": 122, + "endOffset": 142047 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1480, + "startColumn": 4, + "startOffset": 113678, + "endColumn": 122, + "endOffset": 113796 + } + } + }, + { + "to": { + "startLine": 1752, + "startColumn": 4, + "startOffset": 142052, + "endLine": 1753, + "endColumn": 12, + "endOffset": 142159 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1481, + "startColumn": 4, + "startOffset": 113801, + "endLine": 1482, + "endColumn": 12, + "endOffset": 113908 + } + } + }, + { + "to": { + "startLine": 1754, + "startColumn": 4, + "startOffset": 142164, + "endColumn": 85, + "endOffset": 142245 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1483, + "startColumn": 4, + "startOffset": 113913, + "endColumn": 85, + "endOffset": 113994 + } + } + }, + { + "to": { + "startLine": 1755, + "startColumn": 4, + "startOffset": 142250, + "endColumn": 103, + "endOffset": 142349 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1484, + "startColumn": 4, + "startOffset": 113999, + "endColumn": 103, + "endOffset": 114098 + } + } + }, + { + "to": { + "startLine": 1756, + "startColumn": 4, + "startOffset": 142354, + "endLine": 1757, + "endColumn": 12, + "endOffset": 142457 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1485, + "startColumn": 4, + "startOffset": 114103, + "endLine": 1486, + "endColumn": 12, + "endOffset": 114206 + } + } + }, + { + "to": { + "startLine": 1758, + "startColumn": 4, + "startOffset": 142462, + "endLine": 1759, + "endColumn": 12, + "endOffset": 142557 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1487, + "startColumn": 4, + "startOffset": 114211, + "endLine": 1488, + "endColumn": 12, + "endOffset": 114306 + } + } + }, + { + "to": { + "startLine": 1760, + "startColumn": 4, + "startOffset": 142562, + "endLine": 1761, + "endColumn": 12, + "endOffset": 142675 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1489, + "startColumn": 4, + "startOffset": 114311, + "endLine": 1490, + "endColumn": 12, + "endOffset": 114424 + } + } + }, + { + "to": { + "startLine": 1762, + "startColumn": 4, + "startOffset": 142680, + "endLine": 1763, + "endColumn": 12, + "endOffset": 142779 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1491, + "startColumn": 4, + "startOffset": 114429, + "endLine": 1492, + "endColumn": 12, + "endOffset": 114528 + } + } + }, + { + "to": { + "startLine": 1764, + "startColumn": 4, + "startOffset": 142784, + "endLine": 1765, + "endColumn": 12, + "endOffset": 142883 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1493, + "startColumn": 4, + "startOffset": 114533, + "endLine": 1494, + "endColumn": 12, + "endOffset": 114632 + } + } + }, + { + "to": { + "startLine": 1766, + "startColumn": 4, + "startOffset": 142888, + "endLine": 1767, + "endColumn": 12, + "endOffset": 143009 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1495, + "startColumn": 4, + "startOffset": 114637, + "endLine": 1496, + "endColumn": 12, + "endOffset": 114758 + } + } + }, + { + "to": { + "startLine": 1768, + "startColumn": 4, + "startOffset": 143014, + "endColumn": 87, + "endOffset": 143097 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1497, + "startColumn": 4, + "startOffset": 114763, + "endColumn": 87, + "endOffset": 114846 + } + } + }, + { + "to": { + "startLine": 1769, + "startColumn": 4, + "startOffset": 143102, + "endColumn": 107, + "endOffset": 143205 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1498, + "startColumn": 4, + "startOffset": 114851, + "endColumn": 107, + "endOffset": 114954 + } + } + }, + { + "to": { + "startLine": 1770, + "startColumn": 4, + "startOffset": 143210, + "endColumn": 99, + "endOffset": 143305 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1499, + "startColumn": 4, + "startOffset": 114959, + "endColumn": 99, + "endOffset": 115054 + } + } + }, + { + "to": { + "startLine": 1771, + "startColumn": 4, + "startOffset": 143310, + "endColumn": 89, + "endOffset": 143395 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1500, + "startColumn": 4, + "startOffset": 115059, + "endColumn": 89, + "endOffset": 115144 + } + } + }, + { + "to": { + "startLine": 1772, + "startColumn": 4, + "startOffset": 143400, + "endColumn": 109, + "endOffset": 143505 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1501, + "startColumn": 4, + "startOffset": 115149, + "endColumn": 109, + "endOffset": 115254 + } + } + }, + { + "to": { + "startLine": 1773, + "startColumn": 4, + "startOffset": 143510, + "endColumn": 83, + "endOffset": 143589 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1502, + "startColumn": 4, + "startOffset": 115259, + "endColumn": 83, + "endOffset": 115338 + } + } + }, + { + "to": { + "startLine": 1774, + "startColumn": 4, + "startOffset": 143594, + "endColumn": 83, + "endOffset": 143673 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1503, + "startColumn": 4, + "startOffset": 115343, + "endColumn": 83, + "endOffset": 115422 + } + } + }, + { + "to": { + "startLine": 1775, + "startColumn": 4, + "startOffset": 143678, + "endColumn": 53, + "endOffset": 143727 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1504, + "startColumn": 4, + "startOffset": 115427, + "endColumn": 53, + "endOffset": 115476 + } + } + }, + { + "to": { + "startLine": 1776, + "startColumn": 4, + "startOffset": 143732, + "endColumn": 63, + "endOffset": 143791 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1505, + "startColumn": 4, + "startOffset": 115481, + "endColumn": 63, + "endOffset": 115540 + } + } + }, + { + "to": { + "startLine": 1777, + "startColumn": 4, + "startOffset": 143796, + "endColumn": 105, + "endOffset": 143897 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1506, + "startColumn": 4, + "startOffset": 115545, + "endColumn": 105, + "endOffset": 115646 + } + } + }, + { + "to": { + "startLine": 1778, + "startColumn": 4, + "startOffset": 143902, + "endColumn": 109, + "endOffset": 144007 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1507, + "startColumn": 4, + "startOffset": 115651, + "endColumn": 109, + "endOffset": 115756 + } + } + }, + { + "to": { + "startLine": 1779, + "startColumn": 4, + "startOffset": 144012, + "endColumn": 83, + "endOffset": 144091 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1508, + "startColumn": 4, + "startOffset": 115761, + "endColumn": 83, + "endOffset": 115840 + } + } + }, + { + "to": { + "startLine": 1780, + "startColumn": 4, + "startOffset": 144096, + "endColumn": 119, + "endOffset": 144211 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1509, + "startColumn": 4, + "startOffset": 115845, + "endColumn": 119, + "endOffset": 115960 + } + } + }, + { + "to": { + "startLine": 1781, + "startColumn": 4, + "startOffset": 144216, + "endLine": 1784, + "endColumn": 12, + "endOffset": 144429 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 124, + "startColumn": 4, + "startOffset": 13510, + "endLine": 127, + "endColumn": 12, + "endOffset": 13723 + } + } + }, + { + "to": { + "startLine": 1785, + "startColumn": 4, + "startOffset": 144434, + "endLine": 1790, + "endColumn": 12, + "endOffset": 144827 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 128, + "startColumn": 4, + "startOffset": 13728, + "endLine": 133, + "endColumn": 12, + "endOffset": 14121 + } + } + }, + { + "to": { + "startLine": 1791, + "startColumn": 4, + "startOffset": 144832, + "endLine": 1794, + "endColumn": 12, + "endOffset": 145034 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 134, + "startColumn": 4, + "startOffset": 14126, + "endLine": 137, + "endColumn": 12, + "endOffset": 14328 + } + } + }, + { + "to": { + "startLine": 1795, + "startColumn": 4, + "startOffset": 145039, + "endLine": 1797, + "endColumn": 12, + "endOffset": 145193 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 138, + "startColumn": 4, + "startOffset": 14333, + "endLine": 140, + "endColumn": 12, + "endOffset": 14487 + } + } + }, + { + "to": { + "startLine": 1798, + "startColumn": 4, + "startOffset": 145198, + "endLine": 1806, + "endColumn": 12, + "endOffset": 145760 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 141, + "startColumn": 4, + "startOffset": 14492, + "endLine": 149, + "endColumn": 12, + "endOffset": 15054 + } + } + }, + { + "to": { + "startLine": 1807, + "startColumn": 4, + "startOffset": 145765, + "endLine": 1812, + "endColumn": 12, + "endOffset": 146121 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 150, + "startColumn": 4, + "startOffset": 15059, + "endLine": 155, + "endColumn": 12, + "endOffset": 15415 + } + } + }, + { + "to": { + "startLine": 1813, + "startColumn": 4, + "startOffset": 146126, + "endLine": 1815, + "endColumn": 12, + "endOffset": 146250 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 156, + "startColumn": 4, + "startOffset": 15420, + "endLine": 158, + "endColumn": 12, + "endOffset": 15544 + } + } + }, + { + "to": { + "startLine": 1816, + "startColumn": 4, + "startOffset": 146255, + "endLine": 1825, + "endColumn": 12, + "endOffset": 146994 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 159, + "startColumn": 4, + "startOffset": 15549, + "endLine": 168, + "endColumn": 12, + "endOffset": 16288 + } + } + }, + { + "to": { + "startLine": 1826, + "startColumn": 4, + "startOffset": 146999, + "endLine": 1829, + "endColumn": 12, + "endOffset": 147174 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 169, + "startColumn": 4, + "startOffset": 16293, + "endLine": 172, + "endColumn": 12, + "endOffset": 16468 + } + } + }, + { + "to": { + "startLine": 1830, + "startColumn": 4, + "startOffset": 147179, + "endLine": 1835, + "endColumn": 12, + "endOffset": 147615 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 173, + "startColumn": 4, + "startOffset": 16473, + "endLine": 178, + "endColumn": 12, + "endOffset": 16909 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/single/anim-v21.json b/android/build/intermediates/blame/res/androidTest/debug/single/anim-v21.json new file mode 100644 index 000000000..dee2f9d31 --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/single/anim-v21.json @@ -0,0 +1,10 @@ +[ + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/single/anim.json b/android/build/intermediates/blame/res/androidTest/debug/single/anim.json new file mode 100644 index 000000000..c1850d0a6 --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/single/anim.json @@ -0,0 +1,74 @@ +[ + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/anim/design_fab_out.xml", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/anim/design_fab_in.xml", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/anim/abc_fade_out.xml", + "source": "/Users/andrejunqueira/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/anim/abc_fade_in.xml", + "source": "/Users/andrejunqueira/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/anim/design_snackbar_out.xml", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/anim/design_snackbar_in.xml", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/anim/abc_popup_exit.xml", + "source": "/Users/andrejunqueira/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/anim/abc_popup_enter.xml", + "source": "/Users/andrejunqueira/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/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" + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/single/color-v11.json b/android/build/intermediates/blame/res/androidTest/debug/single/color-v11.json new file mode 100644 index 000000000..21b36918e --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/single/color-v11.json @@ -0,0 +1,10 @@ +[ + { + "merged": "/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", + "source": "/Users/andrejunqueira/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/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" + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/single/color-v23.json b/android/build/intermediates/blame/res/androidTest/debug/single/color-v23.json new file mode 100644 index 000000000..893f70662 --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/single/color-v23.json @@ -0,0 +1,6 @@ +[ + { + "merged": "/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", + "source": "/Users/andrejunqueira/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" + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/single/color.json b/android/build/intermediates/blame/res/androidTest/debug/single/color.json new file mode 100644 index 000000000..882decdec --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/single/color.json @@ -0,0 +1,38 @@ +[ + { + "merged": "/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", + "source": "/Users/andrejunqueira/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/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" + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/single/drawable-anydpi-v21.json b/android/build/intermediates/blame/res/androidTest/debug/single/drawable-anydpi-v21.json new file mode 100644 index 000000000..c73470fbd --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/single/drawable-anydpi-v21.json @@ -0,0 +1,82 @@ +[ + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-anydpi-v21/ic_settings.xml" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-anydpi-v21/ic_palette.xml" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-anydpi-v21/angle.xml", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-anydpi-v21/angle.xml" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-anydpi-v21/ic_monochrome.xml" + }, + { + "merged": "/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", + "source": "/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" + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/single/drawable-hdpi-v4.json b/android/build/intermediates/blame/res/androidTest/debug/single/drawable-hdpi-v4.json new file mode 100644 index 000000000..5bf3a770b --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/single/drawable-hdpi-v4.json @@ -0,0 +1,274 @@ +[ + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/angle.png", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-hdpi-v4/angle.png" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-hdpi-v4/ic_monochrome.png" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-hdpi-v4/ic_palette.png" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-hdpi-v4/ic_settings.png" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/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" + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/single/drawable-ldpi-v4.json b/android/build/intermediates/blame/res/androidTest/debug/single/drawable-ldpi-v4.json new file mode 100644 index 000000000..e3d461ebe --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/single/drawable-ldpi-v4.json @@ -0,0 +1,82 @@ +[ + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-ldpi-v4/angle.png", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-ldpi-v4/angle.png" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-ldpi-v4/ic_palette.png" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-ldpi-v4/ic_monochrome.png" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-ldpi-v4/ic_settings.png" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/single/drawable-ldrtl-hdpi-v17.json b/android/build/intermediates/blame/res/androidTest/debug/single/drawable-ldrtl-hdpi-v17.json new file mode 100644 index 000000000..5152a2765 --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/single/drawable-ldrtl-hdpi-v17.json @@ -0,0 +1,18 @@ +[ + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/single/drawable-ldrtl-mdpi-v17.json b/android/build/intermediates/blame/res/androidTest/debug/single/drawable-ldrtl-mdpi-v17.json new file mode 100644 index 000000000..2c7bdc1a1 --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/single/drawable-ldrtl-mdpi-v17.json @@ -0,0 +1,18 @@ +[ + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/single/drawable-ldrtl-xhdpi-v17.json b/android/build/intermediates/blame/res/androidTest/debug/single/drawable-ldrtl-xhdpi-v17.json new file mode 100644 index 000000000..26f26b43f --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/single/drawable-ldrtl-xhdpi-v17.json @@ -0,0 +1,18 @@ +[ + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/single/drawable-ldrtl-xxhdpi-v17.json b/android/build/intermediates/blame/res/androidTest/debug/single/drawable-ldrtl-xxhdpi-v17.json new file mode 100644 index 000000000..31a11ddad --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/single/drawable-ldrtl-xxhdpi-v17.json @@ -0,0 +1,18 @@ +[ + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/single/drawable-ldrtl-xxxhdpi-v17.json b/android/build/intermediates/blame/res/androidTest/debug/single/drawable-ldrtl-xxxhdpi-v17.json new file mode 100644 index 000000000..3b9a7b2bc --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/single/drawable-ldrtl-xxxhdpi-v17.json @@ -0,0 +1,18 @@ +[ + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/single/drawable-mdpi-v4.json b/android/build/intermediates/blame/res/androidTest/debug/single/drawable-mdpi-v4.json new file mode 100644 index 000000000..67f5fb70d --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/single/drawable-mdpi-v4.json @@ -0,0 +1,274 @@ +[ + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-mdpi-v4/ic_palette.png" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/angle.png", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-mdpi-v4/angle.png" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-mdpi-v4/ic_settings.png" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-mdpi-v4/ic_monochrome.png" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/single/drawable-v21.json b/android/build/intermediates/blame/res/androidTest/debug/single/drawable-v21.json new file mode 100644 index 000000000..ee15096a0 --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/single/drawable-v21.json @@ -0,0 +1,38 @@ +[ + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-v21/ic_menu_slideshow.xml" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-v21/ic_menu_send.xml" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-v21/ic_menu_manage.xml" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-v21/ic_menu_camera.xml" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-v21/ic_menu_gallery.xml" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-v21/ic_menu_share.xml" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/single/drawable-v23.json b/android/build/intermediates/blame/res/androidTest/debug/single/drawable-v23.json new file mode 100644 index 000000000..1c0611835 --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/single/drawable-v23.json @@ -0,0 +1,6 @@ +[ + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/single/drawable-v24.json b/android/build/intermediates/blame/res/androidTest/debug/single/drawable-v24.json new file mode 100644 index 000000000..a2eed9a22 --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/single/drawable-v24.json @@ -0,0 +1,6 @@ +[ + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-v24/ic_launcher_foreground.xml" + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/single/drawable-xhdpi-v4.json b/android/build/intermediates/blame/res/androidTest/debug/single/drawable-xhdpi-v4.json new file mode 100644 index 000000000..9766874f5 --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/single/drawable-xhdpi-v4.json @@ -0,0 +1,274 @@ +[ + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/angle.png", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/angle.png" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/ic_monochrome.png" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/ic_palette.png" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/ic_settings.png" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/single/drawable-xxhdpi-v4.json b/android/build/intermediates/blame/res/androidTest/debug/single/drawable-xxhdpi-v4.json new file mode 100644 index 000000000..1d72bb06a --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/single/drawable-xxhdpi-v4.json @@ -0,0 +1,274 @@ +[ + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/ic_palette.png" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/ic_settings.png" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/ic_monochrome.png" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4/angle.png", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/angle.png" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/single/drawable-xxxhdpi-v4.json b/android/build/intermediates/blame/res/androidTest/debug/single/drawable-xxxhdpi-v4.json new file mode 100644 index 000000000..b5f27d3bf --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/single/drawable-xxxhdpi-v4.json @@ -0,0 +1,186 @@ +[ + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xxxhdpi-v4/ic_settings.png" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4/angle.png", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xxxhdpi-v4/angle.png" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xxxhdpi-v4/ic_monochrome.png" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable-xxxhdpi-v4/ic_palette.png" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/single/drawable.json b/android/build/intermediates/blame/res/androidTest/debug/single/drawable.json new file mode 100644 index 000000000..81b5311e1 --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/single/drawable.json @@ -0,0 +1,126 @@ +[ + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable/design_fab_background.xml", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable/side_nav_bar.xml", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable/side_nav_bar.xml" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable/design_snackbar_background.xml", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable/button_background.xml", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable/button_background.xml" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/drawable/round_button.xml", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/drawable/round_button.xml" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/single/layout-sw600dp-v13.json b/android/build/intermediates/blame/res/androidTest/debug/single/layout-sw600dp-v13.json new file mode 100644 index 000000000..503fd8a0b --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/single/layout-sw600dp-v13.json @@ -0,0 +1,6 @@ +[ + { + "merged": "/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", + "source": "/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" + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/single/layout.json b/android/build/intermediates/blame/res/androidTest/debug/single/layout.json new file mode 100644 index 000000000..85f3ceb29 --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/single/layout.json @@ -0,0 +1,250 @@ +[ + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/layout/notification_template_lines.xml", + "source": "/Users/andrejunqueira/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/layout/activity_main.xml", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/layout/activity_main.xml" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/layout/about_view.xml", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/layout/about_view.xml" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/layout/design_navigation_menu.xml", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/layout/activity_settings.xml", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/layout/activity_settings.xml" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/layout/activity_fullscreen_view.xml", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/layout/activity_fullscreen_view.xml" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/layout/notification_media_action.xml", + "source": "/Users/andrejunqueira/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/layout/notification_template_media.xml", + "source": "/Users/andrejunqueira/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/layout/redbox_item_title.xml", + "source": "/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/layout/fps_view.xml", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/layout/abc_screen_simple.xml", + "source": "/Users/andrejunqueira/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/layout/activity_gallery.xml", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/layout/activity_gallery.xml" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/layout/redbox_item_frame.xml", + "source": "/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/layout/abc_screen_toolbar.xml", + "source": "/Users/andrejunqueira/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/layout/tageditor_view.xml", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/layout/tageditor_view.xml" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/layout/gallery_item.xml", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/layout/gallery_item.xml" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/layout/design_navigation_item.xml", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/layout/activity_open_note_scanner.xml" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/layout/layout_fullscreen_image.xml", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/layout/layout_fullscreen_image.xml" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/layout/abc_search_view.xml", + "source": "/Users/andrejunqueira/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/layout/redbox_view.xml", + "source": "/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/layout/design_layout_snackbar.xml", + "source": "/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" + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/single/menu.json b/android/build/intermediates/blame/res/androidTest/debug/single/menu.json new file mode 100644 index 000000000..2c3ee9606 --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/single/menu.json @@ -0,0 +1,10 @@ +[ + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/menu/menu_gallery.xml", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/menu/menu_gallery.xml" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/menu/menu_imagepager.xml", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/menu/menu_imagepager.xml" + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/single/mipmap-anydpi-v26.json b/android/build/intermediates/blame/res/androidTest/debug/single/mipmap-anydpi-v26.json new file mode 100644 index 000000000..5fb90a925 --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/single/mipmap-anydpi-v26.json @@ -0,0 +1,10 @@ +[ + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/mipmap-anydpi-v26/ic_launcher.xml" + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/single/mipmap-hdpi-v4.json b/android/build/intermediates/blame/res/androidTest/debug/single/mipmap-hdpi-v4.json new file mode 100644 index 000000000..e05b2face --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/single/mipmap-hdpi-v4.json @@ -0,0 +1,10 @@ +[ + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/mipmap-hdpi-v4/ic_launcher.png" + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/single/mipmap-mdpi-v4.json b/android/build/intermediates/blame/res/androidTest/debug/single/mipmap-mdpi-v4.json new file mode 100644 index 000000000..4407359f5 --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/single/mipmap-mdpi-v4.json @@ -0,0 +1,10 @@ +[ + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/mipmap-mdpi-v4/ic_launcher.png" + }, + { + "merged": "/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", + "source": "/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" + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/single/mipmap-xhdpi-v4.json b/android/build/intermediates/blame/res/androidTest/debug/single/mipmap-xhdpi-v4.json new file mode 100644 index 000000000..3fd03b214 --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/single/mipmap-xhdpi-v4.json @@ -0,0 +1,10 @@ +[ + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/mipmap-xhdpi-v4/ic_launcher.png" + }, + { + "merged": "/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", + "source": "/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" + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/single/mipmap-xxhdpi-v4.json b/android/build/intermediates/blame/res/androidTest/debug/single/mipmap-xxhdpi-v4.json new file mode 100644 index 000000000..a1c7edf6e --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/single/mipmap-xxhdpi-v4.json @@ -0,0 +1,10 @@ +[ + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/mipmap-xxhdpi-v4/ic_launcher.png" + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/single/mipmap-xxxhdpi-v4.json b/android/build/intermediates/blame/res/androidTest/debug/single/mipmap-xxxhdpi-v4.json new file mode 100644 index 000000000..05de3edec --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/single/mipmap-xxxhdpi-v4.json @@ -0,0 +1,10 @@ +[ + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/mipmap-xxxhdpi-v4/ic_launcher.png" + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/androidTest/debug/single/xml.json b/android/build/intermediates/blame/res/androidTest/debug/single/xml.json new file mode 100644 index 000000000..820183e8a --- /dev/null +++ b/android/build/intermediates/blame/res/androidTest/debug/single/xml.json @@ -0,0 +1,10 @@ +[ + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/xml/preferences.xml", + "source": "/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/androidTest/debug/xml/settings.xml", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/bundles/debug/res/xml/settings.xml" + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/multi/values-af.json b/android/build/intermediates/blame/res/debug/multi/values-af.json new file mode 100644 index 000000000..862babffa --- /dev/null +++ b/android/build/intermediates/blame/res/debug/multi/values-af.json @@ -0,0 +1,387 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-af/values-af.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 103, + "endOffset": 154 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-af/values-af.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 103, + "endOffset": 154 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 159, + "endColumn": 107, + "endOffset": 262 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-af/values-af.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 159, + "endColumn": 107, + "endOffset": 262 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 267, + "endColumn": 122, + "endOffset": 385 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-af/values-af.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 267, + "endColumn": 122, + "endOffset": 385 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 390, + "endColumn": 99, + "endOffset": 485 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-af/values-af.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 390, + "endColumn": 99, + "endOffset": 485 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 490, + "endColumn": 105, + "endOffset": 591 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-af/values-af.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 490, + "endColumn": 105, + "endOffset": 591 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 596, + "endColumn": 84, + "endOffset": 676 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-af/values-af.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 596, + "endColumn": 84, + "endOffset": 676 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 681, + "endColumn": 102, + "endOffset": 779 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-af/values-af.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 681, + "endColumn": 102, + "endOffset": 779 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 784, + "endColumn": 117, + "endOffset": 897 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-af/values-af.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 784, + "endColumn": 117, + "endOffset": 897 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 902, + "endColumn": 75, + "endOffset": 973 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-af/values-af.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 902, + "endColumn": 75, + "endOffset": 973 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 978, + "endColumn": 76, + "endOffset": 1050 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-af/values-af.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 978, + "endColumn": 76, + "endOffset": 1050 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1055, + "endColumn": 80, + "endOffset": 1131 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-af/values-af.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1055, + "endColumn": 80, + "endOffset": 1131 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1136, + "endColumn": 106, + "endOffset": 1238 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-af/values-af.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1136, + "endColumn": 106, + "endOffset": 1238 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1243, + "endColumn": 102, + "endOffset": 1341 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-af/values-af.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1243, + "endColumn": 102, + "endOffset": 1341 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1346, + "endColumn": 96, + "endOffset": 1438 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-af/values-af.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1346, + "endColumn": 96, + "endOffset": 1438 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1443, + "endColumn": 107, + "endOffset": 1546 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-af/values-af.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1443, + "endColumn": 107, + "endOffset": 1546 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1551, + "endColumn": 101, + "endOffset": 1648 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-af/values-af.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1551, + "endColumn": 101, + "endOffset": 1648 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1653, + "endColumn": 101, + "endOffset": 1750 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-af/values-af.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1653, + "endColumn": 101, + "endOffset": 1750 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1755, + "endColumn": 116, + "endOffset": 1867 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-af/values-af.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1755, + "endColumn": 116, + "endOffset": 1867 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1872, + "endColumn": 97, + "endOffset": 1965 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-af/values-af.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1872, + "endColumn": 97, + "endOffset": 1965 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1970, + "endColumn": 100, + "endOffset": 2066 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-af/values-af.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1970, + "endColumn": 100, + "endOffset": 2066 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/multi/values-am.json b/android/build/intermediates/blame/res/debug/multi/values-am.json new file mode 100644 index 000000000..d26cea745 --- /dev/null +++ b/android/build/intermediates/blame/res/debug/multi/values-am.json @@ -0,0 +1,387 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-am/values-am.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 101, + "endOffset": 152 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-am/values-am.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 101, + "endOffset": 152 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 157, + "endColumn": 107, + "endOffset": 260 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-am/values-am.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 157, + "endColumn": 107, + "endOffset": 260 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 265, + "endColumn": 122, + "endOffset": 383 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-am/values-am.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 265, + "endColumn": 122, + "endOffset": 383 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 388, + "endColumn": 98, + "endOffset": 482 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-am/values-am.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 388, + "endColumn": 98, + "endOffset": 482 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 487, + "endColumn": 105, + "endOffset": 588 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-am/values-am.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 487, + "endColumn": 105, + "endOffset": 588 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 593, + "endColumn": 85, + "endOffset": 674 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-am/values-am.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 593, + "endColumn": 85, + "endOffset": 674 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 679, + "endColumn": 102, + "endOffset": 777 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-am/values-am.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 679, + "endColumn": 102, + "endOffset": 777 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 782, + "endColumn": 112, + "endOffset": 890 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-am/values-am.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 782, + "endColumn": 112, + "endOffset": 890 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 895, + "endColumn": 77, + "endOffset": 968 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-am/values-am.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 895, + "endColumn": 77, + "endOffset": 968 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 973, + "endColumn": 77, + "endOffset": 1046 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-am/values-am.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 973, + "endColumn": 77, + "endOffset": 1046 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1051, + "endColumn": 78, + "endOffset": 1125 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-am/values-am.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1051, + "endColumn": 78, + "endOffset": 1125 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1130, + "endColumn": 99, + "endOffset": 1225 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-am/values-am.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1130, + "endColumn": 99, + "endOffset": 1225 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1230, + "endColumn": 99, + "endOffset": 1325 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-am/values-am.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1230, + "endColumn": 99, + "endOffset": 1325 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1330, + "endColumn": 95, + "endOffset": 1421 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-am/values-am.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1330, + "endColumn": 95, + "endOffset": 1421 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1426, + "endColumn": 102, + "endOffset": 1524 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-am/values-am.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1426, + "endColumn": 102, + "endOffset": 1524 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1529, + "endColumn": 98, + "endOffset": 1623 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-am/values-am.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1529, + "endColumn": 98, + "endOffset": 1623 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1628, + "endColumn": 106, + "endOffset": 1730 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-am/values-am.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1628, + "endColumn": 106, + "endOffset": 1730 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1735, + "endColumn": 115, + "endOffset": 1846 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-am/values-am.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1735, + "endColumn": 115, + "endOffset": 1846 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1851, + "endColumn": 95, + "endOffset": 1942 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-am/values-am.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1851, + "endColumn": 95, + "endOffset": 1942 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1947, + "endColumn": 100, + "endOffset": 2043 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-am/values-am.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1947, + "endColumn": 100, + "endOffset": 2043 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/multi/values-ar.json b/android/build/intermediates/blame/res/debug/multi/values-ar.json new file mode 100644 index 000000000..37e6ec1bb --- /dev/null +++ b/android/build/intermediates/blame/res/debug/multi/values-ar.json @@ -0,0 +1,387 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ar/values-ar.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 116, + "endOffset": 167 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ar/values-ar.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 116, + "endOffset": 167 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 172, + "endColumn": 107, + "endOffset": 275 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ar/values-ar.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 172, + "endColumn": 107, + "endOffset": 275 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 280, + "endColumn": 122, + "endOffset": 398 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ar/values-ar.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 280, + "endColumn": 122, + "endOffset": 398 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 403, + "endColumn": 103, + "endOffset": 502 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ar/values-ar.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 403, + "endColumn": 103, + "endOffset": 502 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 507, + "endColumn": 108, + "endOffset": 611 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ar/values-ar.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 507, + "endColumn": 108, + "endOffset": 611 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 616, + "endColumn": 81, + "endOffset": 693 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ar/values-ar.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 616, + "endColumn": 81, + "endOffset": 693 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 698, + "endColumn": 100, + "endOffset": 794 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ar/values-ar.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 698, + "endColumn": 100, + "endOffset": 794 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 799, + "endColumn": 113, + "endOffset": 908 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ar/values-ar.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 799, + "endColumn": 113, + "endOffset": 908 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 913, + "endColumn": 78, + "endOffset": 987 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ar/values-ar.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 913, + "endColumn": 78, + "endOffset": 987 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 992, + "endColumn": 78, + "endOffset": 1066 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ar/values-ar.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 992, + "endColumn": 78, + "endOffset": 1066 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1071, + "endColumn": 78, + "endOffset": 1145 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ar/values-ar.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1071, + "endColumn": 78, + "endOffset": 1145 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1150, + "endColumn": 104, + "endOffset": 1250 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ar/values-ar.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1150, + "endColumn": 104, + "endOffset": 1250 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1255, + "endColumn": 100, + "endOffset": 1351 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ar/values-ar.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1255, + "endColumn": 100, + "endOffset": 1351 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1356, + "endColumn": 95, + "endOffset": 1447 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ar/values-ar.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1356, + "endColumn": 95, + "endOffset": 1447 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1452, + "endColumn": 107, + "endOffset": 1555 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ar/values-ar.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1452, + "endColumn": 107, + "endOffset": 1555 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1560, + "endColumn": 102, + "endOffset": 1658 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ar/values-ar.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1560, + "endColumn": 102, + "endOffset": 1658 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1663, + "endColumn": 102, + "endOffset": 1761 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ar/values-ar.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1663, + "endColumn": 102, + "endOffset": 1761 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1766, + "endColumn": 118, + "endOffset": 1880 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ar/values-ar.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1766, + "endColumn": 118, + "endOffset": 1880 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1885, + "endColumn": 96, + "endOffset": 1977 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ar/values-ar.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1885, + "endColumn": 96, + "endOffset": 1977 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1982, + "endColumn": 100, + "endOffset": 2078 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ar/values-ar.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1982, + "endColumn": 100, + "endOffset": 2078 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/multi/values-az-rAZ.json b/android/build/intermediates/blame/res/debug/multi/values-az-rAZ.json new file mode 100644 index 000000000..b4be9361f --- /dev/null +++ b/android/build/intermediates/blame/res/debug/multi/values-az-rAZ.json @@ -0,0 +1,368 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-az-rAZ/values-az-rAZ.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 97, + "endOffset": 148 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-az-rAZ/values-az-rAZ.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 97, + "endOffset": 148 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 153, + "endColumn": 107, + "endOffset": 256 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-az-rAZ/values-az-rAZ.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 153, + "endColumn": 107, + "endOffset": 256 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 261, + "endColumn": 122, + "endOffset": 379 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-az-rAZ/values-az-rAZ.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 261, + "endColumn": 122, + "endOffset": 379 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 384, + "endColumn": 98, + "endOffset": 478 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-az-rAZ/values-az-rAZ.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 384, + "endColumn": 98, + "endOffset": 478 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 483, + "endColumn": 109, + "endOffset": 588 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-az-rAZ/values-az-rAZ.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 483, + "endColumn": 109, + "endOffset": 588 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 593, + "endColumn": 87, + "endOffset": 676 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-az-rAZ/values-az-rAZ.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 593, + "endColumn": 87, + "endOffset": 676 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 681, + "endColumn": 106, + "endOffset": 783 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-az-rAZ/values-az-rAZ.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 681, + "endColumn": 106, + "endOffset": 783 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 788, + "endColumn": 113, + "endOffset": 897 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-az-rAZ/values-az-rAZ.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 788, + "endColumn": 113, + "endOffset": 897 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 902, + "endColumn": 80, + "endOffset": 978 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-az-rAZ/values-az-rAZ.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 902, + "endColumn": 80, + "endOffset": 978 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 983, + "endColumn": 78, + "endOffset": 1057 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-az-rAZ/values-az-rAZ.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 983, + "endColumn": 78, + "endOffset": 1057 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1062, + "endColumn": 84, + "endOffset": 1142 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-az-rAZ/values-az-rAZ.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1062, + "endColumn": 84, + "endOffset": 1142 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1147, + "endColumn": 106, + "endOffset": 1249 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-az-rAZ/values-az-rAZ.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1147, + "endColumn": 106, + "endOffset": 1249 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1254, + "endColumn": 106, + "endOffset": 1356 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-az-rAZ/values-az-rAZ.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1254, + "endColumn": 106, + "endOffset": 1356 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1361, + "endColumn": 99, + "endOffset": 1456 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-az-rAZ/values-az-rAZ.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1361, + "endColumn": 99, + "endOffset": 1456 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1461, + "endColumn": 108, + "endOffset": 1565 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-az-rAZ/values-az-rAZ.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1461, + "endColumn": 108, + "endOffset": 1565 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1570, + "endColumn": 103, + "endOffset": 1669 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-az-rAZ/values-az-rAZ.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1570, + "endColumn": 103, + "endOffset": 1669 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1674, + "endColumn": 109, + "endOffset": 1779 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-az-rAZ/values-az-rAZ.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1674, + "endColumn": 109, + "endOffset": 1779 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1784, + "endColumn": 96, + "endOffset": 1876 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-az-rAZ/values-az-rAZ.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1784, + "endColumn": 96, + "endOffset": 1876 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1881, + "endColumn": 100, + "endOffset": 1977 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-az-rAZ/values-az-rAZ.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1881, + "endColumn": 100, + "endOffset": 1977 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/multi/values-bg.json b/android/build/intermediates/blame/res/debug/multi/values-bg.json new file mode 100644 index 000000000..512b519a0 --- /dev/null +++ b/android/build/intermediates/blame/res/debug/multi/values-bg.json @@ -0,0 +1,387 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-bg/values-bg.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 114, + "endOffset": 165 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-bg/values-bg.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 114, + "endOffset": 165 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 110, + "endOffset": 276 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-bg/values-bg.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 110, + "endOffset": 276 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 281, + "endColumn": 127, + "endOffset": 404 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-bg/values-bg.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 281, + "endColumn": 127, + "endOffset": 404 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 409, + "endColumn": 106, + "endOffset": 511 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-bg/values-bg.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 409, + "endColumn": 106, + "endOffset": 511 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 516, + "endColumn": 104, + "endOffset": 616 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-bg/values-bg.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 516, + "endColumn": 104, + "endOffset": 616 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 621, + "endColumn": 85, + "endOffset": 702 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-bg/values-bg.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 621, + "endColumn": 85, + "endOffset": 702 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 707, + "endColumn": 104, + "endOffset": 807 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-bg/values-bg.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 707, + "endColumn": 104, + "endOffset": 807 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 812, + "endColumn": 120, + "endOffset": 928 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-bg/values-bg.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 812, + "endColumn": 120, + "endOffset": 928 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 933, + "endColumn": 78, + "endOffset": 1007 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-bg/values-bg.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 933, + "endColumn": 78, + "endOffset": 1007 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1012, + "endColumn": 77, + "endOffset": 1085 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-bg/values-bg.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1012, + "endColumn": 77, + "endOffset": 1085 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1090, + "endColumn": 82, + "endOffset": 1168 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-bg/values-bg.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1090, + "endColumn": 82, + "endOffset": 1168 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1173, + "endColumn": 113, + "endOffset": 1282 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-bg/values-bg.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1173, + "endColumn": 113, + "endOffset": 1282 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1287, + "endColumn": 108, + "endOffset": 1391 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-bg/values-bg.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1287, + "endColumn": 108, + "endOffset": 1391 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1396, + "endColumn": 99, + "endOffset": 1491 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-bg/values-bg.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1396, + "endColumn": 99, + "endOffset": 1491 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1496, + "endColumn": 113, + "endOffset": 1605 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-bg/values-bg.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1496, + "endColumn": 113, + "endOffset": 1605 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1610, + "endColumn": 105, + "endOffset": 1711 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-bg/values-bg.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1610, + "endColumn": 105, + "endOffset": 1711 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1716, + "endColumn": 107, + "endOffset": 1819 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-bg/values-bg.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1716, + "endColumn": 107, + "endOffset": 1819 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1824, + "endColumn": 122, + "endOffset": 1942 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-bg/values-bg.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1824, + "endColumn": 122, + "endOffset": 1942 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1947, + "endColumn": 98, + "endOffset": 2041 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-bg/values-bg.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1947, + "endColumn": 98, + "endOffset": 2041 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2046, + "endColumn": 100, + "endOffset": 2142 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-bg/values-bg.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2046, + "endColumn": 100, + "endOffset": 2142 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/multi/values-bn-rBD.json b/android/build/intermediates/blame/res/debug/multi/values-bn-rBD.json new file mode 100644 index 000000000..a27d77ead --- /dev/null +++ b/android/build/intermediates/blame/res/debug/multi/values-bn-rBD.json @@ -0,0 +1,387 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-bn-rBD/values-bn-rBD.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 108, + "endOffset": 159 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-bn-rBD/values-bn-rBD.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 108, + "endOffset": 159 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 164, + "endColumn": 107, + "endOffset": 267 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-bn-rBD/values-bn-rBD.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 164, + "endColumn": 107, + "endOffset": 267 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 272, + "endColumn": 122, + "endOffset": 390 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-bn-rBD/values-bn-rBD.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 272, + "endColumn": 122, + "endOffset": 390 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 395, + "endColumn": 111, + "endOffset": 502 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-bn-rBD/values-bn-rBD.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 395, + "endColumn": 111, + "endOffset": 502 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 507, + "endColumn": 105, + "endOffset": 608 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-bn-rBD/values-bn-rBD.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 507, + "endColumn": 105, + "endOffset": 608 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 613, + "endColumn": 93, + "endOffset": 702 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-bn-rBD/values-bn-rBD.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 613, + "endColumn": 93, + "endOffset": 702 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 707, + "endColumn": 104, + "endOffset": 807 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-bn-rBD/values-bn-rBD.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 707, + "endColumn": 104, + "endOffset": 807 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 812, + "endColumn": 129, + "endOffset": 937 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-bn-rBD/values-bn-rBD.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 812, + "endColumn": 129, + "endOffset": 937 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 942, + "endColumn": 77, + "endOffset": 1015 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-bn-rBD/values-bn-rBD.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 942, + "endColumn": 77, + "endOffset": 1015 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1020, + "endColumn": 77, + "endOffset": 1093 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-bn-rBD/values-bn-rBD.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1020, + "endColumn": 77, + "endOffset": 1093 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1098, + "endColumn": 86, + "endOffset": 1180 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-bn-rBD/values-bn-rBD.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1098, + "endColumn": 86, + "endOffset": 1180 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1185, + "endColumn": 109, + "endOffset": 1290 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-bn-rBD/values-bn-rBD.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1185, + "endColumn": 109, + "endOffset": 1290 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1295, + "endColumn": 115, + "endOffset": 1406 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-bn-rBD/values-bn-rBD.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1295, + "endColumn": 115, + "endOffset": 1406 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1411, + "endColumn": 106, + "endOffset": 1513 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-bn-rBD/values-bn-rBD.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1411, + "endColumn": 106, + "endOffset": 1513 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1518, + "endColumn": 109, + "endOffset": 1623 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-bn-rBD/values-bn-rBD.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1518, + "endColumn": 109, + "endOffset": 1623 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1628, + "endColumn": 105, + "endOffset": 1729 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-bn-rBD/values-bn-rBD.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1628, + "endColumn": 105, + "endOffset": 1729 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1734, + "endColumn": 109, + "endOffset": 1839 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-bn-rBD/values-bn-rBD.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1734, + "endColumn": 109, + "endOffset": 1839 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1844, + "endColumn": 124, + "endOffset": 1964 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-bn-rBD/values-bn-rBD.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1844, + "endColumn": 124, + "endOffset": 1964 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1969, + "endColumn": 104, + "endOffset": 2069 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-bn-rBD/values-bn-rBD.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1969, + "endColumn": 104, + "endOffset": 2069 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2074, + "endColumn": 100, + "endOffset": 2170 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-bn-rBD/values-bn-rBD.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2074, + "endColumn": 100, + "endOffset": 2170 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/multi/values-ca.json b/android/build/intermediates/blame/res/debug/multi/values-ca.json new file mode 100644 index 000000000..020684c0f --- /dev/null +++ b/android/build/intermediates/blame/res/debug/multi/values-ca.json @@ -0,0 +1,387 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ca/values-ca.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 117, + "endOffset": 168 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ca/values-ca.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 117, + "endOffset": 168 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 173, + "endColumn": 107, + "endOffset": 276 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ca/values-ca.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 173, + "endColumn": 107, + "endOffset": 276 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 281, + "endColumn": 122, + "endOffset": 399 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ca/values-ca.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 281, + "endColumn": 122, + "endOffset": 399 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 404, + "endColumn": 105, + "endOffset": 505 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ca/values-ca.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 404, + "endColumn": 105, + "endOffset": 505 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 510, + "endColumn": 106, + "endOffset": 612 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ca/values-ca.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 510, + "endColumn": 106, + "endOffset": 612 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 617, + "endColumn": 82, + "endOffset": 695 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ca/values-ca.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 617, + "endColumn": 82, + "endOffset": 695 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 700, + "endColumn": 107, + "endOffset": 803 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ca/values-ca.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 700, + "endColumn": 107, + "endOffset": 803 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 808, + "endColumn": 125, + "endOffset": 929 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ca/values-ca.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 808, + "endColumn": 125, + "endOffset": 929 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 934, + "endColumn": 83, + "endOffset": 1013 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ca/values-ca.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 934, + "endColumn": 83, + "endOffset": 1013 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1018, + "endColumn": 80, + "endOffset": 1094 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ca/values-ca.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1018, + "endColumn": 80, + "endOffset": 1094 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1099, + "endColumn": 82, + "endOffset": 1177 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ca/values-ca.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1099, + "endColumn": 82, + "endOffset": 1177 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1182, + "endColumn": 110, + "endOffset": 1288 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ca/values-ca.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1182, + "endColumn": 110, + "endOffset": 1288 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1293, + "endColumn": 108, + "endOffset": 1397 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ca/values-ca.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1293, + "endColumn": 108, + "endOffset": 1397 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1402, + "endColumn": 97, + "endOffset": 1495 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ca/values-ca.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1402, + "endColumn": 97, + "endOffset": 1495 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1500, + "endColumn": 109, + "endOffset": 1605 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ca/values-ca.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1500, + "endColumn": 109, + "endOffset": 1605 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1610, + "endColumn": 103, + "endOffset": 1709 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ca/values-ca.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1610, + "endColumn": 103, + "endOffset": 1709 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1714, + "endColumn": 107, + "endOffset": 1817 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ca/values-ca.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1714, + "endColumn": 107, + "endOffset": 1817 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1822, + "endColumn": 122, + "endOffset": 1940 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ca/values-ca.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1822, + "endColumn": 122, + "endOffset": 1940 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1945, + "endColumn": 98, + "endOffset": 2039 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ca/values-ca.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1945, + "endColumn": 98, + "endOffset": 2039 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2044, + "endColumn": 100, + "endOffset": 2140 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ca/values-ca.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2044, + "endColumn": 100, + "endOffset": 2140 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/multi/values-cs.json b/android/build/intermediates/blame/res/debug/multi/values-cs.json new file mode 100644 index 000000000..9ea199e26 --- /dev/null +++ b/android/build/intermediates/blame/res/debug/multi/values-cs.json @@ -0,0 +1,1717 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-cs/values-cs.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 106, + "endOffset": 157 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-cs/values-cs.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 106, + "endOffset": 157 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 162, + "endColumn": 108, + "endOffset": 266 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-cs/values-cs.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 162, + "endColumn": 108, + "endOffset": 266 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 271, + "endColumn": 123, + "endOffset": 390 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-cs/values-cs.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 271, + "endColumn": 123, + "endOffset": 390 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 395, + "endColumn": 101, + "endOffset": 492 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-cs/values-cs.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 395, + "endColumn": 101, + "endOffset": 492 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 497, + "endColumn": 108, + "endOffset": 601 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-cs/values-cs.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 497, + "endColumn": 108, + "endOffset": 601 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 606, + "endColumn": 85, + "endOffset": 687 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-cs/values-cs.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 606, + "endColumn": 85, + "endOffset": 687 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 692, + "endColumn": 104, + "endOffset": 792 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-cs/values-cs.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 692, + "endColumn": 104, + "endOffset": 792 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 797, + "endColumn": 116, + "endOffset": 909 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-cs/values-cs.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 797, + "endColumn": 116, + "endOffset": 909 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 914, + "endColumn": 80, + "endOffset": 990 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-cs/values-cs.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 914, + "endColumn": 80, + "endOffset": 990 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 995, + "endColumn": 80, + "endOffset": 1071 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-cs/values-cs.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 995, + "endColumn": 80, + "endOffset": 1071 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1076, + "endColumn": 83, + "endOffset": 1155 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-cs/values-cs.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1076, + "endColumn": 83, + "endOffset": 1155 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1160, + "endColumn": 103, + "endOffset": 1259 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-cs/values-cs.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1160, + "endColumn": 103, + "endOffset": 1259 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1264, + "endColumn": 108, + "endOffset": 1368 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-cs/values-cs.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1264, + "endColumn": 108, + "endOffset": 1368 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1373, + "endColumn": 98, + "endOffset": 1467 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-cs/values-cs.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1373, + "endColumn": 98, + "endOffset": 1467 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1472, + "endColumn": 105, + "endOffset": 1573 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-cs/values-cs.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1472, + "endColumn": 105, + "endOffset": 1573 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1578, + "endColumn": 109, + "endOffset": 1683 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-cs/values-cs.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1578, + "endColumn": 109, + "endOffset": 1683 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1688, + "endColumn": 106, + "endOffset": 1790 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-cs/values-cs.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1688, + "endColumn": 106, + "endOffset": 1790 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1795, + "endColumn": 121, + "endOffset": 1912 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-cs/values-cs.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1795, + "endColumn": 121, + "endOffset": 1912 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1917, + "endColumn": 97, + "endOffset": 2010 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-cs/values-cs.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1917, + "endColumn": 97, + "endOffset": 2010 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2015, + "endColumn": 54, + "endOffset": 2065 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-cs/strings.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 799, + "endColumn": 54, + "endOffset": 849 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2070, + "endColumn": 51, + "endOffset": 2117 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-cs/strings.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 747, + "endColumn": 51, + "endOffset": 794 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2122, + "endColumn": 48, + "endOffset": 2166 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-cs/strings.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 327, + "endColumn": 48, + "endOffset": 371 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2171, + "endColumn": 47, + "endOffset": 2214 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-cs/strings.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 279, + "endColumn": 47, + "endOffset": 322 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2219, + "endColumn": 45, + "endOffset": 2260 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-cs/strings.xml", + "position": { + "startLine": 62, + "startColumn": 4, + "startOffset": 4696, + "endColumn": 45, + "endOffset": 4737 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2265, + "endColumn": 60, + "endOffset": 2321 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-cs/strings.xml", + "position": { + "startLine": 49, + "startColumn": 4, + "startOffset": 3540, + "endColumn": 60, + "endOffset": 3596 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 2326, + "endColumn": 48, + "endOffset": 2370 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-cs/strings.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1019, + "endColumn": 48, + "endOffset": 1063 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 2375, + "endColumn": 48, + "endOffset": 2419 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-cs/strings.xml", + "position": { + "startLine": 45, + "startColumn": 4, + "startOffset": 3231, + "endColumn": 48, + "endOffset": 3275 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 2424, + "endColumn": 40, + "endOffset": 2460 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-cs/strings.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 551, + "endColumn": 40, + "endOffset": 587 + } + } + }, + { + "to": { + "startLine": 30, + "startColumn": 4, + "startOffset": 2465, + "endColumn": 42, + "endOffset": 2503 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-cs/strings.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 508, + "endColumn": 42, + "endOffset": 546 + } + } + }, + { + "to": { + "startLine": 31, + "startColumn": 4, + "startOffset": 2508, + "endColumn": 54, + "endOffset": 2558 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-cs/strings.xml", + "position": { + "startLine": 1, + "startColumn": 4, + "startOffset": 16, + "endColumn": 54, + "endOffset": 66 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 2563, + "endColumn": 150, + "endOffset": 2709 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-cs/strings.xml", + "position": { + "startLine": 46, + "startColumn": 4, + "startOffset": 3280, + "endColumn": 150, + "endOffset": 3426 + } + } + }, + { + "to": { + "startLine": 33, + "startColumn": 4, + "startOffset": 2714, + "endColumn": 48, + "endOffset": 2758 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-cs/strings.xml", + "position": { + "startLine": 25, + "startColumn": 4, + "startOffset": 1396, + "endColumn": 48, + "endOffset": 1440 + } + } + }, + { + "to": { + "startLine": 34, + "startColumn": 4, + "startOffset": 2763, + "endColumn": 65, + "endOffset": 2824 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-cs/strings.xml", + "position": { + "startLine": 33, + "startColumn": 4, + "startOffset": 1964, + "endColumn": 65, + "endOffset": 2025 + } + } + }, + { + "to": { + "startLine": 35, + "startColumn": 4, + "startOffset": 2829, + "endColumn": 163, + "endOffset": 2988 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-cs/strings.xml", + "position": { + "startLine": 34, + "startColumn": 4, + "startOffset": 2030, + "endColumn": 163, + "endOffset": 2189 + } + } + }, + { + "to": { + "startLine": 36, + "startColumn": 4, + "startOffset": 2993, + "endColumn": 61, + "endOffset": 3050 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-cs/strings.xml", + "position": { + "startLine": 32, + "startColumn": 4, + "startOffset": 1902, + "endColumn": 61, + "endOffset": 1959 + } + } + }, + { + "to": { + "startLine": 37, + "startColumn": 4, + "startOffset": 3055, + "endColumn": 77, + "endOffset": 3128 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-cs/strings.xml", + "position": { + "startLine": 58, + "startColumn": 4, + "startOffset": 4399, + "endColumn": 77, + "endOffset": 4472 + } + } + }, + { + "to": { + "startLine": 38, + "startColumn": 4, + "startOffset": 3133, + "endColumn": 58, + "endOffset": 3187 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-cs/strings.xml", + "position": { + "startLine": 37, + "startColumn": 4, + "startOffset": 2472, + "endColumn": 58, + "endOffset": 2526 + } + } + }, + { + "to": { + "startLine": 39, + "startColumn": 4, + "startOffset": 3192, + "endColumn": 143, + "endOffset": 3331 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-cs/strings.xml", + "position": { + "startLine": 38, + "startColumn": 4, + "startOffset": 2531, + "endColumn": 143, + "endOffset": 2670 + } + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 3336, + "endColumn": 44, + "endOffset": 3376 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-cs/strings.xml", + "position": { + "startLine": 24, + "startColumn": 4, + "startOffset": 1339, + "endColumn": 56, + "endOffset": 1391 + } + } + }, + { + "to": { + "startLine": 41, + "startColumn": 4, + "startOffset": 3381, + "endColumn": 53, + "endOffset": 3430 + }, + "from": { + "file": "/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/values-cs/values-cs.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 53, + "endOffset": 104 + } + } + }, + { + "to": { + "startLine": 42, + "startColumn": 4, + "startOffset": 3435, + "endColumn": 71, + "endOffset": 3502 + }, + "from": { + "file": "/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/values-cs/values-cs.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 109, + "endColumn": 71, + "endOffset": 176 + } + } + }, + { + "to": { + "startLine": 43, + "startColumn": 4, + "startOffset": 3507, + "endColumn": 78, + "endOffset": 3581 + }, + "from": { + "file": "/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/values-cs/values-cs.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 181, + "endColumn": 78, + "endOffset": 255 + } + } + }, + { + "to": { + "startLine": 44, + "startColumn": 4, + "startOffset": 3586, + "endColumn": 70, + "endOffset": 3652 + }, + "from": { + "file": "/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/values-cs/values-cs.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 260, + "endColumn": 70, + "endOffset": 326 + } + } + }, + { + "to": { + "startLine": 45, + "startColumn": 4, + "startOffset": 3657, + "endColumn": 67, + "endOffset": 3720 + }, + "from": { + "file": "/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/values-cs/values-cs.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 331, + "endColumn": 67, + "endOffset": 394 + } + } + }, + { + "to": { + "startLine": 46, + "startColumn": 4, + "startOffset": 3725, + "endColumn": 55, + "endOffset": 3776 + }, + "from": { + "file": "/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/values-cs/values-cs.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 399, + "endColumn": 55, + "endOffset": 450 + } + } + }, + { + "to": { + "startLine": 47, + "startColumn": 4, + "startOffset": 3781, + "endColumn": 58, + "endOffset": 3835 + }, + "from": { + "file": "/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/values-cs/values-cs.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 455, + "endColumn": 58, + "endOffset": 509 + } + } + }, + { + "to": { + "startLine": 48, + "startColumn": 4, + "startOffset": 3840, + "endColumn": 73, + "endOffset": 3909 + }, + "from": { + "file": "/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/values-cs/values-cs.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 514, + "endColumn": 73, + "endOffset": 583 + } + } + }, + { + "to": { + "startLine": 49, + "startColumn": 4, + "startOffset": 3914, + "endColumn": 45, + "endOffset": 3955 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-cs/strings.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 1293, + "endColumn": 45, + "endOffset": 1334 + } + } + }, + { + "to": { + "startLine": 50, + "startColumn": 4, + "startOffset": 3960, + "endColumn": 91, + "endOffset": 4047 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-cs/strings.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 592, + "endColumn": 91, + "endOffset": 679 + } + } + }, + { + "to": { + "startLine": 51, + "startColumn": 4, + "startOffset": 4052, + "endColumn": 80, + "endOffset": 4128 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-cs/strings.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 427, + "endColumn": 80, + "endOffset": 503 + } + } + }, + { + "to": { + "startLine": 52, + "startColumn": 4, + "startOffset": 4133, + "endColumn": 95, + "endOffset": 4224 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-cs/strings.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 923, + "endColumn": 95, + "endOffset": 1014 + } + } + }, + { + "to": { + "startLine": 53, + "startColumn": 4, + "startOffset": 4229, + "endColumn": 50, + "endOffset": 4275 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-cs/strings.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 376, + "endColumn": 50, + "endOffset": 422 + } + } + }, + { + "to": { + "startLine": 54, + "startColumn": 4, + "startOffset": 4280, + "endColumn": 46, + "endOffset": 4322 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-cs/strings.xml", + "position": { + "startLine": 53, + "startColumn": 4, + "startOffset": 4024, + "endColumn": 46, + "endOffset": 4066 + } + } + }, + { + "to": { + "startLine": 55, + "startColumn": 4, + "startOffset": 4327, + "endColumn": 119, + "endOffset": 4442 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-cs/strings.xml", + "position": { + "startLine": 54, + "startColumn": 4, + "startOffset": 4071, + "endColumn": 119, + "endOffset": 4186 + } + } + }, + { + "to": { + "startLine": 56, + "startColumn": 4, + "startOffset": 4447, + "endColumn": 49, + "endOffset": 4492 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-cs/strings.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1068, + "endColumn": 49, + "endOffset": 1113 + } + } + }, + { + "to": { + "startLine": 57, + "startColumn": 4, + "startOffset": 4497, + "endColumn": 71, + "endOffset": 4564 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-cs/strings.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1118, + "endColumn": 71, + "endOffset": 1185 + } + } + }, + { + "to": { + "startLine": 58, + "startColumn": 4, + "startOffset": 4569, + "endColumn": 79, + "endOffset": 4644 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-cs/strings.xml", + "position": { + "startLine": 57, + "startColumn": 4, + "startOffset": 4319, + "endColumn": 79, + "endOffset": 4394 + } + } + }, + { + "to": { + "startLine": 59, + "startColumn": 4, + "startOffset": 4649, + "endColumn": 68, + "endOffset": 4713 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-cs/strings.xml", + "position": { + "startLine": 61, + "startColumn": 4, + "startOffset": 4627, + "endColumn": 68, + "endOffset": 4691 + } + } + }, + { + "to": { + "startLine": 60, + "startColumn": 4, + "startOffset": 4718, + "endColumn": 67, + "endOffset": 4781 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-cs/strings.xml", + "position": { + "startLine": 60, + "startColumn": 4, + "startOffset": 4559, + "endColumn": 67, + "endOffset": 4622 + } + } + }, + { + "to": { + "startLine": 61, + "startColumn": 4, + "startOffset": 4786, + "endColumn": 60, + "endOffset": 4842 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-cs/strings.xml", + "position": { + "startLine": 51, + "startColumn": 4, + "startOffset": 3765, + "endColumn": 60, + "endOffset": 3821 + } + } + }, + { + "to": { + "startLine": 62, + "startColumn": 4, + "startOffset": 4847, + "endColumn": 197, + "endOffset": 5040 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-cs/strings.xml", + "position": { + "startLine": 52, + "startColumn": 4, + "startOffset": 3826, + "endColumn": 197, + "endOffset": 4019 + } + } + }, + { + "to": { + "startLine": 63, + "startColumn": 4, + "startOffset": 5045, + "endColumn": 57, + "endOffset": 5098 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-cs/strings.xml", + "position": { + "startLine": 48, + "startColumn": 4, + "startOffset": 3482, + "endColumn": 57, + "endOffset": 3535 + } + } + }, + { + "to": { + "startLine": 64, + "startColumn": 4, + "startOffset": 5103, + "endColumn": 50, + "endOffset": 5149 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-cs/strings.xml", + "position": { + "startLine": 47, + "startColumn": 4, + "startOffset": 3431, + "endColumn": 50, + "endOffset": 3477 + } + } + }, + { + "to": { + "startLine": 65, + "startColumn": 4, + "startOffset": 5154, + "endColumn": 61, + "endOffset": 5211 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-cs/strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 217, + "endColumn": 61, + "endOffset": 274 + } + } + }, + { + "to": { + "startLine": 66, + "startColumn": 4, + "startOffset": 5216, + "endColumn": 68, + "endOffset": 5280 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-cs/strings.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 854, + "endColumn": 68, + "endOffset": 918 + } + } + }, + { + "to": { + "startLine": 67, + "startColumn": 4, + "startOffset": 5285, + "endColumn": 47, + "endOffset": 5328 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-cs/strings.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 1445, + "endColumn": 47, + "endOffset": 1488 + } + } + }, + { + "to": { + "startLine": 68, + "startColumn": 4, + "startOffset": 5333, + "endColumn": 68, + "endOffset": 5397 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-cs/strings.xml", + "position": { + "startLine": 35, + "startColumn": 4, + "startOffset": 2194, + "endColumn": 68, + "endOffset": 2258 + } + } + }, + { + "to": { + "startLine": 69, + "startColumn": 4, + "startOffset": 5402, + "endColumn": 208, + "endOffset": 5606 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-cs/strings.xml", + "position": { + "startLine": 36, + "startColumn": 4, + "startOffset": 2263, + "endColumn": 208, + "endOffset": 2467 + } + } + }, + { + "to": { + "startLine": 70, + "startColumn": 4, + "startOffset": 5611, + "endColumn": 163, + "endOffset": 5770 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-cs/strings.xml", + "position": { + "startLine": 50, + "startColumn": 4, + "startOffset": 3601, + "endColumn": 163, + "endOffset": 3760 + } + } + }, + { + "to": { + "startLine": 71, + "startColumn": 4, + "startOffset": 5775, + "endColumn": 81, + "endOffset": 5852 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-cs/strings.xml", + "position": { + "startLine": 59, + "startColumn": 4, + "startOffset": 4477, + "endColumn": 81, + "endOffset": 4554 + } + } + }, + { + "to": { + "startLine": 72, + "startColumn": 4, + "startOffset": 5857, + "endColumn": 102, + "endOffset": 5955 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-cs/strings.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 1190, + "endColumn": 102, + "endOffset": 1288 + } + } + }, + { + "to": { + "startLine": 73, + "startColumn": 4, + "startOffset": 5960, + "endColumn": 54, + "endOffset": 6010 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-cs/strings.xml", + "position": { + "startLine": 41, + "startColumn": 4, + "startOffset": 2852, + "endColumn": 54, + "endOffset": 2902 + } + } + }, + { + "to": { + "startLine": 74, + "startColumn": 4, + "startOffset": 6015, + "endColumn": 72, + "endOffset": 6083 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-cs/strings.xml", + "position": { + "startLine": 42, + "startColumn": 4, + "startOffset": 2907, + "endColumn": 72, + "endOffset": 2975 + } + } + }, + { + "to": { + "startLine": 75, + "startColumn": 4, + "startOffset": 6088, + "endColumn": 46, + "endOffset": 6130 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-cs/strings.xml", + "position": { + "startLine": 31, + "startColumn": 4, + "startOffset": 1855, + "endColumn": 46, + "endOffset": 1897 + } + } + }, + { + "to": { + "startLine": 76, + "startColumn": 4, + "startOffset": 6135, + "endColumn": 53, + "endOffset": 6184 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-cs/strings.xml", + "position": { + "startLine": 27, + "startColumn": 4, + "startOffset": 1493, + "endColumn": 53, + "endOffset": 1542 + } + } + }, + { + "to": { + "startLine": 77, + "startColumn": 4, + "startOffset": 6189, + "endColumn": 148, + "endOffset": 6333 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-cs/strings.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 1609, + "endColumn": 148, + "endOffset": 1753 + } + } + }, + { + "to": { + "startLine": 78, + "startColumn": 4, + "startOffset": 6338, + "endColumn": 96, + "endOffset": 6430 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-cs/strings.xml", + "position": { + "startLine": 30, + "startColumn": 4, + "startOffset": 1758, + "endColumn": 96, + "endOffset": 1850 + } + } + }, + { + "to": { + "startLine": 79, + "startColumn": 4, + "startOffset": 6435, + "endColumn": 61, + "endOffset": 6492 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-cs/strings.xml", + "position": { + "startLine": 28, + "startColumn": 4, + "startOffset": 1547, + "endColumn": 61, + "endOffset": 1604 + } + } + }, + { + "to": { + "startLine": 80, + "startColumn": 4, + "startOffset": 6497, + "endColumn": 62, + "endOffset": 6555 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-cs/strings.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 684, + "endColumn": 62, + "endOffset": 742 + } + } + }, + { + "to": { + "startLine": 81, + "startColumn": 4, + "startOffset": 6560, + "endColumn": 183, + "endOffset": 6739 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-cs/strings.xml", + "position": { + "startLine": 44, + "startColumn": 4, + "startOffset": 3047, + "endColumn": 183, + "endOffset": 3226 + } + } + }, + { + "to": { + "startLine": 82, + "startColumn": 4, + "startOffset": 6744, + "endColumn": 66, + "endOffset": 6806 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-cs/strings.xml", + "position": { + "startLine": 43, + "startColumn": 4, + "startOffset": 2980, + "endColumn": 66, + "endOffset": 3042 + } + } + }, + { + "to": { + "startLine": 83, + "startColumn": 4, + "startOffset": 6811, + "endColumn": 100, + "endOffset": 6907 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-cs/values-cs.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2015, + "endColumn": 100, + "endOffset": 2111 + } + } + }, + { + "to": { + "startLine": 84, + "startColumn": 4, + "startOffset": 6912, + "endColumn": 58, + "endOffset": 6966 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-cs/strings.xml", + "position": { + "startLine": 63, + "startColumn": 4, + "startOffset": 4742, + "endColumn": 58, + "endOffset": 4796 + } + } + }, + { + "to": { + "startLine": 85, + "startColumn": 4, + "startOffset": 6971, + "endColumn": 96, + "endOffset": 7063 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-cs/strings.xml", + "position": { + "startLine": 64, + "startColumn": 4, + "startOffset": 4801, + "endColumn": 96, + "endOffset": 4893 + } + } + }, + { + "to": { + "startLine": 86, + "startColumn": 4, + "startOffset": 7068, + "endColumn": 53, + "endOffset": 7117 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-cs/strings.xml", + "position": { + "startLine": 55, + "startColumn": 4, + "startOffset": 4191, + "endColumn": 53, + "endOffset": 4240 + } + } + }, + { + "to": { + "startLine": 87, + "startColumn": 4, + "startOffset": 7122, + "endColumn": 73, + "endOffset": 7191 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-cs/strings.xml", + "position": { + "startLine": 56, + "startColumn": 4, + "startOffset": 4245, + "endColumn": 73, + "endOffset": 4314 + } + } + }, + { + "to": { + "startLine": 88, + "startColumn": 4, + "startOffset": 7196, + "endColumn": 84, + "endOffset": 7276 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-cs/strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 132, + "endColumn": 84, + "endOffset": 212 + } + } + }, + { + "to": { + "startLine": 89, + "startColumn": 4, + "startOffset": 7281, + "endColumn": 58, + "endOffset": 7335 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-cs/strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 72, + "endColumn": 58, + "endOffset": 126 + } + } + }, + { + "to": { + "startLine": 90, + "startColumn": 4, + "startOffset": 7340, + "endColumn": 60, + "endOffset": 7396 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-cs/strings.xml", + "position": { + "startLine": 39, + "startColumn": 4, + "startOffset": 2675, + "endColumn": 60, + "endOffset": 2731 + } + } + }, + { + "to": { + "startLine": 91, + "startColumn": 4, + "startOffset": 7401, + "endColumn": 115, + "endOffset": 7512 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-cs/strings.xml", + "position": { + "startLine": 40, + "startColumn": 4, + "startOffset": 2736, + "endColumn": 115, + "endOffset": 2847 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/multi/values-da.json b/android/build/intermediates/blame/res/debug/multi/values-da.json new file mode 100644 index 000000000..49605b0e1 --- /dev/null +++ b/android/build/intermediates/blame/res/debug/multi/values-da.json @@ -0,0 +1,539 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-da/values-da.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 102, + "endOffset": 153 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-da/values-da.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 102, + "endOffset": 153 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 158, + "endColumn": 107, + "endOffset": 261 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-da/values-da.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 158, + "endColumn": 107, + "endOffset": 261 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 266, + "endColumn": 122, + "endOffset": 384 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-da/values-da.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 266, + "endColumn": 122, + "endOffset": 384 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 389, + "endColumn": 98, + "endOffset": 483 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-da/values-da.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 389, + "endColumn": 98, + "endOffset": 483 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 488, + "endColumn": 111, + "endOffset": 595 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-da/values-da.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 488, + "endColumn": 111, + "endOffset": 595 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 600, + "endColumn": 82, + "endOffset": 678 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-da/values-da.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 600, + "endColumn": 82, + "endOffset": 678 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 683, + "endColumn": 99, + "endOffset": 778 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-da/values-da.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 683, + "endColumn": 99, + "endOffset": 778 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 783, + "endColumn": 112, + "endOffset": 891 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-da/values-da.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 783, + "endColumn": 112, + "endOffset": 891 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 896, + "endColumn": 76, + "endOffset": 968 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-da/values-da.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 896, + "endColumn": 76, + "endOffset": 968 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 973, + "endColumn": 76, + "endOffset": 1045 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-da/values-da.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 973, + "endColumn": 76, + "endOffset": 1045 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1050, + "endColumn": 78, + "endOffset": 1124 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-da/values-da.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1050, + "endColumn": 78, + "endOffset": 1124 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1129, + "endColumn": 108, + "endOffset": 1233 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-da/values-da.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1129, + "endColumn": 108, + "endOffset": 1233 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1238, + "endColumn": 107, + "endOffset": 1341 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-da/values-da.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1238, + "endColumn": 107, + "endOffset": 1341 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1346, + "endColumn": 95, + "endOffset": 1437 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-da/values-da.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1346, + "endColumn": 95, + "endOffset": 1437 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1442, + "endColumn": 113, + "endOffset": 1551 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-da/values-da.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1442, + "endColumn": 113, + "endOffset": 1551 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1556, + "endColumn": 101, + "endOffset": 1653 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-da/values-da.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1556, + "endColumn": 101, + "endOffset": 1653 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1658, + "endColumn": 100, + "endOffset": 1754 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-da/values-da.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1658, + "endColumn": 100, + "endOffset": 1754 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1759, + "endColumn": 115, + "endOffset": 1870 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-da/values-da.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1759, + "endColumn": 115, + "endOffset": 1870 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1875, + "endColumn": 96, + "endOffset": 1967 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-da/values-da.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1875, + "endColumn": 96, + "endOffset": 1967 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1972, + "endColumn": 53, + "endOffset": 2021 + }, + "from": { + "file": "/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/values-da/values-da.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 53, + "endOffset": 104 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2026, + "endColumn": 71, + "endOffset": 2093 + }, + "from": { + "file": "/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/values-da/values-da.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 109, + "endColumn": 71, + "endOffset": 176 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2098, + "endColumn": 78, + "endOffset": 2172 + }, + "from": { + "file": "/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/values-da/values-da.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 181, + "endColumn": 78, + "endOffset": 255 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2177, + "endColumn": 70, + "endOffset": 2243 + }, + "from": { + "file": "/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/values-da/values-da.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 260, + "endColumn": 70, + "endOffset": 326 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2248, + "endColumn": 66, + "endOffset": 2310 + }, + "from": { + "file": "/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/values-da/values-da.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 331, + "endColumn": 66, + "endOffset": 393 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2315, + "endColumn": 55, + "endOffset": 2366 + }, + "from": { + "file": "/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/values-da/values-da.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 398, + "endColumn": 55, + "endOffset": 449 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 2371, + "endColumn": 58, + "endOffset": 2425 + }, + "from": { + "file": "/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/values-da/values-da.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 454, + "endColumn": 58, + "endOffset": 508 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 2430, + "endColumn": 73, + "endOffset": 2499 + }, + "from": { + "file": "/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/values-da/values-da.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 513, + "endColumn": 73, + "endOffset": 582 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 2504, + "endColumn": 100, + "endOffset": 2600 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-da/values-da.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1972, + "endColumn": 100, + "endOffset": 2068 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/multi/values-de.json b/android/build/intermediates/blame/res/debug/multi/values-de.json new file mode 100644 index 000000000..ffa5e7b54 --- /dev/null +++ b/android/build/intermediates/blame/res/debug/multi/values-de.json @@ -0,0 +1,1717 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-de/values-de.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 104, + "endOffset": 155 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-de/values-de.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 104, + "endOffset": 155 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 160, + "endColumn": 107, + "endOffset": 263 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-de/values-de.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 160, + "endColumn": 107, + "endOffset": 263 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 268, + "endColumn": 122, + "endOffset": 386 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-de/values-de.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 268, + "endColumn": 122, + "endOffset": 386 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 391, + "endColumn": 97, + "endOffset": 484 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-de/values-de.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 391, + "endColumn": 97, + "endOffset": 484 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 489, + "endColumn": 111, + "endOffset": 596 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-de/values-de.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 489, + "endColumn": 111, + "endOffset": 596 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 601, + "endColumn": 85, + "endOffset": 682 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-de/values-de.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 601, + "endColumn": 85, + "endOffset": 682 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 687, + "endColumn": 104, + "endOffset": 787 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-de/values-de.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 687, + "endColumn": 104, + "endOffset": 787 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 792, + "endColumn": 114, + "endOffset": 902 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-de/values-de.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 792, + "endColumn": 114, + "endOffset": 902 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 907, + "endColumn": 76, + "endOffset": 979 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-de/values-de.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 907, + "endColumn": 76, + "endOffset": 979 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 984, + "endColumn": 75, + "endOffset": 1055 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-de/values-de.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 984, + "endColumn": 75, + "endOffset": 1055 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1060, + "endColumn": 81, + "endOffset": 1137 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-de/values-de.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1060, + "endColumn": 81, + "endOffset": 1137 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1142, + "endColumn": 110, + "endOffset": 1248 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-de/values-de.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1142, + "endColumn": 110, + "endOffset": 1248 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1253, + "endColumn": 102, + "endOffset": 1351 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-de/values-de.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1253, + "endColumn": 102, + "endOffset": 1351 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1356, + "endColumn": 98, + "endOffset": 1450 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-de/values-de.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1356, + "endColumn": 98, + "endOffset": 1450 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1455, + "endColumn": 110, + "endOffset": 1561 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-de/values-de.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1455, + "endColumn": 110, + "endOffset": 1561 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1566, + "endColumn": 101, + "endOffset": 1663 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-de/values-de.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1566, + "endColumn": 101, + "endOffset": 1663 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1668, + "endColumn": 106, + "endOffset": 1770 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-de/values-de.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1668, + "endColumn": 106, + "endOffset": 1770 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1775, + "endColumn": 121, + "endOffset": 1892 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-de/values-de.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1775, + "endColumn": 121, + "endOffset": 1892 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1897, + "endColumn": 101, + "endOffset": 1994 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-de/values-de.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1897, + "endColumn": 101, + "endOffset": 1994 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1999, + "endColumn": 54, + "endOffset": 2049 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-de/strings.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 803, + "endColumn": 54, + "endOffset": 853 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2054, + "endColumn": 45, + "endOffset": 2095 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-de/strings.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 757, + "endColumn": 45, + "endOffset": 798 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2100, + "endColumn": 49, + "endOffset": 2145 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-de/strings.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 326, + "endColumn": 49, + "endOffset": 371 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2150, + "endColumn": 47, + "endOffset": 2193 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-de/strings.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 278, + "endColumn": 47, + "endOffset": 321 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2198, + "endColumn": 42, + "endOffset": 2236 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-de/strings.xml", + "position": { + "startLine": 62, + "startColumn": 4, + "startOffset": 5093, + "endColumn": 42, + "endOffset": 5131 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2241, + "endColumn": 64, + "endOffset": 2301 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-de/strings.xml", + "position": { + "startLine": 49, + "startColumn": 4, + "startOffset": 3761, + "endColumn": 64, + "endOffset": 3821 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 2306, + "endColumn": 51, + "endOffset": 2353 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-de/strings.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1032, + "endColumn": 51, + "endOffset": 1079 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 2358, + "endColumn": 47, + "endOffset": 2401 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-de/strings.xml", + "position": { + "startLine": 45, + "startColumn": 4, + "startOffset": 3433, + "endColumn": 47, + "endOffset": 3476 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 2406, + "endColumn": 42, + "endOffset": 2444 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-de/strings.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 551, + "endColumn": 42, + "endOffset": 589 + } + } + }, + { + "to": { + "startLine": 30, + "startColumn": 4, + "startOffset": 2449, + "endColumn": 41, + "endOffset": 2486 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-de/strings.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 509, + "endColumn": 41, + "endOffset": 546 + } + } + }, + { + "to": { + "startLine": 31, + "startColumn": 4, + "startOffset": 2491, + "endColumn": 54, + "endOffset": 2541 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-de/strings.xml", + "position": { + "startLine": 1, + "startColumn": 4, + "startOffset": 16, + "endColumn": 54, + "endOffset": 66 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 2546, + "endColumn": 167, + "endOffset": 2709 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-de/strings.xml", + "position": { + "startLine": 46, + "startColumn": 4, + "startOffset": 3481, + "endColumn": 167, + "endOffset": 3644 + } + } + }, + { + "to": { + "startLine": 33, + "startColumn": 4, + "startOffset": 2714, + "endColumn": 56, + "endOffset": 2766 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-de/strings.xml", + "position": { + "startLine": 25, + "startColumn": 4, + "startOffset": 1438, + "endColumn": 56, + "endOffset": 1490 + } + } + }, + { + "to": { + "startLine": 34, + "startColumn": 4, + "startOffset": 2771, + "endColumn": 67, + "endOffset": 2834 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-de/strings.xml", + "position": { + "startLine": 33, + "startColumn": 4, + "startOffset": 2016, + "endColumn": 67, + "endOffset": 2079 + } + } + }, + { + "to": { + "startLine": 35, + "startColumn": 4, + "startOffset": 2839, + "endColumn": 163, + "endOffset": 2998 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-de/strings.xml", + "position": { + "startLine": 34, + "startColumn": 4, + "startOffset": 2084, + "endColumn": 163, + "endOffset": 2243 + } + } + }, + { + "to": { + "startLine": 36, + "startColumn": 4, + "startOffset": 3003, + "endColumn": 61, + "endOffset": 3060 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-de/strings.xml", + "position": { + "startLine": 32, + "startColumn": 4, + "startOffset": 1954, + "endColumn": 61, + "endOffset": 2011 + } + } + }, + { + "to": { + "startLine": 37, + "startColumn": 4, + "startOffset": 3065, + "endColumn": 85, + "endOffset": 3146 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-de/strings.xml", + "position": { + "startLine": 58, + "startColumn": 4, + "startOffset": 4783, + "endColumn": 85, + "endOffset": 4864 + } + } + }, + { + "to": { + "startLine": 38, + "startColumn": 4, + "startOffset": 3151, + "endColumn": 58, + "endOffset": 3205 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-de/strings.xml", + "position": { + "startLine": 37, + "startColumn": 4, + "startOffset": 2610, + "endColumn": 58, + "endOffset": 2664 + } + } + }, + { + "to": { + "startLine": 39, + "startColumn": 4, + "startOffset": 3210, + "endColumn": 159, + "endOffset": 3365 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-de/strings.xml", + "position": { + "startLine": 38, + "startColumn": 4, + "startOffset": 2669, + "endColumn": 159, + "endOffset": 2824 + } + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 3370, + "endColumn": 44, + "endOffset": 3410 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-de/strings.xml", + "position": { + "startLine": 24, + "startColumn": 4, + "startOffset": 1381, + "endColumn": 56, + "endOffset": 1433 + } + } + }, + { + "to": { + "startLine": 41, + "startColumn": 4, + "startOffset": 3415, + "endColumn": 53, + "endOffset": 3464 + }, + "from": { + "file": "/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/values-de/values-de.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 53, + "endOffset": 104 + } + } + }, + { + "to": { + "startLine": 42, + "startColumn": 4, + "startOffset": 3469, + "endColumn": 74, + "endOffset": 3539 + }, + "from": { + "file": "/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/values-de/values-de.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 109, + "endColumn": 74, + "endOffset": 179 + } + } + }, + { + "to": { + "startLine": 43, + "startColumn": 4, + "startOffset": 3544, + "endColumn": 78, + "endOffset": 3618 + }, + "from": { + "file": "/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/values-de/values-de.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 184, + "endColumn": 78, + "endOffset": 258 + } + } + }, + { + "to": { + "startLine": 44, + "startColumn": 4, + "startOffset": 3623, + "endColumn": 70, + "endOffset": 3689 + }, + "from": { + "file": "/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/values-de/values-de.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 263, + "endColumn": 70, + "endOffset": 329 + } + } + }, + { + "to": { + "startLine": 45, + "startColumn": 4, + "startOffset": 3694, + "endColumn": 70, + "endOffset": 3760 + }, + "from": { + "file": "/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/values-de/values-de.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 334, + "endColumn": 70, + "endOffset": 400 + } + } + }, + { + "to": { + "startLine": 46, + "startColumn": 4, + "startOffset": 3765, + "endColumn": 55, + "endOffset": 3816 + }, + "from": { + "file": "/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/values-de/values-de.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 405, + "endColumn": 55, + "endOffset": 456 + } + } + }, + { + "to": { + "startLine": 47, + "startColumn": 4, + "startOffset": 3821, + "endColumn": 58, + "endOffset": 3875 + }, + "from": { + "file": "/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/values-de/values-de.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 461, + "endColumn": 58, + "endOffset": 515 + } + } + }, + { + "to": { + "startLine": 48, + "startColumn": 4, + "startOffset": 3880, + "endColumn": 73, + "endOffset": 3949 + }, + "from": { + "file": "/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/values-de/values-de.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 520, + "endColumn": 73, + "endOffset": 589 + } + } + }, + { + "to": { + "startLine": 49, + "startColumn": 4, + "startOffset": 3954, + "endColumn": 48, + "endOffset": 3998 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-de/strings.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 1332, + "endColumn": 48, + "endOffset": 1376 + } + } + }, + { + "to": { + "startLine": 50, + "startColumn": 4, + "startOffset": 4003, + "endColumn": 100, + "endOffset": 4099 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-de/strings.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 594, + "endColumn": 100, + "endOffset": 690 + } + } + }, + { + "to": { + "startLine": 51, + "startColumn": 4, + "startOffset": 4104, + "endColumn": 79, + "endOffset": 4179 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-de/strings.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 429, + "endColumn": 79, + "endOffset": 504 + } + } + }, + { + "to": { + "startLine": 52, + "startColumn": 4, + "startOffset": 4184, + "endColumn": 102, + "endOffset": 4282 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-de/strings.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 929, + "endColumn": 102, + "endOffset": 1027 + } + } + }, + { + "to": { + "startLine": 53, + "startColumn": 4, + "startOffset": 4287, + "endColumn": 52, + "endOffset": 4335 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-de/strings.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 376, + "endColumn": 52, + "endOffset": 424 + } + } + }, + { + "to": { + "startLine": 54, + "startColumn": 4, + "startOffset": 4340, + "endColumn": 66, + "endOffset": 4402 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-de/strings.xml", + "position": { + "startLine": 53, + "startColumn": 4, + "startOffset": 4348, + "endColumn": 66, + "endOffset": 4410 + } + } + }, + { + "to": { + "startLine": 55, + "startColumn": 4, + "startOffset": 4407, + "endColumn": 150, + "endOffset": 4553 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-de/strings.xml", + "position": { + "startLine": 54, + "startColumn": 4, + "startOffset": 4415, + "endColumn": 150, + "endOffset": 4561 + } + } + }, + { + "to": { + "startLine": 56, + "startColumn": 4, + "startOffset": 4558, + "endColumn": 53, + "endOffset": 4607 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-de/strings.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1084, + "endColumn": 53, + "endOffset": 1133 + } + } + }, + { + "to": { + "startLine": 57, + "startColumn": 4, + "startOffset": 4612, + "endColumn": 75, + "endOffset": 4683 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-de/strings.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1138, + "endColumn": 75, + "endOffset": 1209 + } + } + }, + { + "to": { + "startLine": 58, + "startColumn": 4, + "startOffset": 4688, + "endColumn": 76, + "endOffset": 4760 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-de/strings.xml", + "position": { + "startLine": 57, + "startColumn": 4, + "startOffset": 4706, + "endColumn": 76, + "endOffset": 4778 + } + } + }, + { + "to": { + "startLine": 59, + "startColumn": 4, + "startOffset": 4765, + "endColumn": 65, + "endOffset": 4826 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-de/strings.xml", + "position": { + "startLine": 61, + "startColumn": 4, + "startOffset": 5027, + "endColumn": 65, + "endOffset": 5088 + } + } + }, + { + "to": { + "startLine": 60, + "startColumn": 4, + "startOffset": 4831, + "endColumn": 64, + "endOffset": 4891 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-de/strings.xml", + "position": { + "startLine": 60, + "startColumn": 4, + "startOffset": 4962, + "endColumn": 64, + "endOffset": 5022 + } + } + }, + { + "to": { + "startLine": 61, + "startColumn": 4, + "startOffset": 4896, + "endColumn": 61, + "endOffset": 4953 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-de/strings.xml", + "position": { + "startLine": 51, + "startColumn": 4, + "startOffset": 4050, + "endColumn": 61, + "endOffset": 4107 + } + } + }, + { + "to": { + "startLine": 62, + "startColumn": 4, + "startOffset": 4958, + "endColumn": 235, + "endOffset": 5189 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-de/strings.xml", + "position": { + "startLine": 52, + "startColumn": 4, + "startOffset": 4112, + "endColumn": 235, + "endOffset": 4343 + } + } + }, + { + "to": { + "startLine": 63, + "startColumn": 4, + "startOffset": 5194, + "endColumn": 60, + "endOffset": 5250 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-de/strings.xml", + "position": { + "startLine": 48, + "startColumn": 4, + "startOffset": 3700, + "endColumn": 60, + "endOffset": 3756 + } + } + }, + { + "to": { + "startLine": 64, + "startColumn": 4, + "startOffset": 5255, + "endColumn": 50, + "endOffset": 5301 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-de/strings.xml", + "position": { + "startLine": 47, + "startColumn": 4, + "startOffset": 3649, + "endColumn": 50, + "endOffset": 3695 + } + } + }, + { + "to": { + "startLine": 65, + "startColumn": 4, + "startOffset": 5306, + "endColumn": 59, + "endOffset": 5361 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-de/strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 218, + "endColumn": 59, + "endOffset": 273 + } + } + }, + { + "to": { + "startLine": 66, + "startColumn": 4, + "startOffset": 5366, + "endColumn": 70, + "endOffset": 5432 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-de/strings.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 858, + "endColumn": 70, + "endOffset": 924 + } + } + }, + { + "to": { + "startLine": 67, + "startColumn": 4, + "startOffset": 5437, + "endColumn": 54, + "endOffset": 5487 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-de/strings.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 1495, + "endColumn": 54, + "endOffset": 1545 + } + } + }, + { + "to": { + "startLine": 68, + "startColumn": 4, + "startOffset": 5492, + "endColumn": 84, + "endOffset": 5572 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-de/strings.xml", + "position": { + "startLine": 35, + "startColumn": 4, + "startOffset": 2248, + "endColumn": 84, + "endOffset": 2328 + } + } + }, + { + "to": { + "startLine": 69, + "startColumn": 4, + "startOffset": 5577, + "endColumn": 276, + "endOffset": 5849 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-de/strings.xml", + "position": { + "startLine": 36, + "startColumn": 4, + "startOffset": 2333, + "endColumn": 276, + "endOffset": 2605 + } + } + }, + { + "to": { + "startLine": 70, + "startColumn": 4, + "startOffset": 5854, + "endColumn": 223, + "endOffset": 6073 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-de/strings.xml", + "position": { + "startLine": 50, + "startColumn": 4, + "startOffset": 3826, + "endColumn": 223, + "endOffset": 4045 + } + } + }, + { + "to": { + "startLine": 71, + "startColumn": 4, + "startOffset": 6078, + "endColumn": 92, + "endOffset": 6166 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-de/strings.xml", + "position": { + "startLine": 59, + "startColumn": 4, + "startOffset": 4869, + "endColumn": 92, + "endOffset": 4957 + } + } + }, + { + "to": { + "startLine": 72, + "startColumn": 4, + "startOffset": 6171, + "endColumn": 117, + "endOffset": 6284 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-de/strings.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 1214, + "endColumn": 117, + "endOffset": 1327 + } + } + }, + { + "to": { + "startLine": 73, + "startColumn": 4, + "startOffset": 6289, + "endColumn": 57, + "endOffset": 6342 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-de/strings.xml", + "position": { + "startLine": 41, + "startColumn": 4, + "startOffset": 3032, + "endColumn": 57, + "endOffset": 3085 + } + } + }, + { + "to": { + "startLine": 74, + "startColumn": 4, + "startOffset": 6347, + "endColumn": 83, + "endOffset": 6426 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-de/strings.xml", + "position": { + "startLine": 42, + "startColumn": 4, + "startOffset": 3090, + "endColumn": 83, + "endOffset": 3169 + } + } + }, + { + "to": { + "startLine": 75, + "startColumn": 4, + "startOffset": 6431, + "endColumn": 50, + "endOffset": 6477 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-de/strings.xml", + "position": { + "startLine": 31, + "startColumn": 4, + "startOffset": 1903, + "endColumn": 50, + "endOffset": 1949 + } + } + }, + { + "to": { + "startLine": 76, + "startColumn": 4, + "startOffset": 6482, + "endColumn": 54, + "endOffset": 6532 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-de/strings.xml", + "position": { + "startLine": 27, + "startColumn": 4, + "startOffset": 1550, + "endColumn": 54, + "endOffset": 1600 + } + } + }, + { + "to": { + "startLine": 77, + "startColumn": 4, + "startOffset": 6537, + "endColumn": 141, + "endOffset": 6674 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-de/strings.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 1666, + "endColumn": 141, + "endOffset": 1803 + } + } + }, + { + "to": { + "startLine": 78, + "startColumn": 4, + "startOffset": 6679, + "endColumn": 94, + "endOffset": 6769 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-de/strings.xml", + "position": { + "startLine": 30, + "startColumn": 4, + "startOffset": 1808, + "endColumn": 94, + "endOffset": 1898 + } + } + }, + { + "to": { + "startLine": 79, + "startColumn": 4, + "startOffset": 6774, + "endColumn": 60, + "endOffset": 6830 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-de/strings.xml", + "position": { + "startLine": 28, + "startColumn": 4, + "startOffset": 1605, + "endColumn": 60, + "endOffset": 1661 + } + } + }, + { + "to": { + "startLine": 80, + "startColumn": 4, + "startOffset": 6835, + "endColumn": 61, + "endOffset": 6892 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-de/strings.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 695, + "endColumn": 61, + "endOffset": 752 + } + } + }, + { + "to": { + "startLine": 81, + "startColumn": 4, + "startOffset": 6897, + "endColumn": 192, + "endOffset": 7085 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-de/strings.xml", + "position": { + "startLine": 44, + "startColumn": 4, + "startOffset": 3240, + "endColumn": 192, + "endOffset": 3428 + } + } + }, + { + "to": { + "startLine": 82, + "startColumn": 4, + "startOffset": 7090, + "endColumn": 65, + "endOffset": 7151 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-de/strings.xml", + "position": { + "startLine": 43, + "startColumn": 4, + "startOffset": 3174, + "endColumn": 65, + "endOffset": 3235 + } + } + }, + { + "to": { + "startLine": 83, + "startColumn": 4, + "startOffset": 7156, + "endColumn": 100, + "endOffset": 7252 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-de/values-de.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1999, + "endColumn": 100, + "endOffset": 2095 + } + } + }, + { + "to": { + "startLine": 84, + "startColumn": 4, + "startOffset": 7257, + "endColumn": 57, + "endOffset": 7310 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-de/strings.xml", + "position": { + "startLine": 63, + "startColumn": 4, + "startOffset": 5136, + "endColumn": 57, + "endOffset": 5189 + } + } + }, + { + "to": { + "startLine": 85, + "startColumn": 4, + "startOffset": 7315, + "endColumn": 96, + "endOffset": 7407 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-de/strings.xml", + "position": { + "startLine": 64, + "startColumn": 4, + "startOffset": 5194, + "endColumn": 96, + "endOffset": 5286 + } + } + }, + { + "to": { + "startLine": 86, + "startColumn": 4, + "startOffset": 7412, + "endColumn": 52, + "endOffset": 7460 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-de/strings.xml", + "position": { + "startLine": 55, + "startColumn": 4, + "startOffset": 4566, + "endColumn": 52, + "endOffset": 4614 + } + } + }, + { + "to": { + "startLine": 87, + "startColumn": 4, + "startOffset": 7465, + "endColumn": 86, + "endOffset": 7547 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-de/strings.xml", + "position": { + "startLine": 56, + "startColumn": 4, + "startOffset": 4619, + "endColumn": 86, + "endOffset": 4701 + } + } + }, + { + "to": { + "startLine": 88, + "startColumn": 4, + "startOffset": 7552, + "endColumn": 85, + "endOffset": 7633 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-de/strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 132, + "endColumn": 85, + "endOffset": 213 + } + } + }, + { + "to": { + "startLine": 89, + "startColumn": 4, + "startOffset": 7638, + "endColumn": 58, + "endOffset": 7692 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-de/strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 72, + "endColumn": 58, + "endOffset": 126 + } + } + }, + { + "to": { + "startLine": 90, + "startColumn": 4, + "startOffset": 7697, + "endColumn": 59, + "endOffset": 7752 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-de/strings.xml", + "position": { + "startLine": 39, + "startColumn": 4, + "startOffset": 2829, + "endColumn": 59, + "endOffset": 2884 + } + } + }, + { + "to": { + "startLine": 91, + "startColumn": 4, + "startOffset": 7757, + "endColumn": 142, + "endOffset": 7895 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-de/strings.xml", + "position": { + "startLine": 40, + "startColumn": 4, + "startOffset": 2889, + "endColumn": 142, + "endOffset": 3027 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/multi/values-el.json b/android/build/intermediates/blame/res/debug/multi/values-el.json new file mode 100644 index 000000000..2b5277677 --- /dev/null +++ b/android/build/intermediates/blame/res/debug/multi/values-el.json @@ -0,0 +1,539 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-el/values-el.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 117, + "endOffset": 168 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-el/values-el.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 117, + "endOffset": 168 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 173, + "endColumn": 107, + "endOffset": 276 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-el/values-el.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 173, + "endColumn": 107, + "endOffset": 276 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 281, + "endColumn": 122, + "endOffset": 399 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-el/values-el.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 281, + "endColumn": 122, + "endOffset": 399 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 404, + "endColumn": 110, + "endOffset": 510 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-el/values-el.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 404, + "endColumn": 110, + "endOffset": 510 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 515, + "endColumn": 116, + "endOffset": 627 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-el/values-el.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 515, + "endColumn": 116, + "endOffset": 627 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 632, + "endColumn": 84, + "endOffset": 712 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-el/values-el.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 632, + "endColumn": 84, + "endOffset": 712 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 717, + "endColumn": 104, + "endOffset": 817 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-el/values-el.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 717, + "endColumn": 104, + "endOffset": 817 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 822, + "endColumn": 125, + "endOffset": 943 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-el/values-el.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 822, + "endColumn": 125, + "endOffset": 943 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 948, + "endColumn": 87, + "endOffset": 1031 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-el/values-el.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 948, + "endColumn": 87, + "endOffset": 1031 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1036, + "endColumn": 85, + "endOffset": 1117 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-el/values-el.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1036, + "endColumn": 85, + "endOffset": 1117 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1122, + "endColumn": 84, + "endOffset": 1202 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-el/values-el.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1122, + "endColumn": 84, + "endOffset": 1202 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1207, + "endColumn": 110, + "endOffset": 1313 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-el/values-el.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1207, + "endColumn": 110, + "endOffset": 1313 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1318, + "endColumn": 109, + "endOffset": 1423 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-el/values-el.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1318, + "endColumn": 109, + "endOffset": 1423 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1428, + "endColumn": 101, + "endOffset": 1525 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-el/values-el.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1428, + "endColumn": 101, + "endOffset": 1525 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1530, + "endColumn": 110, + "endOffset": 1636 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-el/values-el.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1530, + "endColumn": 110, + "endOffset": 1636 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1641, + "endColumn": 108, + "endOffset": 1745 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-el/values-el.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1641, + "endColumn": 108, + "endOffset": 1745 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1750, + "endColumn": 107, + "endOffset": 1853 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-el/values-el.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1750, + "endColumn": 107, + "endOffset": 1853 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1858, + "endColumn": 122, + "endOffset": 1976 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-el/values-el.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1858, + "endColumn": 122, + "endOffset": 1976 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1981, + "endColumn": 99, + "endOffset": 2076 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-el/values-el.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1981, + "endColumn": 99, + "endOffset": 2076 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2081, + "endColumn": 53, + "endOffset": 2130 + }, + "from": { + "file": "/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/values-el/values-el.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 53, + "endOffset": 104 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2135, + "endColumn": 72, + "endOffset": 2203 + }, + "from": { + "file": "/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/values-el/values-el.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 109, + "endColumn": 72, + "endOffset": 177 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2208, + "endColumn": 78, + "endOffset": 2282 + }, + "from": { + "file": "/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/values-el/values-el.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 182, + "endColumn": 78, + "endOffset": 256 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2287, + "endColumn": 70, + "endOffset": 2353 + }, + "from": { + "file": "/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/values-el/values-el.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 261, + "endColumn": 70, + "endOffset": 327 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2358, + "endColumn": 63, + "endOffset": 2417 + }, + "from": { + "file": "/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/values-el/values-el.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 332, + "endColumn": 63, + "endOffset": 391 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2422, + "endColumn": 55, + "endOffset": 2473 + }, + "from": { + "file": "/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/values-el/values-el.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 396, + "endColumn": 55, + "endOffset": 447 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 2478, + "endColumn": 58, + "endOffset": 2532 + }, + "from": { + "file": "/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/values-el/values-el.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 452, + "endColumn": 58, + "endOffset": 506 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 2537, + "endColumn": 73, + "endOffset": 2606 + }, + "from": { + "file": "/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/values-el/values-el.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 511, + "endColumn": 73, + "endOffset": 580 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 2611, + "endColumn": 100, + "endOffset": 2707 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-el/values-el.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2081, + "endColumn": 100, + "endOffset": 2177 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/multi/values-en-rAU.json b/android/build/intermediates/blame/res/debug/multi/values-en-rAU.json new file mode 100644 index 000000000..0e4be1d35 --- /dev/null +++ b/android/build/intermediates/blame/res/debug/multi/values-en-rAU.json @@ -0,0 +1,387 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rAU/values-en-rAU.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 103, + "endOffset": 154 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rAU/values-en-rAU.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 103, + "endOffset": 154 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 159, + "endColumn": 107, + "endOffset": 262 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rAU/values-en-rAU.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 159, + "endColumn": 107, + "endOffset": 262 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 267, + "endColumn": 122, + "endOffset": 385 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rAU/values-en-rAU.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 267, + "endColumn": 122, + "endOffset": 385 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 390, + "endColumn": 99, + "endOffset": 485 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rAU/values-en-rAU.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 390, + "endColumn": 99, + "endOffset": 485 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 490, + "endColumn": 107, + "endOffset": 593 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rAU/values-en-rAU.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 490, + "endColumn": 107, + "endOffset": 593 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 598, + "endColumn": 83, + "endOffset": 677 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rAU/values-en-rAU.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 598, + "endColumn": 83, + "endOffset": 677 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 682, + "endColumn": 99, + "endOffset": 777 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rAU/values-en-rAU.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 682, + "endColumn": 99, + "endOffset": 777 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 782, + "endColumn": 114, + "endOffset": 892 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rAU/values-en-rAU.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 782, + "endColumn": 114, + "endOffset": 892 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 897, + "endColumn": 76, + "endOffset": 969 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rAU/values-en-rAU.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 897, + "endColumn": 76, + "endOffset": 969 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 974, + "endColumn": 75, + "endOffset": 1045 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rAU/values-en-rAU.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 974, + "endColumn": 75, + "endOffset": 1045 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1050, + "endColumn": 81, + "endOffset": 1127 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rAU/values-en-rAU.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1050, + "endColumn": 81, + "endOffset": 1127 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1132, + "endColumn": 102, + "endOffset": 1230 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rAU/values-en-rAU.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1132, + "endColumn": 102, + "endOffset": 1230 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1235, + "endColumn": 103, + "endOffset": 1334 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rAU/values-en-rAU.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1235, + "endColumn": 103, + "endOffset": 1334 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1339, + "endColumn": 98, + "endOffset": 1433 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rAU/values-en-rAU.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1339, + "endColumn": 98, + "endOffset": 1433 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1438, + "endColumn": 104, + "endOffset": 1538 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rAU/values-en-rAU.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1438, + "endColumn": 104, + "endOffset": 1538 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1543, + "endColumn": 102, + "endOffset": 1641 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rAU/values-en-rAU.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1543, + "endColumn": 102, + "endOffset": 1641 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1646, + "endColumn": 103, + "endOffset": 1745 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rAU/values-en-rAU.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1646, + "endColumn": 103, + "endOffset": 1745 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1750, + "endColumn": 118, + "endOffset": 1864 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rAU/values-en-rAU.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1750, + "endColumn": 118, + "endOffset": 1864 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1869, + "endColumn": 99, + "endOffset": 1964 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rAU/values-en-rAU.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1869, + "endColumn": 99, + "endOffset": 1964 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1969, + "endColumn": 100, + "endOffset": 2065 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rAU/values-en-rAU.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1969, + "endColumn": 100, + "endOffset": 2065 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/multi/values-en-rGB.json b/android/build/intermediates/blame/res/debug/multi/values-en-rGB.json new file mode 100644 index 000000000..f7798345f --- /dev/null +++ b/android/build/intermediates/blame/res/debug/multi/values-en-rGB.json @@ -0,0 +1,539 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rGB/values-en-rGB.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 103, + "endOffset": 154 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rGB/values-en-rGB.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 103, + "endOffset": 154 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 159, + "endColumn": 107, + "endOffset": 262 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rGB/values-en-rGB.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 159, + "endColumn": 107, + "endOffset": 262 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 267, + "endColumn": 122, + "endOffset": 385 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rGB/values-en-rGB.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 267, + "endColumn": 122, + "endOffset": 385 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 390, + "endColumn": 99, + "endOffset": 485 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rGB/values-en-rGB.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 390, + "endColumn": 99, + "endOffset": 485 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 490, + "endColumn": 107, + "endOffset": 593 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rGB/values-en-rGB.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 490, + "endColumn": 107, + "endOffset": 593 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 598, + "endColumn": 83, + "endOffset": 677 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rGB/values-en-rGB.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 598, + "endColumn": 83, + "endOffset": 677 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 682, + "endColumn": 99, + "endOffset": 777 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rGB/values-en-rGB.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 682, + "endColumn": 99, + "endOffset": 777 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 782, + "endColumn": 114, + "endOffset": 892 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rGB/values-en-rGB.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 782, + "endColumn": 114, + "endOffset": 892 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 897, + "endColumn": 76, + "endOffset": 969 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rGB/values-en-rGB.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 897, + "endColumn": 76, + "endOffset": 969 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 974, + "endColumn": 75, + "endOffset": 1045 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rGB/values-en-rGB.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 974, + "endColumn": 75, + "endOffset": 1045 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1050, + "endColumn": 81, + "endOffset": 1127 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rGB/values-en-rGB.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1050, + "endColumn": 81, + "endOffset": 1127 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1132, + "endColumn": 102, + "endOffset": 1230 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rGB/values-en-rGB.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1132, + "endColumn": 102, + "endOffset": 1230 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1235, + "endColumn": 103, + "endOffset": 1334 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rGB/values-en-rGB.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1235, + "endColumn": 103, + "endOffset": 1334 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1339, + "endColumn": 98, + "endOffset": 1433 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rGB/values-en-rGB.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1339, + "endColumn": 98, + "endOffset": 1433 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1438, + "endColumn": 104, + "endOffset": 1538 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rGB/values-en-rGB.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1438, + "endColumn": 104, + "endOffset": 1538 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1543, + "endColumn": 102, + "endOffset": 1641 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rGB/values-en-rGB.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1543, + "endColumn": 102, + "endOffset": 1641 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1646, + "endColumn": 103, + "endOffset": 1745 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rGB/values-en-rGB.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1646, + "endColumn": 103, + "endOffset": 1745 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1750, + "endColumn": 118, + "endOffset": 1864 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rGB/values-en-rGB.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1750, + "endColumn": 118, + "endOffset": 1864 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1869, + "endColumn": 99, + "endOffset": 1964 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rGB/values-en-rGB.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1869, + "endColumn": 99, + "endOffset": 1964 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1969, + "endColumn": 53, + "endOffset": 2018 + }, + "from": { + "file": "/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/values-en-rGB/values-en-rGB.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 53, + "endOffset": 104 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2023, + "endColumn": 69, + "endOffset": 2088 + }, + "from": { + "file": "/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/values-en-rGB/values-en-rGB.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 109, + "endColumn": 69, + "endOffset": 174 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2093, + "endColumn": 78, + "endOffset": 2167 + }, + "from": { + "file": "/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/values-en-rGB/values-en-rGB.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 179, + "endColumn": 78, + "endOffset": 253 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2172, + "endColumn": 70, + "endOffset": 2238 + }, + "from": { + "file": "/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/values-en-rGB/values-en-rGB.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 258, + "endColumn": 70, + "endOffset": 324 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2243, + "endColumn": 64, + "endOffset": 2303 + }, + "from": { + "file": "/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/values-en-rGB/values-en-rGB.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 329, + "endColumn": 64, + "endOffset": 389 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2308, + "endColumn": 55, + "endOffset": 2359 + }, + "from": { + "file": "/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/values-en-rGB/values-en-rGB.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 394, + "endColumn": 55, + "endOffset": 445 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 2364, + "endColumn": 58, + "endOffset": 2418 + }, + "from": { + "file": "/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/values-en-rGB/values-en-rGB.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 450, + "endColumn": 58, + "endOffset": 504 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 2423, + "endColumn": 73, + "endOffset": 2492 + }, + "from": { + "file": "/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/values-en-rGB/values-en-rGB.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 509, + "endColumn": 73, + "endOffset": 578 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 2497, + "endColumn": 100, + "endOffset": 2593 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rGB/values-en-rGB.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1969, + "endColumn": 100, + "endOffset": 2065 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/multi/values-en-rIN.json b/android/build/intermediates/blame/res/debug/multi/values-en-rIN.json new file mode 100644 index 000000000..b3aeb9938 --- /dev/null +++ b/android/build/intermediates/blame/res/debug/multi/values-en-rIN.json @@ -0,0 +1,387 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rIN/values-en-rIN.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 103, + "endOffset": 154 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rIN/values-en-rIN.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 103, + "endOffset": 154 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 159, + "endColumn": 107, + "endOffset": 262 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rIN/values-en-rIN.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 159, + "endColumn": 107, + "endOffset": 262 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 267, + "endColumn": 122, + "endOffset": 385 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rIN/values-en-rIN.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 267, + "endColumn": 122, + "endOffset": 385 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 390, + "endColumn": 99, + "endOffset": 485 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rIN/values-en-rIN.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 390, + "endColumn": 99, + "endOffset": 485 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 490, + "endColumn": 107, + "endOffset": 593 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rIN/values-en-rIN.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 490, + "endColumn": 107, + "endOffset": 593 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 598, + "endColumn": 83, + "endOffset": 677 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rIN/values-en-rIN.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 598, + "endColumn": 83, + "endOffset": 677 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 682, + "endColumn": 99, + "endOffset": 777 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rIN/values-en-rIN.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 682, + "endColumn": 99, + "endOffset": 777 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 782, + "endColumn": 114, + "endOffset": 892 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rIN/values-en-rIN.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 782, + "endColumn": 114, + "endOffset": 892 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 897, + "endColumn": 76, + "endOffset": 969 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rIN/values-en-rIN.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 897, + "endColumn": 76, + "endOffset": 969 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 974, + "endColumn": 75, + "endOffset": 1045 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rIN/values-en-rIN.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 974, + "endColumn": 75, + "endOffset": 1045 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1050, + "endColumn": 81, + "endOffset": 1127 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rIN/values-en-rIN.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1050, + "endColumn": 81, + "endOffset": 1127 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1132, + "endColumn": 102, + "endOffset": 1230 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rIN/values-en-rIN.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1132, + "endColumn": 102, + "endOffset": 1230 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1235, + "endColumn": 103, + "endOffset": 1334 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rIN/values-en-rIN.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1235, + "endColumn": 103, + "endOffset": 1334 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1339, + "endColumn": 98, + "endOffset": 1433 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rIN/values-en-rIN.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1339, + "endColumn": 98, + "endOffset": 1433 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1438, + "endColumn": 104, + "endOffset": 1538 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rIN/values-en-rIN.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1438, + "endColumn": 104, + "endOffset": 1538 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1543, + "endColumn": 102, + "endOffset": 1641 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rIN/values-en-rIN.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1543, + "endColumn": 102, + "endOffset": 1641 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1646, + "endColumn": 103, + "endOffset": 1745 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rIN/values-en-rIN.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1646, + "endColumn": 103, + "endOffset": 1745 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1750, + "endColumn": 118, + "endOffset": 1864 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rIN/values-en-rIN.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1750, + "endColumn": 118, + "endOffset": 1864 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1869, + "endColumn": 99, + "endOffset": 1964 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rIN/values-en-rIN.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1869, + "endColumn": 99, + "endOffset": 1964 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1969, + "endColumn": 100, + "endOffset": 2065 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-en-rIN/values-en-rIN.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1969, + "endColumn": 100, + "endOffset": 2065 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/multi/values-es-rES.json b/android/build/intermediates/blame/res/debug/multi/values-es-rES.json new file mode 100644 index 000000000..6bb0a922d --- /dev/null +++ b/android/build/intermediates/blame/res/debug/multi/values-es-rES.json @@ -0,0 +1,159 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-es-rES/values-es-rES.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 53, + "endOffset": 104 + }, + "from": { + "file": "/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/values-es-rES/values-es-rES.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 53, + "endOffset": 104 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 109, + "endColumn": 76, + "endOffset": 181 + }, + "from": { + "file": "/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/values-es-rES/values-es-rES.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 109, + "endColumn": 76, + "endOffset": 181 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 186, + "endColumn": 78, + "endOffset": 260 + }, + "from": { + "file": "/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/values-es-rES/values-es-rES.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 186, + "endColumn": 78, + "endOffset": 260 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 265, + "endColumn": 70, + "endOffset": 331 + }, + "from": { + "file": "/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/values-es-rES/values-es-rES.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 265, + "endColumn": 70, + "endOffset": 331 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 336, + "endColumn": 59, + "endOffset": 391 + }, + "from": { + "file": "/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/values-es-rES/values-es-rES.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 336, + "endColumn": 59, + "endOffset": 391 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 396, + "endColumn": 55, + "endOffset": 447 + }, + "from": { + "file": "/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/values-es-rES/values-es-rES.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 396, + "endColumn": 55, + "endOffset": 447 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 452, + "endColumn": 58, + "endOffset": 506 + }, + "from": { + "file": "/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/values-es-rES/values-es-rES.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 452, + "endColumn": 58, + "endOffset": 506 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 511, + "endColumn": 73, + "endOffset": 580 + }, + "from": { + "file": "/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/values-es-rES/values-es-rES.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 511, + "endColumn": 73, + "endOffset": 580 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/multi/values-es-rUS.json b/android/build/intermediates/blame/res/debug/multi/values-es-rUS.json new file mode 100644 index 000000000..ff271a95b --- /dev/null +++ b/android/build/intermediates/blame/res/debug/multi/values-es-rUS.json @@ -0,0 +1,387 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-es-rUS/values-es-rUS.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 119, + "endOffset": 170 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-es-rUS/values-es-rUS.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 119, + "endOffset": 170 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 175, + "endColumn": 107, + "endOffset": 278 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-es-rUS/values-es-rUS.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 175, + "endColumn": 107, + "endOffset": 278 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 283, + "endColumn": 122, + "endOffset": 401 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-es-rUS/values-es-rUS.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 283, + "endColumn": 122, + "endOffset": 401 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 406, + "endColumn": 108, + "endOffset": 510 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-es-rUS/values-es-rUS.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 406, + "endColumn": 108, + "endOffset": 510 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 515, + "endColumn": 107, + "endOffset": 618 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-es-rUS/values-es-rUS.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 515, + "endColumn": 107, + "endOffset": 618 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 623, + "endColumn": 84, + "endOffset": 703 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-es-rUS/values-es-rUS.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 623, + "endColumn": 84, + "endOffset": 703 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 708, + "endColumn": 100, + "endOffset": 804 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-es-rUS/values-es-rUS.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 708, + "endColumn": 100, + "endOffset": 804 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 809, + "endColumn": 122, + "endOffset": 927 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-es-rUS/values-es-rUS.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 809, + "endColumn": 122, + "endOffset": 927 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 932, + "endColumn": 83, + "endOffset": 1011 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-es-rUS/values-es-rUS.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 932, + "endColumn": 83, + "endOffset": 1011 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1016, + "endColumn": 80, + "endOffset": 1092 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-es-rUS/values-es-rUS.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1016, + "endColumn": 80, + "endOffset": 1092 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1097, + "endColumn": 81, + "endOffset": 1174 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-es-rUS/values-es-rUS.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1097, + "endColumn": 81, + "endOffset": 1174 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1179, + "endColumn": 111, + "endOffset": 1286 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-es-rUS/values-es-rUS.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1179, + "endColumn": 111, + "endOffset": 1286 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1291, + "endColumn": 111, + "endOffset": 1398 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-es-rUS/values-es-rUS.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1291, + "endColumn": 111, + "endOffset": 1398 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1403, + "endColumn": 100, + "endOffset": 1499 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-es-rUS/values-es-rUS.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1403, + "endColumn": 100, + "endOffset": 1499 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1504, + "endColumn": 107, + "endOffset": 1607 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-es-rUS/values-es-rUS.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1504, + "endColumn": 107, + "endOffset": 1607 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1612, + "endColumn": 106, + "endOffset": 1714 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-es-rUS/values-es-rUS.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1612, + "endColumn": 106, + "endOffset": 1714 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1719, + "endColumn": 106, + "endOffset": 1821 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-es-rUS/values-es-rUS.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1719, + "endColumn": 106, + "endOffset": 1821 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1826, + "endColumn": 121, + "endOffset": 1943 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-es-rUS/values-es-rUS.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1826, + "endColumn": 121, + "endOffset": 1943 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1948, + "endColumn": 99, + "endOffset": 2043 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-es-rUS/values-es-rUS.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1948, + "endColumn": 99, + "endOffset": 2043 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2048, + "endColumn": 100, + "endOffset": 2144 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-es-rUS/values-es-rUS.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2048, + "endColumn": 100, + "endOffset": 2144 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/multi/values-es.json b/android/build/intermediates/blame/res/debug/multi/values-es.json new file mode 100644 index 000000000..d8c05ea7b --- /dev/null +++ b/android/build/intermediates/blame/res/debug/multi/values-es.json @@ -0,0 +1,1717 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-es/values-es.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 116, + "endOffset": 167 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-es/values-es.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 116, + "endOffset": 167 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 172, + "endColumn": 107, + "endOffset": 275 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-es/values-es.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 172, + "endColumn": 107, + "endOffset": 275 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 280, + "endColumn": 122, + "endOffset": 398 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-es/values-es.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 280, + "endColumn": 122, + "endOffset": 398 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 403, + "endColumn": 112, + "endOffset": 511 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-es/values-es.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 403, + "endColumn": 112, + "endOffset": 511 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 516, + "endColumn": 107, + "endOffset": 619 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-es/values-es.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 516, + "endColumn": 107, + "endOffset": 619 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 624, + "endColumn": 84, + "endOffset": 704 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-es/values-es.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 624, + "endColumn": 84, + "endOffset": 704 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 709, + "endColumn": 100, + "endOffset": 805 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-es/values-es.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 709, + "endColumn": 100, + "endOffset": 805 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 810, + "endColumn": 127, + "endOffset": 933 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-es/values-es.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 810, + "endColumn": 127, + "endOffset": 933 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 938, + "endColumn": 75, + "endOffset": 1009 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-es/values-es.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 938, + "endColumn": 75, + "endOffset": 1009 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1014, + "endColumn": 75, + "endOffset": 1085 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-es/values-es.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1014, + "endColumn": 75, + "endOffset": 1085 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1090, + "endColumn": 81, + "endOffset": 1167 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-es/values-es.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1090, + "endColumn": 81, + "endOffset": 1167 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1172, + "endColumn": 106, + "endOffset": 1274 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-es/values-es.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1172, + "endColumn": 106, + "endOffset": 1274 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1279, + "endColumn": 99, + "endOffset": 1374 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-es/values-es.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1279, + "endColumn": 99, + "endOffset": 1374 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1379, + "endColumn": 98, + "endOffset": 1473 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-es/values-es.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1379, + "endColumn": 98, + "endOffset": 1473 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1478, + "endColumn": 107, + "endOffset": 1581 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-es/values-es.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1478, + "endColumn": 107, + "endOffset": 1581 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1586, + "endColumn": 106, + "endOffset": 1688 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-es/values-es.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1586, + "endColumn": 106, + "endOffset": 1688 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1693, + "endColumn": 106, + "endOffset": 1795 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-es/values-es.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1693, + "endColumn": 106, + "endOffset": 1795 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1800, + "endColumn": 121, + "endOffset": 1917 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-es/values-es.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1800, + "endColumn": 121, + "endOffset": 1917 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1922, + "endColumn": 99, + "endOffset": 2017 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-es/values-es.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1922, + "endColumn": 99, + "endOffset": 2017 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2022, + "endColumn": 54, + "endOffset": 2072 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-es/strings.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 811, + "endColumn": 54, + "endOffset": 861 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2077, + "endColumn": 50, + "endOffset": 2123 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-es/strings.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 760, + "endColumn": 50, + "endOffset": 806 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2128, + "endColumn": 50, + "endOffset": 2174 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-es/strings.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 326, + "endColumn": 50, + "endOffset": 372 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2179, + "endColumn": 50, + "endOffset": 2225 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-es/strings.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 275, + "endColumn": 50, + "endOffset": 321 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2230, + "endColumn": 47, + "endOffset": 2273 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-es/strings.xml", + "position": { + "startLine": 62, + "startColumn": 4, + "startOffset": 4972, + "endColumn": 47, + "endOffset": 5015 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2278, + "endColumn": 68, + "endOffset": 2342 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-es/strings.xml", + "position": { + "startLine": 49, + "startColumn": 4, + "startOffset": 3705, + "endColumn": 68, + "endOffset": 3769 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 2347, + "endColumn": 50, + "endOffset": 2393 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-es/strings.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1032, + "endColumn": 50, + "endOffset": 1078 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 2398, + "endColumn": 48, + "endOffset": 2442 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-es/strings.xml", + "position": { + "startLine": 45, + "startColumn": 4, + "startOffset": 3382, + "endColumn": 48, + "endOffset": 3426 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 2447, + "endColumn": 40, + "endOffset": 2483 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-es/strings.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 550, + "endColumn": 40, + "endOffset": 586 + } + } + }, + { + "to": { + "startLine": 30, + "startColumn": 4, + "startOffset": 2488, + "endColumn": 41, + "endOffset": 2525 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-es/strings.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 508, + "endColumn": 41, + "endOffset": 545 + } + } + }, + { + "to": { + "startLine": 31, + "startColumn": 4, + "startOffset": 2530, + "endColumn": 54, + "endOffset": 2580 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-es/strings.xml", + "position": { + "startLine": 1, + "startColumn": 4, + "startOffset": 16, + "endColumn": 54, + "endOffset": 66 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 2585, + "endColumn": 162, + "endOffset": 2743 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-es/strings.xml", + "position": { + "startLine": 46, + "startColumn": 4, + "startOffset": 3431, + "endColumn": 162, + "endOffset": 3589 + } + } + }, + { + "to": { + "startLine": 33, + "startColumn": 4, + "startOffset": 2748, + "endColumn": 52, + "endOffset": 2796 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-es/strings.xml", + "position": { + "startLine": 25, + "startColumn": 4, + "startOffset": 1435, + "endColumn": 52, + "endOffset": 1483 + } + } + }, + { + "to": { + "startLine": 34, + "startColumn": 4, + "startOffset": 2801, + "endColumn": 67, + "endOffset": 2864 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-es/strings.xml", + "position": { + "startLine": 33, + "startColumn": 4, + "startOffset": 2026, + "endColumn": 67, + "endOffset": 2089 + } + } + }, + { + "to": { + "startLine": 35, + "startColumn": 4, + "startOffset": 2869, + "endColumn": 162, + "endOffset": 3027 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-es/strings.xml", + "position": { + "startLine": 34, + "startColumn": 4, + "startOffset": 2094, + "endColumn": 162, + "endOffset": 2252 + } + } + }, + { + "to": { + "startLine": 36, + "startColumn": 4, + "startOffset": 3032, + "endColumn": 63, + "endOffset": 3091 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-es/strings.xml", + "position": { + "startLine": 32, + "startColumn": 4, + "startOffset": 1962, + "endColumn": 63, + "endOffset": 2021 + } + } + }, + { + "to": { + "startLine": 37, + "startColumn": 4, + "startOffset": 3096, + "endColumn": 80, + "endOffset": 3172 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-es/strings.xml", + "position": { + "startLine": 58, + "startColumn": 4, + "startOffset": 4666, + "endColumn": 80, + "endOffset": 4742 + } + } + }, + { + "to": { + "startLine": 38, + "startColumn": 4, + "startOffset": 3177, + "endColumn": 56, + "endOffset": 3229 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-es/strings.xml", + "position": { + "startLine": 37, + "startColumn": 4, + "startOffset": 2551, + "endColumn": 56, + "endOffset": 2603 + } + } + }, + { + "to": { + "startLine": 39, + "startColumn": 4, + "startOffset": 3234, + "endColumn": 148, + "endOffset": 3378 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-es/strings.xml", + "position": { + "startLine": 38, + "startColumn": 4, + "startOffset": 2608, + "endColumn": 148, + "endOffset": 2752 + } + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 3383, + "endColumn": 54, + "endOffset": 3433 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-es/strings.xml", + "position": { + "startLine": 24, + "startColumn": 4, + "startOffset": 1368, + "endColumn": 66, + "endOffset": 1430 + } + } + }, + { + "to": { + "startLine": 41, + "startColumn": 4, + "startOffset": 3438, + "endColumn": 53, + "endOffset": 3487 + }, + "from": { + "file": "/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/values-es/values-es.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 53, + "endOffset": 104 + } + } + }, + { + "to": { + "startLine": 42, + "startColumn": 4, + "startOffset": 3492, + "endColumn": 76, + "endOffset": 3564 + }, + "from": { + "file": "/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/values-es/values-es.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 109, + "endColumn": 76, + "endOffset": 181 + } + } + }, + { + "to": { + "startLine": 43, + "startColumn": 4, + "startOffset": 3569, + "endColumn": 78, + "endOffset": 3643 + }, + "from": { + "file": "/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/values-es/values-es.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 186, + "endColumn": 78, + "endOffset": 260 + } + } + }, + { + "to": { + "startLine": 44, + "startColumn": 4, + "startOffset": 3648, + "endColumn": 70, + "endOffset": 3714 + }, + "from": { + "file": "/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/values-es/values-es.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 265, + "endColumn": 70, + "endOffset": 331 + } + } + }, + { + "to": { + "startLine": 45, + "startColumn": 4, + "startOffset": 3719, + "endColumn": 59, + "endOffset": 3774 + }, + "from": { + "file": "/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/values-es/values-es.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 336, + "endColumn": 59, + "endOffset": 391 + } + } + }, + { + "to": { + "startLine": 46, + "startColumn": 4, + "startOffset": 3779, + "endColumn": 55, + "endOffset": 3830 + }, + "from": { + "file": "/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/values-es/values-es.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 396, + "endColumn": 55, + "endOffset": 447 + } + } + }, + { + "to": { + "startLine": 47, + "startColumn": 4, + "startOffset": 3835, + "endColumn": 58, + "endOffset": 3889 + }, + "from": { + "file": "/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/values-es/values-es.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 452, + "endColumn": 58, + "endOffset": 506 + } + } + }, + { + "to": { + "startLine": 48, + "startColumn": 4, + "startOffset": 3894, + "endColumn": 73, + "endOffset": 3963 + }, + "from": { + "file": "/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/values-es/values-es.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 511, + "endColumn": 73, + "endOffset": 580 + } + } + }, + { + "to": { + "startLine": 49, + "startColumn": 4, + "startOffset": 3968, + "endColumn": 48, + "endOffset": 4012 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-es/strings.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 1319, + "endColumn": 48, + "endOffset": 1363 + } + } + }, + { + "to": { + "startLine": 50, + "startColumn": 4, + "startOffset": 4017, + "endColumn": 102, + "endOffset": 4115 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-es/strings.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 591, + "endColumn": 102, + "endOffset": 689 + } + } + }, + { + "to": { + "startLine": 51, + "startColumn": 4, + "startOffset": 4120, + "endColumn": 78, + "endOffset": 4194 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-es/strings.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 429, + "endColumn": 78, + "endOffset": 503 + } + } + }, + { + "to": { + "startLine": 52, + "startColumn": 4, + "startOffset": 4199, + "endColumn": 98, + "endOffset": 4293 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-es/strings.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 933, + "endColumn": 98, + "endOffset": 1027 + } + } + }, + { + "to": { + "startLine": 53, + "startColumn": 4, + "startOffset": 4298, + "endColumn": 51, + "endOffset": 4345 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-es/strings.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 377, + "endColumn": 51, + "endOffset": 424 + } + } + }, + { + "to": { + "startLine": 54, + "startColumn": 4, + "startOffset": 4350, + "endColumn": 49, + "endOffset": 4395 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-es/strings.xml", + "position": { + "startLine": 53, + "startColumn": 4, + "startOffset": 4236, + "endColumn": 49, + "endOffset": 4281 + } + } + }, + { + "to": { + "startLine": 55, + "startColumn": 4, + "startOffset": 4400, + "endColumn": 160, + "endOffset": 4556 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-es/strings.xml", + "position": { + "startLine": 54, + "startColumn": 4, + "startOffset": 4286, + "endColumn": 160, + "endOffset": 4442 + } + } + }, + { + "to": { + "startLine": 56, + "startColumn": 4, + "startOffset": 4561, + "endColumn": 51, + "endOffset": 4608 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-es/strings.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1083, + "endColumn": 51, + "endOffset": 1130 + } + } + }, + { + "to": { + "startLine": 57, + "startColumn": 4, + "startOffset": 4613, + "endColumn": 73, + "endOffset": 4682 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-es/strings.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1135, + "endColumn": 73, + "endOffset": 1204 + } + } + }, + { + "to": { + "startLine": 58, + "startColumn": 4, + "startOffset": 4687, + "endColumn": 83, + "endOffset": 4766 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-es/strings.xml", + "position": { + "startLine": 57, + "startColumn": 4, + "startOffset": 4582, + "endColumn": 83, + "endOffset": 4661 + } + } + }, + { + "to": { + "startLine": 59, + "startColumn": 4, + "startOffset": 4771, + "endColumn": 74, + "endOffset": 4841 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-es/strings.xml", + "position": { + "startLine": 61, + "startColumn": 4, + "startOffset": 4897, + "endColumn": 74, + "endOffset": 4967 + } + } + }, + { + "to": { + "startLine": 60, + "startColumn": 4, + "startOffset": 4846, + "endColumn": 70, + "endOffset": 4912 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-es/strings.xml", + "position": { + "startLine": 60, + "startColumn": 4, + "startOffset": 4826, + "endColumn": 70, + "endOffset": 4892 + } + } + }, + { + "to": { + "startLine": 61, + "startColumn": 4, + "startOffset": 4917, + "endColumn": 61, + "endOffset": 4974 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-es/strings.xml", + "position": { + "startLine": 51, + "startColumn": 4, + "startOffset": 3957, + "endColumn": 61, + "endOffset": 4014 + } + } + }, + { + "to": { + "startLine": 62, + "startColumn": 4, + "startOffset": 4979, + "endColumn": 216, + "endOffset": 5191 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-es/strings.xml", + "position": { + "startLine": 52, + "startColumn": 4, + "startOffset": 4019, + "endColumn": 216, + "endOffset": 4231 + } + } + }, + { + "to": { + "startLine": 63, + "startColumn": 4, + "startOffset": 5196, + "endColumn": 59, + "endOffset": 5251 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-es/strings.xml", + "position": { + "startLine": 48, + "startColumn": 4, + "startOffset": 3645, + "endColumn": 59, + "endOffset": 3700 + } + } + }, + { + "to": { + "startLine": 64, + "startColumn": 4, + "startOffset": 5256, + "endColumn": 50, + "endOffset": 5302 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-es/strings.xml", + "position": { + "startLine": 47, + "startColumn": 4, + "startOffset": 3594, + "endColumn": 50, + "endOffset": 3640 + } + } + }, + { + "to": { + "startLine": 65, + "startColumn": 4, + "startOffset": 5307, + "endColumn": 62, + "endOffset": 5365 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-es/strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 212, + "endColumn": 62, + "endOffset": 270 + } + } + }, + { + "to": { + "startLine": 66, + "startColumn": 4, + "startOffset": 5370, + "endColumn": 66, + "endOffset": 5432 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-es/strings.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 866, + "endColumn": 66, + "endOffset": 928 + } + } + }, + { + "to": { + "startLine": 67, + "startColumn": 4, + "startOffset": 5437, + "endColumn": 50, + "endOffset": 5483 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-es/strings.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 1488, + "endColumn": 50, + "endOffset": 1534 + } + } + }, + { + "to": { + "startLine": 68, + "startColumn": 4, + "startOffset": 5488, + "endColumn": 70, + "endOffset": 5554 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-es/strings.xml", + "position": { + "startLine": 35, + "startColumn": 4, + "startOffset": 2257, + "endColumn": 70, + "endOffset": 2323 + } + } + }, + { + "to": { + "startLine": 69, + "startColumn": 4, + "startOffset": 5559, + "endColumn": 222, + "endOffset": 5777 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-es/strings.xml", + "position": { + "startLine": 36, + "startColumn": 4, + "startOffset": 2328, + "endColumn": 222, + "endOffset": 2546 + } + } + }, + { + "to": { + "startLine": 70, + "startColumn": 4, + "startOffset": 5782, + "endColumn": 182, + "endOffset": 5960 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-es/strings.xml", + "position": { + "startLine": 50, + "startColumn": 4, + "startOffset": 3774, + "endColumn": 182, + "endOffset": 3952 + } + } + }, + { + "to": { + "startLine": 71, + "startColumn": 4, + "startOffset": 5965, + "endColumn": 78, + "endOffset": 6039 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-es/strings.xml", + "position": { + "startLine": 59, + "startColumn": 4, + "startOffset": 4747, + "endColumn": 78, + "endOffset": 4821 + } + } + }, + { + "to": { + "startLine": 72, + "startColumn": 4, + "startOffset": 6044, + "endColumn": 109, + "endOffset": 6149 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-es/strings.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 1209, + "endColumn": 109, + "endOffset": 1314 + } + } + }, + { + "to": { + "startLine": 73, + "startColumn": 4, + "startOffset": 6154, + "endColumn": 55, + "endOffset": 6205 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-es/strings.xml", + "position": { + "startLine": 41, + "startColumn": 4, + "startOffset": 2954, + "endColumn": 55, + "endOffset": 3005 + } + } + }, + { + "to": { + "startLine": 74, + "startColumn": 4, + "startOffset": 6210, + "endColumn": 85, + "endOffset": 6291 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-es/strings.xml", + "position": { + "startLine": 42, + "startColumn": 4, + "startOffset": 3010, + "endColumn": 85, + "endOffset": 3091 + } + } + }, + { + "to": { + "startLine": 75, + "startColumn": 4, + "startOffset": 6296, + "endColumn": 50, + "endOffset": 6342 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-es/strings.xml", + "position": { + "startLine": 31, + "startColumn": 4, + "startOffset": 1911, + "endColumn": 50, + "endOffset": 1957 + } + } + }, + { + "to": { + "startLine": 76, + "startColumn": 4, + "startOffset": 6347, + "endColumn": 63, + "endOffset": 6406 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-es/strings.xml", + "position": { + "startLine": 27, + "startColumn": 4, + "startOffset": 1539, + "endColumn": 63, + "endOffset": 1598 + } + } + }, + { + "to": { + "startLine": 77, + "startColumn": 4, + "startOffset": 6411, + "endColumn": 147, + "endOffset": 6554 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-es/strings.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 1668, + "endColumn": 147, + "endOffset": 1811 + } + } + }, + { + "to": { + "startLine": 78, + "startColumn": 4, + "startOffset": 6559, + "endColumn": 94, + "endOffset": 6649 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-es/strings.xml", + "position": { + "startLine": 30, + "startColumn": 4, + "startOffset": 1816, + "endColumn": 94, + "endOffset": 1906 + } + } + }, + { + "to": { + "startLine": 79, + "startColumn": 4, + "startOffset": 6654, + "endColumn": 64, + "endOffset": 6714 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-es/strings.xml", + "position": { + "startLine": 28, + "startColumn": 4, + "startOffset": 1603, + "endColumn": 64, + "endOffset": 1663 + } + } + }, + { + "to": { + "startLine": 80, + "startColumn": 4, + "startOffset": 6719, + "endColumn": 65, + "endOffset": 6780 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-es/strings.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 694, + "endColumn": 65, + "endOffset": 755 + } + } + }, + { + "to": { + "startLine": 81, + "startColumn": 4, + "startOffset": 6785, + "endColumn": 219, + "endOffset": 7000 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-es/strings.xml", + "position": { + "startLine": 44, + "startColumn": 4, + "startOffset": 3162, + "endColumn": 219, + "endOffset": 3377 + } + } + }, + { + "to": { + "startLine": 82, + "startColumn": 4, + "startOffset": 7005, + "endColumn": 65, + "endOffset": 7066 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-es/strings.xml", + "position": { + "startLine": 43, + "startColumn": 4, + "startOffset": 3096, + "endColumn": 65, + "endOffset": 3157 + } + } + }, + { + "to": { + "startLine": 83, + "startColumn": 4, + "startOffset": 7071, + "endColumn": 100, + "endOffset": 7167 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-es/values-es.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2022, + "endColumn": 100, + "endOffset": 2118 + } + } + }, + { + "to": { + "startLine": 84, + "startColumn": 4, + "startOffset": 7172, + "endColumn": 68, + "endOffset": 7236 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-es/strings.xml", + "position": { + "startLine": 63, + "startColumn": 4, + "startOffset": 5020, + "endColumn": 68, + "endOffset": 5084 + } + } + }, + { + "to": { + "startLine": 85, + "startColumn": 4, + "startOffset": 7241, + "endColumn": 110, + "endOffset": 7347 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-es/strings.xml", + "position": { + "startLine": 64, + "startColumn": 4, + "startOffset": 5089, + "endColumn": 110, + "endOffset": 5195 + } + } + }, + { + "to": { + "startLine": 86, + "startColumn": 4, + "startOffset": 7352, + "endColumn": 54, + "endOffset": 7402 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-es/strings.xml", + "position": { + "startLine": 55, + "startColumn": 4, + "startOffset": 4447, + "endColumn": 54, + "endOffset": 4497 + } + } + }, + { + "to": { + "startLine": 87, + "startColumn": 4, + "startOffset": 7407, + "endColumn": 79, + "endOffset": 7482 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-es/strings.xml", + "position": { + "startLine": 56, + "startColumn": 4, + "startOffset": 4502, + "endColumn": 79, + "endOffset": 4577 + } + } + }, + { + "to": { + "startLine": 88, + "startColumn": 4, + "startOffset": 7487, + "endColumn": 79, + "endOffset": 7562 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-es/strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 132, + "endColumn": 79, + "endOffset": 207 + } + } + }, + { + "to": { + "startLine": 89, + "startColumn": 4, + "startOffset": 7567, + "endColumn": 58, + "endOffset": 7621 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-es/strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 72, + "endColumn": 58, + "endOffset": 126 + } + } + }, + { + "to": { + "startLine": 90, + "startColumn": 4, + "startOffset": 7626, + "endColumn": 59, + "endOffset": 7681 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-es/strings.xml", + "position": { + "startLine": 39, + "startColumn": 4, + "startOffset": 2757, + "endColumn": 59, + "endOffset": 2812 + } + } + }, + { + "to": { + "startLine": 91, + "startColumn": 4, + "startOffset": 7686, + "endColumn": 136, + "endOffset": 7818 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-es/strings.xml", + "position": { + "startLine": 40, + "startColumn": 4, + "startOffset": 2817, + "endColumn": 136, + "endOffset": 2949 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/multi/values-et-rEE.json b/android/build/intermediates/blame/res/debug/multi/values-et-rEE.json new file mode 100644 index 000000000..372b3a385 --- /dev/null +++ b/android/build/intermediates/blame/res/debug/multi/values-et-rEE.json @@ -0,0 +1,387 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-et-rEE/values-et-rEE.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 116, + "endOffset": 167 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-et-rEE/values-et-rEE.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 116, + "endOffset": 167 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 172, + "endColumn": 107, + "endOffset": 275 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-et-rEE/values-et-rEE.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 172, + "endColumn": 107, + "endOffset": 275 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 280, + "endColumn": 122, + "endOffset": 398 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-et-rEE/values-et-rEE.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 280, + "endColumn": 122, + "endOffset": 398 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 403, + "endColumn": 106, + "endOffset": 505 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-et-rEE/values-et-rEE.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 403, + "endColumn": 106, + "endOffset": 505 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 510, + "endColumn": 110, + "endOffset": 616 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-et-rEE/values-et-rEE.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 510, + "endColumn": 110, + "endOffset": 616 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 621, + "endColumn": 85, + "endOffset": 702 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-et-rEE/values-et-rEE.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 621, + "endColumn": 85, + "endOffset": 702 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 707, + "endColumn": 101, + "endOffset": 804 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-et-rEE/values-et-rEE.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 707, + "endColumn": 101, + "endOffset": 804 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 809, + "endColumn": 116, + "endOffset": 921 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-et-rEE/values-et-rEE.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 809, + "endColumn": 116, + "endOffset": 921 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 926, + "endColumn": 79, + "endOffset": 1001 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-et-rEE/values-et-rEE.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 926, + "endColumn": 79, + "endOffset": 1001 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1006, + "endColumn": 77, + "endOffset": 1079 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-et-rEE/values-et-rEE.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1006, + "endColumn": 77, + "endOffset": 1079 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1084, + "endColumn": 82, + "endOffset": 1162 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-et-rEE/values-et-rEE.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1084, + "endColumn": 82, + "endOffset": 1162 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1167, + "endColumn": 110, + "endOffset": 1273 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-et-rEE/values-et-rEE.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1167, + "endColumn": 110, + "endOffset": 1273 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1278, + "endColumn": 104, + "endOffset": 1378 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-et-rEE/values-et-rEE.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1278, + "endColumn": 104, + "endOffset": 1378 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1383, + "endColumn": 98, + "endOffset": 1477 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-et-rEE/values-et-rEE.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1383, + "endColumn": 98, + "endOffset": 1477 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1482, + "endColumn": 109, + "endOffset": 1587 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-et-rEE/values-et-rEE.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1482, + "endColumn": 109, + "endOffset": 1587 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1592, + "endColumn": 100, + "endOffset": 1688 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-et-rEE/values-et-rEE.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1592, + "endColumn": 100, + "endOffset": 1688 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1693, + "endColumn": 102, + "endOffset": 1791 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-et-rEE/values-et-rEE.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1693, + "endColumn": 102, + "endOffset": 1791 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1796, + "endColumn": 127, + "endOffset": 1919 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-et-rEE/values-et-rEE.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1796, + "endColumn": 127, + "endOffset": 1919 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1924, + "endColumn": 101, + "endOffset": 2021 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-et-rEE/values-et-rEE.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1924, + "endColumn": 101, + "endOffset": 2021 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2026, + "endColumn": 100, + "endOffset": 2122 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-et-rEE/values-et-rEE.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2026, + "endColumn": 100, + "endOffset": 2122 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/multi/values-eu-rES.json b/android/build/intermediates/blame/res/debug/multi/values-eu-rES.json new file mode 100644 index 000000000..7c85aaec3 --- /dev/null +++ b/android/build/intermediates/blame/res/debug/multi/values-eu-rES.json @@ -0,0 +1,387 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-eu-rES/values-eu-rES.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 108, + "endOffset": 159 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-eu-rES/values-eu-rES.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 108, + "endOffset": 159 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 164, + "endColumn": 107, + "endOffset": 267 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-eu-rES/values-eu-rES.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 164, + "endColumn": 107, + "endOffset": 267 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 272, + "endColumn": 122, + "endOffset": 390 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-eu-rES/values-eu-rES.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 272, + "endColumn": 122, + "endOffset": 390 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 395, + "endColumn": 97, + "endOffset": 488 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-eu-rES/values-eu-rES.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 395, + "endColumn": 97, + "endOffset": 488 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 493, + "endColumn": 109, + "endOffset": 598 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-eu-rES/values-eu-rES.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 493, + "endColumn": 109, + "endOffset": 598 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 603, + "endColumn": 85, + "endOffset": 684 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-eu-rES/values-eu-rES.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 603, + "endColumn": 85, + "endOffset": 684 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 689, + "endColumn": 105, + "endOffset": 790 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-eu-rES/values-eu-rES.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 689, + "endColumn": 105, + "endOffset": 790 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 795, + "endColumn": 123, + "endOffset": 914 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-eu-rES/values-eu-rES.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 795, + "endColumn": 123, + "endOffset": 914 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 919, + "endColumn": 86, + "endOffset": 1001 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-eu-rES/values-eu-rES.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 919, + "endColumn": 86, + "endOffset": 1001 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1006, + "endColumn": 83, + "endOffset": 1085 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-eu-rES/values-eu-rES.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1006, + "endColumn": 83, + "endOffset": 1085 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1090, + "endColumn": 81, + "endOffset": 1167 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-eu-rES/values-eu-rES.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1090, + "endColumn": 81, + "endOffset": 1167 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1172, + "endColumn": 108, + "endOffset": 1276 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-eu-rES/values-eu-rES.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1172, + "endColumn": 108, + "endOffset": 1276 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1281, + "endColumn": 109, + "endOffset": 1386 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-eu-rES/values-eu-rES.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1281, + "endColumn": 109, + "endOffset": 1386 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1391, + "endColumn": 98, + "endOffset": 1485 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-eu-rES/values-eu-rES.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1391, + "endColumn": 98, + "endOffset": 1485 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1490, + "endColumn": 108, + "endOffset": 1594 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-eu-rES/values-eu-rES.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1490, + "endColumn": 108, + "endOffset": 1594 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1599, + "endColumn": 112, + "endOffset": 1707 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-eu-rES/values-eu-rES.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1599, + "endColumn": 112, + "endOffset": 1707 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1712, + "endColumn": 110, + "endOffset": 1818 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-eu-rES/values-eu-rES.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1712, + "endColumn": 110, + "endOffset": 1818 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1823, + "endColumn": 136, + "endOffset": 1955 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-eu-rES/values-eu-rES.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1823, + "endColumn": 136, + "endOffset": 1955 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1960, + "endColumn": 98, + "endOffset": 2054 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-eu-rES/values-eu-rES.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1960, + "endColumn": 98, + "endOffset": 2054 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2059, + "endColumn": 100, + "endOffset": 2155 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-eu-rES/values-eu-rES.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2059, + "endColumn": 100, + "endOffset": 2155 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/multi/values-fa.json b/android/build/intermediates/blame/res/debug/multi/values-fa.json new file mode 100644 index 000000000..3e12616c1 --- /dev/null +++ b/android/build/intermediates/blame/res/debug/multi/values-fa.json @@ -0,0 +1,387 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fa/values-fa.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 109, + "endOffset": 160 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fa/values-fa.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 109, + "endOffset": 160 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 165, + "endColumn": 109, + "endOffset": 270 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fa/values-fa.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 165, + "endColumn": 109, + "endOffset": 270 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 275, + "endColumn": 125, + "endOffset": 396 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fa/values-fa.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 275, + "endColumn": 125, + "endOffset": 396 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 401, + "endColumn": 102, + "endOffset": 499 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fa/values-fa.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 401, + "endColumn": 102, + "endOffset": 499 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 504, + "endColumn": 110, + "endOffset": 610 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fa/values-fa.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 504, + "endColumn": 110, + "endOffset": 610 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 615, + "endColumn": 83, + "endOffset": 694 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fa/values-fa.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 615, + "endColumn": 83, + "endOffset": 694 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 699, + "endColumn": 102, + "endOffset": 797 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fa/values-fa.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 699, + "endColumn": 102, + "endOffset": 797 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 802, + "endColumn": 114, + "endOffset": 912 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fa/values-fa.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 802, + "endColumn": 114, + "endOffset": 912 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 917, + "endColumn": 78, + "endOffset": 991 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fa/values-fa.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 917, + "endColumn": 78, + "endOffset": 991 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 996, + "endColumn": 77, + "endOffset": 1069 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fa/values-fa.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 996, + "endColumn": 77, + "endOffset": 1069 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1074, + "endColumn": 80, + "endOffset": 1150 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fa/values-fa.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1074, + "endColumn": 80, + "endOffset": 1150 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1155, + "endColumn": 111, + "endOffset": 1262 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fa/values-fa.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1155, + "endColumn": 111, + "endOffset": 1262 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1267, + "endColumn": 102, + "endOffset": 1365 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fa/values-fa.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1267, + "endColumn": 102, + "endOffset": 1365 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1370, + "endColumn": 97, + "endOffset": 1463 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fa/values-fa.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1370, + "endColumn": 97, + "endOffset": 1463 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1468, + "endColumn": 109, + "endOffset": 1573 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fa/values-fa.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1468, + "endColumn": 109, + "endOffset": 1573 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1578, + "endColumn": 102, + "endOffset": 1676 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fa/values-fa.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1578, + "endColumn": 102, + "endOffset": 1676 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1681, + "endColumn": 108, + "endOffset": 1785 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fa/values-fa.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1681, + "endColumn": 108, + "endOffset": 1785 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1790, + "endColumn": 124, + "endOffset": 1910 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fa/values-fa.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1790, + "endColumn": 124, + "endOffset": 1910 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1915, + "endColumn": 100, + "endOffset": 2011 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fa/values-fa.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1915, + "endColumn": 100, + "endOffset": 2011 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2016, + "endColumn": 100, + "endOffset": 2112 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fa/values-fa.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2016, + "endColumn": 100, + "endOffset": 2112 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/multi/values-fb-rLL.json b/android/build/intermediates/blame/res/debug/multi/values-fb-rLL.json new file mode 100644 index 000000000..632d84c07 --- /dev/null +++ b/android/build/intermediates/blame/res/debug/multi/values-fb-rLL.json @@ -0,0 +1,159 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fb-rLL/values-fb-rLL.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 53, + "endOffset": 104 + }, + "from": { + "file": "/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/values-fb-rLL/values-fb-rLL.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 53, + "endOffset": 104 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 109, + "endColumn": 80, + "endOffset": 185 + }, + "from": { + "file": "/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/values-fb-rLL/values-fb-rLL.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 109, + "endColumn": 80, + "endOffset": 185 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 190, + "endColumn": 78, + "endOffset": 264 + }, + "from": { + "file": "/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/values-fb-rLL/values-fb-rLL.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 190, + "endColumn": 78, + "endOffset": 264 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 269, + "endColumn": 70, + "endOffset": 335 + }, + "from": { + "file": "/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/values-fb-rLL/values-fb-rLL.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 269, + "endColumn": 70, + "endOffset": 335 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 340, + "endColumn": 78, + "endOffset": 414 + }, + "from": { + "file": "/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/values-fb-rLL/values-fb-rLL.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 340, + "endColumn": 78, + "endOffset": 414 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 419, + "endColumn": 55, + "endOffset": 470 + }, + "from": { + "file": "/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/values-fb-rLL/values-fb-rLL.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 419, + "endColumn": 55, + "endOffset": 470 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 475, + "endColumn": 58, + "endOffset": 529 + }, + "from": { + "file": "/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/values-fb-rLL/values-fb-rLL.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 475, + "endColumn": 58, + "endOffset": 529 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 534, + "endColumn": 73, + "endOffset": 603 + }, + "from": { + "file": "/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/values-fb-rLL/values-fb-rLL.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 534, + "endColumn": 73, + "endOffset": 603 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/multi/values-fb.json b/android/build/intermediates/blame/res/debug/multi/values-fb.json new file mode 100644 index 000000000..61a5eb26c --- /dev/null +++ b/android/build/intermediates/blame/res/debug/multi/values-fb.json @@ -0,0 +1,159 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fb/values-fb.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 90, + "endOffset": 141 + }, + "from": { + "file": "/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/values-fb/values-fb.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 90, + "endOffset": 141 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 146, + "endColumn": 106, + "endOffset": 248 + }, + "from": { + "file": "/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/values-fb/values-fb.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 146, + "endColumn": 106, + "endOffset": 248 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 253, + "endColumn": 115, + "endOffset": 364 + }, + "from": { + "file": "/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/values-fb/values-fb.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 253, + "endColumn": 115, + "endOffset": 364 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 369, + "endColumn": 107, + "endOffset": 472 + }, + "from": { + "file": "/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/values-fb/values-fb.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 369, + "endColumn": 107, + "endOffset": 472 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 477, + "endColumn": 101, + "endOffset": 574 + }, + "from": { + "file": "/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/values-fb/values-fb.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 477, + "endColumn": 101, + "endOffset": 574 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 579, + "endColumn": 92, + "endOffset": 667 + }, + "from": { + "file": "/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/values-fb/values-fb.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 579, + "endColumn": 92, + "endOffset": 667 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 672, + "endColumn": 95, + "endOffset": 763 + }, + "from": { + "file": "/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/values-fb/values-fb.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 672, + "endColumn": 95, + "endOffset": 763 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 768, + "endColumn": 110, + "endOffset": 874 + }, + "from": { + "file": "/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/values-fb/values-fb.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 768, + "endColumn": 110, + "endOffset": 874 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/multi/values-fi.json b/android/build/intermediates/blame/res/debug/multi/values-fi.json new file mode 100644 index 000000000..2ae7ed512 --- /dev/null +++ b/android/build/intermediates/blame/res/debug/multi/values-fi.json @@ -0,0 +1,539 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fi/values-fi.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 107, + "endOffset": 158 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fi/values-fi.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 107, + "endOffset": 158 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 163, + "endColumn": 107, + "endOffset": 266 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fi/values-fi.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 163, + "endColumn": 107, + "endOffset": 266 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 271, + "endColumn": 122, + "endOffset": 389 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fi/values-fi.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 271, + "endColumn": 122, + "endOffset": 389 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 394, + "endColumn": 99, + "endOffset": 489 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fi/values-fi.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 394, + "endColumn": 99, + "endOffset": 489 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 494, + "endColumn": 100, + "endOffset": 590 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fi/values-fi.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 494, + "endColumn": 100, + "endOffset": 590 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 595, + "endColumn": 85, + "endOffset": 676 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fi/values-fi.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 595, + "endColumn": 85, + "endOffset": 676 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 681, + "endColumn": 104, + "endOffset": 781 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fi/values-fi.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 681, + "endColumn": 104, + "endOffset": 781 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 786, + "endColumn": 117, + "endOffset": 899 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fi/values-fi.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 786, + "endColumn": 117, + "endOffset": 899 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 904, + "endColumn": 86, + "endOffset": 986 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fi/values-fi.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 904, + "endColumn": 86, + "endOffset": 986 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 991, + "endColumn": 81, + "endOffset": 1068 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fi/values-fi.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 991, + "endColumn": 81, + "endOffset": 1068 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1073, + "endColumn": 79, + "endOffset": 1148 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fi/values-fi.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1073, + "endColumn": 79, + "endOffset": 1148 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1153, + "endColumn": 106, + "endOffset": 1255 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fi/values-fi.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1153, + "endColumn": 106, + "endOffset": 1255 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1260, + "endColumn": 102, + "endOffset": 1358 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fi/values-fi.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1260, + "endColumn": 102, + "endOffset": 1358 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1363, + "endColumn": 96, + "endOffset": 1455 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fi/values-fi.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1363, + "endColumn": 96, + "endOffset": 1455 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1460, + "endColumn": 105, + "endOffset": 1561 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fi/values-fi.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1460, + "endColumn": 105, + "endOffset": 1561 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1566, + "endColumn": 98, + "endOffset": 1660 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fi/values-fi.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1566, + "endColumn": 98, + "endOffset": 1660 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1665, + "endColumn": 103, + "endOffset": 1764 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fi/values-fi.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1665, + "endColumn": 103, + "endOffset": 1764 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1769, + "endColumn": 118, + "endOffset": 1883 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fi/values-fi.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1769, + "endColumn": 118, + "endOffset": 1883 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1888, + "endColumn": 98, + "endOffset": 1982 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fi/values-fi.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1888, + "endColumn": 98, + "endOffset": 1982 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1987, + "endColumn": 53, + "endOffset": 2036 + }, + "from": { + "file": "/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/values-fi/values-fi.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 53, + "endOffset": 104 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2041, + "endColumn": 73, + "endOffset": 2110 + }, + "from": { + "file": "/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/values-fi/values-fi.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 109, + "endColumn": 73, + "endOffset": 178 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2115, + "endColumn": 78, + "endOffset": 2189 + }, + "from": { + "file": "/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/values-fi/values-fi.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 183, + "endColumn": 78, + "endOffset": 257 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2194, + "endColumn": 70, + "endOffset": 2260 + }, + "from": { + "file": "/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/values-fi/values-fi.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 262, + "endColumn": 70, + "endOffset": 328 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2265, + "endColumn": 56, + "endOffset": 2317 + }, + "from": { + "file": "/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/values-fi/values-fi.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 333, + "endColumn": 56, + "endOffset": 385 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2322, + "endColumn": 55, + "endOffset": 2373 + }, + "from": { + "file": "/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/values-fi/values-fi.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 390, + "endColumn": 55, + "endOffset": 441 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 2378, + "endColumn": 58, + "endOffset": 2432 + }, + "from": { + "file": "/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/values-fi/values-fi.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 446, + "endColumn": 58, + "endOffset": 500 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 2437, + "endColumn": 73, + "endOffset": 2506 + }, + "from": { + "file": "/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/values-fi/values-fi.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 505, + "endColumn": 73, + "endOffset": 574 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 2511, + "endColumn": 100, + "endOffset": 2607 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fi/values-fi.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1987, + "endColumn": 100, + "endOffset": 2083 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/multi/values-fr-rCA.json b/android/build/intermediates/blame/res/debug/multi/values-fr-rCA.json new file mode 100644 index 000000000..64dcaf5bf --- /dev/null +++ b/android/build/intermediates/blame/res/debug/multi/values-fr-rCA.json @@ -0,0 +1,387 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fr-rCA/values-fr-rCA.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 110, + "endOffset": 161 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fr-rCA/values-fr-rCA.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 110, + "endOffset": 161 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 166, + "endColumn": 107, + "endOffset": 269 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fr-rCA/values-fr-rCA.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 166, + "endColumn": 107, + "endOffset": 269 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 274, + "endColumn": 122, + "endOffset": 392 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fr-rCA/values-fr-rCA.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 274, + "endColumn": 122, + "endOffset": 392 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 397, + "endColumn": 114, + "endOffset": 507 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fr-rCA/values-fr-rCA.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 397, + "endColumn": 114, + "endOffset": 507 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 512, + "endColumn": 110, + "endOffset": 618 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fr-rCA/values-fr-rCA.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 512, + "endColumn": 110, + "endOffset": 618 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 623, + "endColumn": 86, + "endOffset": 705 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fr-rCA/values-fr-rCA.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 623, + "endColumn": 86, + "endOffset": 705 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 710, + "endColumn": 115, + "endOffset": 821 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fr-rCA/values-fr-rCA.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 710, + "endColumn": 115, + "endOffset": 821 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 826, + "endColumn": 129, + "endOffset": 951 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fr-rCA/values-fr-rCA.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 826, + "endColumn": 129, + "endOffset": 951 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 956, + "endColumn": 82, + "endOffset": 1034 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fr-rCA/values-fr-rCA.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 956, + "endColumn": 82, + "endOffset": 1034 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1039, + "endColumn": 79, + "endOffset": 1114 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fr-rCA/values-fr-rCA.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1039, + "endColumn": 79, + "endOffset": 1114 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1119, + "endColumn": 95, + "endOffset": 1210 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fr-rCA/values-fr-rCA.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1119, + "endColumn": 95, + "endOffset": 1210 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1215, + "endColumn": 109, + "endOffset": 1320 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fr-rCA/values-fr-rCA.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1215, + "endColumn": 109, + "endOffset": 1320 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1325, + "endColumn": 111, + "endOffset": 1432 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fr-rCA/values-fr-rCA.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1325, + "endColumn": 111, + "endOffset": 1432 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1437, + "endColumn": 102, + "endOffset": 1535 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fr-rCA/values-fr-rCA.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1437, + "endColumn": 102, + "endOffset": 1535 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1540, + "endColumn": 110, + "endOffset": 1646 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fr-rCA/values-fr-rCA.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1540, + "endColumn": 110, + "endOffset": 1646 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1651, + "endColumn": 106, + "endOffset": 1753 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fr-rCA/values-fr-rCA.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1651, + "endColumn": 106, + "endOffset": 1753 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1758, + "endColumn": 101, + "endOffset": 1855 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fr-rCA/values-fr-rCA.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1758, + "endColumn": 101, + "endOffset": 1855 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1860, + "endColumn": 121, + "endOffset": 1977 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fr-rCA/values-fr-rCA.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1860, + "endColumn": 121, + "endOffset": 1977 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1982, + "endColumn": 98, + "endOffset": 2076 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fr-rCA/values-fr-rCA.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1982, + "endColumn": 98, + "endOffset": 2076 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2081, + "endColumn": 100, + "endOffset": 2177 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fr-rCA/values-fr-rCA.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2081, + "endColumn": 100, + "endOffset": 2177 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/multi/values-fr.json b/android/build/intermediates/blame/res/debug/multi/values-fr.json new file mode 100644 index 000000000..d3846a02a --- /dev/null +++ b/android/build/intermediates/blame/res/debug/multi/values-fr.json @@ -0,0 +1,1717 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fr/values-fr.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 110, + "endOffset": 161 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fr/values-fr.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 110, + "endOffset": 161 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 166, + "endColumn": 107, + "endOffset": 269 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fr/values-fr.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 166, + "endColumn": 107, + "endOffset": 269 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 274, + "endColumn": 122, + "endOffset": 392 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fr/values-fr.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 274, + "endColumn": 122, + "endOffset": 392 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 397, + "endColumn": 114, + "endOffset": 507 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fr/values-fr.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 397, + "endColumn": 114, + "endOffset": 507 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 512, + "endColumn": 110, + "endOffset": 618 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fr/values-fr.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 512, + "endColumn": 110, + "endOffset": 618 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 623, + "endColumn": 81, + "endOffset": 700 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fr/values-fr.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 623, + "endColumn": 81, + "endOffset": 700 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 705, + "endColumn": 105, + "endOffset": 806 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fr/values-fr.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 705, + "endColumn": 105, + "endOffset": 806 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 811, + "endColumn": 129, + "endOffset": 936 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fr/values-fr.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 811, + "endColumn": 129, + "endOffset": 936 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 941, + "endColumn": 82, + "endOffset": 1019 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fr/values-fr.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 941, + "endColumn": 82, + "endOffset": 1019 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1024, + "endColumn": 79, + "endOffset": 1099 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fr/values-fr.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1024, + "endColumn": 79, + "endOffset": 1099 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1104, + "endColumn": 85, + "endOffset": 1185 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fr/values-fr.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1104, + "endColumn": 85, + "endOffset": 1185 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1190, + "endColumn": 109, + "endOffset": 1295 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fr/values-fr.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1190, + "endColumn": 109, + "endOffset": 1295 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1300, + "endColumn": 111, + "endOffset": 1407 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fr/values-fr.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1300, + "endColumn": 111, + "endOffset": 1407 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1412, + "endColumn": 102, + "endOffset": 1510 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fr/values-fr.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1412, + "endColumn": 102, + "endOffset": 1510 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1515, + "endColumn": 110, + "endOffset": 1621 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fr/values-fr.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1515, + "endColumn": 110, + "endOffset": 1621 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1626, + "endColumn": 106, + "endOffset": 1728 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fr/values-fr.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1626, + "endColumn": 106, + "endOffset": 1728 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1733, + "endColumn": 106, + "endOffset": 1835 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fr/values-fr.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1733, + "endColumn": 106, + "endOffset": 1835 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1840, + "endColumn": 121, + "endOffset": 1957 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fr/values-fr.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1840, + "endColumn": 121, + "endOffset": 1957 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1962, + "endColumn": 98, + "endOffset": 2056 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fr/values-fr.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1962, + "endColumn": 98, + "endOffset": 2056 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2061, + "endColumn": 54, + "endOffset": 2111 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-fr/strings.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 824, + "endColumn": 54, + "endOffset": 874 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2116, + "endColumn": 49, + "endOffset": 2161 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-fr/strings.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 774, + "endColumn": 49, + "endOffset": 819 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2166, + "endColumn": 51, + "endOffset": 2213 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-fr/strings.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 328, + "endColumn": 51, + "endOffset": 375 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2218, + "endColumn": 49, + "endOffset": 2263 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-fr/strings.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 278, + "endColumn": 49, + "endOffset": 323 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2268, + "endColumn": 48, + "endOffset": 2312 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-fr/strings.xml", + "position": { + "startLine": 62, + "startColumn": 4, + "startOffset": 5303, + "endColumn": 48, + "endOffset": 5347 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2317, + "endColumn": 64, + "endOffset": 2377 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-fr/strings.xml", + "position": { + "startLine": 49, + "startColumn": 4, + "startOffset": 3952, + "endColumn": 64, + "endOffset": 4012 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 2382, + "endColumn": 49, + "endOffset": 2427 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-fr/strings.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1052, + "endColumn": 49, + "endOffset": 1097 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 2432, + "endColumn": 50, + "endOffset": 2478 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-fr/strings.xml", + "position": { + "startLine": 45, + "startColumn": 4, + "startOffset": 3619, + "endColumn": 50, + "endOffset": 3665 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 2483, + "endColumn": 41, + "endOffset": 2520 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-fr/strings.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 559, + "endColumn": 41, + "endOffset": 596 + } + } + }, + { + "to": { + "startLine": 30, + "startColumn": 4, + "startOffset": 2525, + "endColumn": 42, + "endOffset": 2563 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-fr/strings.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 516, + "endColumn": 42, + "endOffset": 554 + } + } + }, + { + "to": { + "startLine": 31, + "startColumn": 4, + "startOffset": 2568, + "endColumn": 54, + "endOffset": 2618 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-fr/strings.xml", + "position": { + "startLine": 1, + "startColumn": 4, + "startOffset": 16, + "endColumn": 54, + "endOffset": 66 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 2623, + "endColumn": 162, + "endOffset": 2781 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-fr/strings.xml", + "position": { + "startLine": 46, + "startColumn": 4, + "startOffset": 3670, + "endColumn": 162, + "endOffset": 3828 + } + } + }, + { + "to": { + "startLine": 33, + "startColumn": 4, + "startOffset": 2786, + "endColumn": 53, + "endOffset": 2835 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-fr/strings.xml", + "position": { + "startLine": 25, + "startColumn": 4, + "startOffset": 1484, + "endColumn": 53, + "endOffset": 1533 + } + } + }, + { + "to": { + "startLine": 34, + "startColumn": 4, + "startOffset": 2840, + "endColumn": 68, + "endOffset": 2904 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-fr/strings.xml", + "position": { + "startLine": 33, + "startColumn": 4, + "startOffset": 2116, + "endColumn": 68, + "endOffset": 2180 + } + } + }, + { + "to": { + "startLine": 35, + "startColumn": 4, + "startOffset": 2909, + "endColumn": 134, + "endOffset": 3039 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-fr/strings.xml", + "position": { + "startLine": 34, + "startColumn": 4, + "startOffset": 2185, + "endColumn": 134, + "endOffset": 2315 + } + } + }, + { + "to": { + "startLine": 36, + "startColumn": 4, + "startOffset": 3044, + "endColumn": 64, + "endOffset": 3104 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-fr/strings.xml", + "position": { + "startLine": 32, + "startColumn": 4, + "startOffset": 2051, + "endColumn": 64, + "endOffset": 2111 + } + } + }, + { + "to": { + "startLine": 37, + "startColumn": 4, + "startOffset": 3109, + "endColumn": 82, + "endOffset": 3187 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-fr/strings.xml", + "position": { + "startLine": 58, + "startColumn": 4, + "startOffset": 4989, + "endColumn": 82, + "endOffset": 5067 + } + } + }, + { + "to": { + "startLine": 38, + "startColumn": 4, + "startOffset": 3192, + "endColumn": 67, + "endOffset": 3255 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-fr/strings.xml", + "position": { + "startLine": 37, + "startColumn": 4, + "startOffset": 2705, + "endColumn": 67, + "endOffset": 2768 + } + } + }, + { + "to": { + "startLine": 39, + "startColumn": 4, + "startOffset": 3260, + "endColumn": 148, + "endOffset": 3404 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-fr/strings.xml", + "position": { + "startLine": 38, + "startColumn": 4, + "startOffset": 2773, + "endColumn": 148, + "endOffset": 2917 + } + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 3409, + "endColumn": 54, + "endOffset": 3459 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-fr/strings.xml", + "position": { + "startLine": 24, + "startColumn": 4, + "startOffset": 1421, + "endColumn": 62, + "endOffset": 1479 + } + } + }, + { + "to": { + "startLine": 41, + "startColumn": 4, + "startOffset": 3464, + "endColumn": 53, + "endOffset": 3513 + }, + "from": { + "file": "/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/values-fr/values-fr.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 53, + "endOffset": 104 + } + } + }, + { + "to": { + "startLine": 42, + "startColumn": 4, + "startOffset": 3518, + "endColumn": 74, + "endOffset": 3588 + }, + "from": { + "file": "/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/values-fr/values-fr.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 109, + "endColumn": 74, + "endOffset": 179 + } + } + }, + { + "to": { + "startLine": 43, + "startColumn": 4, + "startOffset": 3593, + "endColumn": 78, + "endOffset": 3667 + }, + "from": { + "file": "/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/values-fr/values-fr.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 184, + "endColumn": 78, + "endOffset": 258 + } + } + }, + { + "to": { + "startLine": 44, + "startColumn": 4, + "startOffset": 3672, + "endColumn": 70, + "endOffset": 3738 + }, + "from": { + "file": "/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/values-fr/values-fr.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 263, + "endColumn": 70, + "endOffset": 329 + } + } + }, + { + "to": { + "startLine": 45, + "startColumn": 4, + "startOffset": 3743, + "endColumn": 71, + "endOffset": 3810 + }, + "from": { + "file": "/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/values-fr/values-fr.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 334, + "endColumn": 71, + "endOffset": 401 + } + } + }, + { + "to": { + "startLine": 46, + "startColumn": 4, + "startOffset": 3815, + "endColumn": 55, + "endOffset": 3866 + }, + "from": { + "file": "/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/values-fr/values-fr.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 406, + "endColumn": 55, + "endOffset": 457 + } + } + }, + { + "to": { + "startLine": 47, + "startColumn": 4, + "startOffset": 3871, + "endColumn": 58, + "endOffset": 3925 + }, + "from": { + "file": "/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/values-fr/values-fr.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 462, + "endColumn": 58, + "endOffset": 516 + } + } + }, + { + "to": { + "startLine": 48, + "startColumn": 4, + "startOffset": 3930, + "endColumn": 73, + "endOffset": 3999 + }, + "from": { + "file": "/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/values-fr/values-fr.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 521, + "endColumn": 73, + "endOffset": 590 + } + } + }, + { + "to": { + "startLine": 49, + "startColumn": 4, + "startOffset": 4004, + "endColumn": 50, + "endOffset": 4050 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-fr/strings.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 1370, + "endColumn": 50, + "endOffset": 1416 + } + } + }, + { + "to": { + "startLine": 50, + "startColumn": 4, + "startOffset": 4055, + "endColumn": 105, + "endOffset": 4156 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-fr/strings.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 601, + "endColumn": 105, + "endOffset": 702 + } + } + }, + { + "to": { + "startLine": 51, + "startColumn": 4, + "startOffset": 4161, + "endColumn": 83, + "endOffset": 4240 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-fr/strings.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 432, + "endColumn": 83, + "endOffset": 511 + } + } + }, + { + "to": { + "startLine": 52, + "startColumn": 4, + "startOffset": 4245, + "endColumn": 104, + "endOffset": 4345 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-fr/strings.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 947, + "endColumn": 104, + "endOffset": 1047 + } + } + }, + { + "to": { + "startLine": 53, + "startColumn": 4, + "startOffset": 4350, + "endColumn": 51, + "endOffset": 4397 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-fr/strings.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 380, + "endColumn": 51, + "endOffset": 427 + } + } + }, + { + "to": { + "startLine": 54, + "startColumn": 4, + "startOffset": 4402, + "endColumn": 53, + "endOffset": 4451 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-fr/strings.xml", + "position": { + "startLine": 53, + "startColumn": 4, + "startOffset": 4568, + "endColumn": 53, + "endOffset": 4617 + } + } + }, + { + "to": { + "startLine": 55, + "startColumn": 4, + "startOffset": 4456, + "endColumn": 129, + "endOffset": 4581 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-fr/strings.xml", + "position": { + "startLine": 54, + "startColumn": 4, + "startOffset": 4622, + "endColumn": 129, + "endOffset": 4747 + } + } + }, + { + "to": { + "startLine": 56, + "startColumn": 4, + "startOffset": 4586, + "endColumn": 63, + "endOffset": 4645 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-fr/strings.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1102, + "endColumn": 63, + "endOffset": 1161 + } + } + }, + { + "to": { + "startLine": 57, + "startColumn": 4, + "startOffset": 4650, + "endColumn": 88, + "endOffset": 4734 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-fr/strings.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1166, + "endColumn": 88, + "endOffset": 1250 + } + } + }, + { + "to": { + "startLine": 58, + "startColumn": 4, + "startOffset": 4739, + "endColumn": 94, + "endOffset": 4829 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-fr/strings.xml", + "position": { + "startLine": 57, + "startColumn": 4, + "startOffset": 4894, + "endColumn": 94, + "endOffset": 4984 + } + } + }, + { + "to": { + "startLine": 59, + "startColumn": 4, + "startOffset": 4834, + "endColumn": 71, + "endOffset": 4901 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-fr/strings.xml", + "position": { + "startLine": 61, + "startColumn": 4, + "startOffset": 5231, + "endColumn": 71, + "endOffset": 5298 + } + } + }, + { + "to": { + "startLine": 60, + "startColumn": 4, + "startOffset": 4906, + "endColumn": 67, + "endOffset": 4969 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-fr/strings.xml", + "position": { + "startLine": 60, + "startColumn": 4, + "startOffset": 5163, + "endColumn": 67, + "endOffset": 5226 + } + } + }, + { + "to": { + "startLine": 61, + "startColumn": 4, + "startOffset": 4974, + "endColumn": 68, + "endOffset": 5038 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-fr/strings.xml", + "position": { + "startLine": 51, + "startColumn": 4, + "startOffset": 4249, + "endColumn": 68, + "endOffset": 4313 + } + } + }, + { + "to": { + "startLine": 62, + "startColumn": 4, + "startOffset": 5043, + "endColumn": 249, + "endOffset": 5288 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-fr/strings.xml", + "position": { + "startLine": 52, + "startColumn": 4, + "startOffset": 4318, + "endColumn": 249, + "endOffset": 4563 + } + } + }, + { + "to": { + "startLine": 63, + "startColumn": 4, + "startOffset": 5293, + "endColumn": 67, + "endOffset": 5356 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-fr/strings.xml", + "position": { + "startLine": 48, + "startColumn": 4, + "startOffset": 3884, + "endColumn": 67, + "endOffset": 3947 + } + } + }, + { + "to": { + "startLine": 64, + "startColumn": 4, + "startOffset": 5361, + "endColumn": 50, + "endOffset": 5407 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-fr/strings.xml", + "position": { + "startLine": 47, + "startColumn": 4, + "startOffset": 3833, + "endColumn": 50, + "endOffset": 3879 + } + } + }, + { + "to": { + "startLine": 65, + "startColumn": 4, + "startOffset": 5412, + "endColumn": 60, + "endOffset": 5468 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-fr/strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 217, + "endColumn": 60, + "endOffset": 273 + } + } + }, + { + "to": { + "startLine": 66, + "startColumn": 4, + "startOffset": 5473, + "endColumn": 67, + "endOffset": 5536 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-fr/strings.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 879, + "endColumn": 67, + "endOffset": 942 + } + } + }, + { + "to": { + "startLine": 67, + "startColumn": 4, + "startOffset": 5541, + "endColumn": 50, + "endOffset": 5587 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-fr/strings.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 1538, + "endColumn": 50, + "endOffset": 1584 + } + } + }, + { + "to": { + "startLine": 68, + "startColumn": 4, + "startOffset": 5592, + "endColumn": 91, + "endOffset": 5679 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-fr/strings.xml", + "position": { + "startLine": 35, + "startColumn": 4, + "startOffset": 2320, + "endColumn": 91, + "endOffset": 2407 + } + } + }, + { + "to": { + "startLine": 69, + "startColumn": 4, + "startOffset": 5684, + "endColumn": 292, + "endOffset": 5972 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-fr/strings.xml", + "position": { + "startLine": 36, + "startColumn": 4, + "startOffset": 2412, + "endColumn": 292, + "endOffset": 2700 + } + } + }, + { + "to": { + "startLine": 70, + "startColumn": 4, + "startOffset": 5977, + "endColumn": 231, + "endOffset": 6204 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-fr/strings.xml", + "position": { + "startLine": 50, + "startColumn": 4, + "startOffset": 4017, + "endColumn": 231, + "endOffset": 4244 + } + } + }, + { + "to": { + "startLine": 71, + "startColumn": 4, + "startOffset": 6209, + "endColumn": 90, + "endOffset": 6295 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-fr/strings.xml", + "position": { + "startLine": 59, + "startColumn": 4, + "startOffset": 5072, + "endColumn": 90, + "endOffset": 5158 + } + } + }, + { + "to": { + "startLine": 72, + "startColumn": 4, + "startOffset": 6300, + "endColumn": 114, + "endOffset": 6410 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-fr/strings.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 1255, + "endColumn": 114, + "endOffset": 1365 + } + } + }, + { + "to": { + "startLine": 73, + "startColumn": 4, + "startOffset": 6415, + "endColumn": 59, + "endOffset": 6470 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-fr/strings.xml", + "position": { + "startLine": 41, + "startColumn": 4, + "startOffset": 3165, + "endColumn": 59, + "endOffset": 3220 + } + } + }, + { + "to": { + "startLine": 74, + "startColumn": 4, + "startOffset": 6475, + "endColumn": 82, + "endOffset": 6553 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-fr/strings.xml", + "position": { + "startLine": 42, + "startColumn": 4, + "startOffset": 3225, + "endColumn": 82, + "endOffset": 3303 + } + } + }, + { + "to": { + "startLine": 75, + "startColumn": 4, + "startOffset": 6558, + "endColumn": 47, + "endOffset": 6601 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-fr/strings.xml", + "position": { + "startLine": 31, + "startColumn": 4, + "startOffset": 2003, + "endColumn": 47, + "endOffset": 2046 + } + } + }, + { + "to": { + "startLine": 76, + "startColumn": 4, + "startOffset": 6606, + "endColumn": 64, + "endOffset": 6666 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-fr/strings.xml", + "position": { + "startLine": 27, + "startColumn": 4, + "startOffset": 1589, + "endColumn": 64, + "endOffset": 1649 + } + } + }, + { + "to": { + "startLine": 77, + "startColumn": 4, + "startOffset": 6671, + "endColumn": 168, + "endOffset": 6835 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-fr/strings.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 1726, + "endColumn": 168, + "endOffset": 1890 + } + } + }, + { + "to": { + "startLine": 78, + "startColumn": 4, + "startOffset": 6840, + "endColumn": 107, + "endOffset": 6943 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-fr/strings.xml", + "position": { + "startLine": 30, + "startColumn": 4, + "startOffset": 1895, + "endColumn": 107, + "endOffset": 1998 + } + } + }, + { + "to": { + "startLine": 79, + "startColumn": 4, + "startOffset": 6948, + "endColumn": 71, + "endOffset": 7015 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-fr/strings.xml", + "position": { + "startLine": 28, + "startColumn": 4, + "startOffset": 1654, + "endColumn": 71, + "endOffset": 1721 + } + } + }, + { + "to": { + "startLine": 80, + "startColumn": 4, + "startOffset": 7020, + "endColumn": 66, + "endOffset": 7082 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-fr/strings.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 707, + "endColumn": 66, + "endOffset": 769 + } + } + }, + { + "to": { + "startLine": 81, + "startColumn": 4, + "startOffset": 7087, + "endColumn": 243, + "endOffset": 7326 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-fr/strings.xml", + "position": { + "startLine": 44, + "startColumn": 4, + "startOffset": 3375, + "endColumn": 243, + "endOffset": 3614 + } + } + }, + { + "to": { + "startLine": 82, + "startColumn": 4, + "startOffset": 7331, + "endColumn": 66, + "endOffset": 7393 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-fr/strings.xml", + "position": { + "startLine": 43, + "startColumn": 4, + "startOffset": 3308, + "endColumn": 66, + "endOffset": 3370 + } + } + }, + { + "to": { + "startLine": 83, + "startColumn": 4, + "startOffset": 7398, + "endColumn": 100, + "endOffset": 7494 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-fr/values-fr.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2061, + "endColumn": 100, + "endOffset": 2157 + } + } + }, + { + "to": { + "startLine": 84, + "startColumn": 4, + "startOffset": 7499, + "endColumn": 68, + "endOffset": 7563 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-fr/strings.xml", + "position": { + "startLine": 63, + "startColumn": 4, + "startOffset": 5352, + "endColumn": 68, + "endOffset": 5416 + } + } + }, + { + "to": { + "startLine": 85, + "startColumn": 4, + "startOffset": 7568, + "endColumn": 103, + "endOffset": 7667 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-fr/strings.xml", + "position": { + "startLine": 64, + "startColumn": 4, + "startOffset": 5421, + "endColumn": 103, + "endOffset": 5520 + } + } + }, + { + "to": { + "startLine": 86, + "startColumn": 4, + "startOffset": 7672, + "endColumn": 52, + "endOffset": 7720 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-fr/strings.xml", + "position": { + "startLine": 55, + "startColumn": 4, + "startOffset": 4752, + "endColumn": 52, + "endOffset": 4800 + } + } + }, + { + "to": { + "startLine": 87, + "startColumn": 4, + "startOffset": 7725, + "endColumn": 88, + "endOffset": 7809 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-fr/strings.xml", + "position": { + "startLine": 56, + "startColumn": 4, + "startOffset": 4805, + "endColumn": 88, + "endOffset": 4889 + } + } + }, + { + "to": { + "startLine": 88, + "startColumn": 4, + "startOffset": 7814, + "endColumn": 84, + "endOffset": 7894 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-fr/strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 132, + "endColumn": 84, + "endOffset": 212 + } + } + }, + { + "to": { + "startLine": 89, + "startColumn": 4, + "startOffset": 7899, + "endColumn": 58, + "endOffset": 7953 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-fr/strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 72, + "endColumn": 58, + "endOffset": 126 + } + } + }, + { + "to": { + "startLine": 90, + "startColumn": 4, + "startOffset": 7958, + "endColumn": 67, + "endOffset": 8021 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-fr/strings.xml", + "position": { + "startLine": 39, + "startColumn": 4, + "startOffset": 2922, + "endColumn": 67, + "endOffset": 2985 + } + } + }, + { + "to": { + "startLine": 91, + "startColumn": 4, + "startOffset": 8026, + "endColumn": 174, + "endOffset": 8196 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-fr/strings.xml", + "position": { + "startLine": 40, + "startColumn": 4, + "startOffset": 2990, + "endColumn": 174, + "endOffset": 3160 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/multi/values-gl-rES.json b/android/build/intermediates/blame/res/debug/multi/values-gl-rES.json new file mode 100644 index 000000000..812e58cd5 --- /dev/null +++ b/android/build/intermediates/blame/res/debug/multi/values-gl-rES.json @@ -0,0 +1,387 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-gl-rES/values-gl-rES.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 111, + "endOffset": 162 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-gl-rES/values-gl-rES.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 111, + "endOffset": 162 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 167, + "endColumn": 107, + "endOffset": 270 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-gl-rES/values-gl-rES.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 167, + "endColumn": 107, + "endOffset": 270 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 275, + "endColumn": 122, + "endOffset": 393 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-gl-rES/values-gl-rES.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 275, + "endColumn": 122, + "endOffset": 393 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 398, + "endColumn": 111, + "endOffset": 505 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-gl-rES/values-gl-rES.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 398, + "endColumn": 111, + "endOffset": 505 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 510, + "endColumn": 107, + "endOffset": 613 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-gl-rES/values-gl-rES.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 510, + "endColumn": 107, + "endOffset": 613 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 618, + "endColumn": 84, + "endOffset": 698 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-gl-rES/values-gl-rES.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 618, + "endColumn": 84, + "endOffset": 698 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 703, + "endColumn": 101, + "endOffset": 800 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-gl-rES/values-gl-rES.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 703, + "endColumn": 101, + "endOffset": 800 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 805, + "endColumn": 125, + "endOffset": 926 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-gl-rES/values-gl-rES.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 805, + "endColumn": 125, + "endOffset": 926 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 931, + "endColumn": 83, + "endOffset": 1010 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-gl-rES/values-gl-rES.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 931, + "endColumn": 83, + "endOffset": 1010 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1015, + "endColumn": 80, + "endOffset": 1091 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-gl-rES/values-gl-rES.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1015, + "endColumn": 80, + "endOffset": 1091 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1096, + "endColumn": 81, + "endOffset": 1173 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-gl-rES/values-gl-rES.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1096, + "endColumn": 81, + "endOffset": 1173 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1178, + "endColumn": 106, + "endOffset": 1280 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-gl-rES/values-gl-rES.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1178, + "endColumn": 106, + "endOffset": 1280 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1285, + "endColumn": 108, + "endOffset": 1389 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-gl-rES/values-gl-rES.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1285, + "endColumn": 108, + "endOffset": 1389 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1394, + "endColumn": 98, + "endOffset": 1488 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-gl-rES/values-gl-rES.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1394, + "endColumn": 98, + "endOffset": 1488 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1493, + "endColumn": 107, + "endOffset": 1596 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-gl-rES/values-gl-rES.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1493, + "endColumn": 107, + "endOffset": 1596 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1601, + "endColumn": 102, + "endOffset": 1699 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-gl-rES/values-gl-rES.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1601, + "endColumn": 102, + "endOffset": 1699 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1704, + "endColumn": 106, + "endOffset": 1806 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-gl-rES/values-gl-rES.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1704, + "endColumn": 106, + "endOffset": 1806 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1811, + "endColumn": 121, + "endOffset": 1928 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-gl-rES/values-gl-rES.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1811, + "endColumn": 121, + "endOffset": 1928 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1933, + "endColumn": 99, + "endOffset": 2028 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-gl-rES/values-gl-rES.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1933, + "endColumn": 99, + "endOffset": 2028 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2033, + "endColumn": 100, + "endOffset": 2129 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-gl-rES/values-gl-rES.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2033, + "endColumn": 100, + "endOffset": 2129 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/multi/values-gu-rIN.json b/android/build/intermediates/blame/res/debug/multi/values-gu-rIN.json new file mode 100644 index 000000000..2388b7539 --- /dev/null +++ b/android/build/intermediates/blame/res/debug/multi/values-gu-rIN.json @@ -0,0 +1,387 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-gu-rIN/values-gu-rIN.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 108, + "endOffset": 159 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-gu-rIN/values-gu-rIN.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 108, + "endOffset": 159 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 164, + "endColumn": 107, + "endOffset": 267 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-gu-rIN/values-gu-rIN.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 164, + "endColumn": 107, + "endOffset": 267 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 272, + "endColumn": 122, + "endOffset": 390 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-gu-rIN/values-gu-rIN.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 272, + "endColumn": 122, + "endOffset": 390 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 395, + "endColumn": 103, + "endOffset": 494 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-gu-rIN/values-gu-rIN.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 395, + "endColumn": 103, + "endOffset": 494 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 499, + "endColumn": 106, + "endOffset": 601 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-gu-rIN/values-gu-rIN.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 499, + "endColumn": 106, + "endOffset": 601 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 606, + "endColumn": 86, + "endOffset": 688 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-gu-rIN/values-gu-rIN.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 606, + "endColumn": 86, + "endOffset": 688 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 693, + "endColumn": 100, + "endOffset": 789 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-gu-rIN/values-gu-rIN.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 693, + "endColumn": 100, + "endOffset": 789 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 794, + "endColumn": 122, + "endOffset": 912 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-gu-rIN/values-gu-rIN.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 794, + "endColumn": 122, + "endOffset": 912 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 917, + "endColumn": 76, + "endOffset": 989 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-gu-rIN/values-gu-rIN.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 917, + "endColumn": 76, + "endOffset": 989 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 994, + "endColumn": 77, + "endOffset": 1067 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-gu-rIN/values-gu-rIN.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 994, + "endColumn": 77, + "endOffset": 1067 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1072, + "endColumn": 79, + "endOffset": 1147 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-gu-rIN/values-gu-rIN.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1072, + "endColumn": 79, + "endOffset": 1147 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1152, + "endColumn": 105, + "endOffset": 1253 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-gu-rIN/values-gu-rIN.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1152, + "endColumn": 105, + "endOffset": 1253 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1258, + "endColumn": 101, + "endOffset": 1355 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-gu-rIN/values-gu-rIN.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1258, + "endColumn": 101, + "endOffset": 1355 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1360, + "endColumn": 96, + "endOffset": 1452 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-gu-rIN/values-gu-rIN.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1360, + "endColumn": 96, + "endOffset": 1452 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1457, + "endColumn": 108, + "endOffset": 1561 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-gu-rIN/values-gu-rIN.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1457, + "endColumn": 108, + "endOffset": 1561 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1566, + "endColumn": 98, + "endOffset": 1660 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-gu-rIN/values-gu-rIN.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1566, + "endColumn": 98, + "endOffset": 1660 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1665, + "endColumn": 109, + "endOffset": 1770 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-gu-rIN/values-gu-rIN.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1665, + "endColumn": 109, + "endOffset": 1770 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1775, + "endColumn": 120, + "endOffset": 1891 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-gu-rIN/values-gu-rIN.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1775, + "endColumn": 120, + "endOffset": 1891 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1896, + "endColumn": 102, + "endOffset": 1994 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-gu-rIN/values-gu-rIN.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1896, + "endColumn": 102, + "endOffset": 1994 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1999, + "endColumn": 100, + "endOffset": 2095 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-gu-rIN/values-gu-rIN.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1999, + "endColumn": 100, + "endOffset": 2095 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/multi/values-h320dp-v13.json b/android/build/intermediates/blame/res/debug/multi/values-h320dp-v13.json new file mode 100644 index 000000000..adaee56b6 --- /dev/null +++ b/android/build/intermediates/blame/res/debug/multi/values-h320dp-v13.json @@ -0,0 +1,26 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-h320dp-v13/values-h320dp-v13.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 57, + "endOffset": 108 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-h320dp-v13/values-h320dp-v13.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 57, + "endOffset": 108 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/multi/values-h720dp-v13.json b/android/build/intermediates/blame/res/debug/multi/values-h720dp-v13.json new file mode 100644 index 000000000..9e152f76b --- /dev/null +++ b/android/build/intermediates/blame/res/debug/multi/values-h720dp-v13.json @@ -0,0 +1,26 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-h720dp-v13/values-h720dp-v13.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 66, + "endOffset": 117 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-h720dp-v13/values-h720dp-v13.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 66, + "endOffset": 117 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/multi/values-hdpi-v4.json b/android/build/intermediates/blame/res/debug/multi/values-hdpi-v4.json new file mode 100644 index 000000000..2edea729d --- /dev/null +++ b/android/build/intermediates/blame/res/debug/multi/values-hdpi-v4.json @@ -0,0 +1,28 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hdpi-v4/values-hdpi-v4.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endLine": 6, + "endColumn": 13, + "endOffset": 327 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hdpi-v4/values-hdpi-v4.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endLine": 6, + "endColumn": 13, + "endOffset": 327 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/multi/values-hi.json b/android/build/intermediates/blame/res/debug/multi/values-hi.json new file mode 100644 index 000000000..6dfaf43f7 --- /dev/null +++ b/android/build/intermediates/blame/res/debug/multi/values-hi.json @@ -0,0 +1,387 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hi/values-hi.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 116, + "endOffset": 167 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hi/values-hi.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 116, + "endOffset": 167 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 172, + "endColumn": 107, + "endOffset": 275 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hi/values-hi.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 172, + "endColumn": 107, + "endOffset": 275 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 280, + "endColumn": 122, + "endOffset": 398 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hi/values-hi.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 280, + "endColumn": 122, + "endOffset": 398 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 403, + "endColumn": 104, + "endOffset": 503 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hi/values-hi.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 403, + "endColumn": 104, + "endOffset": 503 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 508, + "endColumn": 106, + "endOffset": 610 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hi/values-hi.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 508, + "endColumn": 106, + "endOffset": 610 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 615, + "endColumn": 84, + "endOffset": 695 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hi/values-hi.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 615, + "endColumn": 84, + "endOffset": 695 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 700, + "endColumn": 101, + "endOffset": 797 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hi/values-hi.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 700, + "endColumn": 101, + "endOffset": 797 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 802, + "endColumn": 121, + "endOffset": 919 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hi/values-hi.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 802, + "endColumn": 121, + "endOffset": 919 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 924, + "endColumn": 76, + "endOffset": 996 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hi/values-hi.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 924, + "endColumn": 76, + "endOffset": 996 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1001, + "endColumn": 77, + "endOffset": 1074 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hi/values-hi.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1001, + "endColumn": 77, + "endOffset": 1074 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1079, + "endColumn": 89, + "endOffset": 1164 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hi/values-hi.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1079, + "endColumn": 89, + "endOffset": 1164 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1169, + "endColumn": 108, + "endOffset": 1273 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hi/values-hi.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1169, + "endColumn": 108, + "endOffset": 1273 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1278, + "endColumn": 101, + "endOffset": 1375 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hi/values-hi.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1278, + "endColumn": 101, + "endOffset": 1375 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1380, + "endColumn": 97, + "endOffset": 1473 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hi/values-hi.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1380, + "endColumn": 97, + "endOffset": 1473 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1478, + "endColumn": 109, + "endOffset": 1583 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hi/values-hi.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1478, + "endColumn": 109, + "endOffset": 1583 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1588, + "endColumn": 99, + "endOffset": 1683 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hi/values-hi.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1588, + "endColumn": 99, + "endOffset": 1683 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1688, + "endColumn": 114, + "endOffset": 1798 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hi/values-hi.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1688, + "endColumn": 114, + "endOffset": 1798 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1803, + "endColumn": 124, + "endOffset": 1923 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hi/values-hi.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1803, + "endColumn": 124, + "endOffset": 1923 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1928, + "endColumn": 105, + "endOffset": 2029 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hi/values-hi.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1928, + "endColumn": 105, + "endOffset": 2029 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2034, + "endColumn": 100, + "endOffset": 2130 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hi/values-hi.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2034, + "endColumn": 100, + "endOffset": 2130 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/multi/values-hr.json b/android/build/intermediates/blame/res/debug/multi/values-hr.json new file mode 100644 index 000000000..610bf4e30 --- /dev/null +++ b/android/build/intermediates/blame/res/debug/multi/values-hr.json @@ -0,0 +1,387 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hr/values-hr.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 104, + "endOffset": 155 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hr/values-hr.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 104, + "endOffset": 155 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 160, + "endColumn": 107, + "endOffset": 263 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hr/values-hr.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 160, + "endColumn": 107, + "endOffset": 263 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 268, + "endColumn": 122, + "endOffset": 386 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hr/values-hr.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 268, + "endColumn": 122, + "endOffset": 386 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 391, + "endColumn": 96, + "endOffset": 483 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hr/values-hr.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 391, + "endColumn": 96, + "endOffset": 483 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 488, + "endColumn": 109, + "endOffset": 593 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hr/values-hr.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 488, + "endColumn": 109, + "endOffset": 593 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 598, + "endColumn": 85, + "endOffset": 679 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hr/values-hr.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 598, + "endColumn": 85, + "endOffset": 679 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 684, + "endColumn": 103, + "endOffset": 783 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hr/values-hr.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 684, + "endColumn": 103, + "endOffset": 783 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 788, + "endColumn": 118, + "endOffset": 902 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hr/values-hr.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 788, + "endColumn": 118, + "endOffset": 902 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 907, + "endColumn": 83, + "endOffset": 986 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hr/values-hr.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 907, + "endColumn": 83, + "endOffset": 986 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 991, + "endColumn": 82, + "endOffset": 1069 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hr/values-hr.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 991, + "endColumn": 82, + "endOffset": 1069 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1074, + "endColumn": 85, + "endOffset": 1155 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hr/values-hr.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1074, + "endColumn": 85, + "endOffset": 1155 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1160, + "endColumn": 103, + "endOffset": 1259 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hr/values-hr.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1160, + "endColumn": 103, + "endOffset": 1259 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1264, + "endColumn": 112, + "endOffset": 1372 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hr/values-hr.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1264, + "endColumn": 112, + "endOffset": 1372 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1377, + "endColumn": 105, + "endOffset": 1478 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hr/values-hr.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1377, + "endColumn": 105, + "endOffset": 1478 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1483, + "endColumn": 104, + "endOffset": 1583 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hr/values-hr.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1483, + "endColumn": 104, + "endOffset": 1583 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1588, + "endColumn": 112, + "endOffset": 1696 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hr/values-hr.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1588, + "endColumn": 112, + "endOffset": 1696 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1701, + "endColumn": 106, + "endOffset": 1803 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hr/values-hr.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1701, + "endColumn": 106, + "endOffset": 1803 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1808, + "endColumn": 122, + "endOffset": 1926 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hr/values-hr.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1808, + "endColumn": 122, + "endOffset": 1926 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1931, + "endColumn": 96, + "endOffset": 2023 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hr/values-hr.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1931, + "endColumn": 96, + "endOffset": 2023 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2028, + "endColumn": 100, + "endOffset": 2124 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hr/values-hr.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2028, + "endColumn": 100, + "endOffset": 2124 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/multi/values-hu.json b/android/build/intermediates/blame/res/debug/multi/values-hu.json new file mode 100644 index 000000000..7a9ccf082 --- /dev/null +++ b/android/build/intermediates/blame/res/debug/multi/values-hu.json @@ -0,0 +1,539 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hu/values-hu.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 107, + "endOffset": 158 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hu/values-hu.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 107, + "endOffset": 158 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 163, + "endColumn": 107, + "endOffset": 266 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hu/values-hu.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 163, + "endColumn": 107, + "endOffset": 266 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 271, + "endColumn": 122, + "endOffset": 389 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hu/values-hu.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 271, + "endColumn": 122, + "endOffset": 389 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 394, + "endColumn": 104, + "endOffset": 494 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hu/values-hu.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 394, + "endColumn": 104, + "endOffset": 494 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 499, + "endColumn": 114, + "endOffset": 609 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hu/values-hu.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 499, + "endColumn": 114, + "endOffset": 609 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 614, + "endColumn": 83, + "endOffset": 693 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hu/values-hu.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 614, + "endColumn": 83, + "endOffset": 693 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 698, + "endColumn": 111, + "endOffset": 805 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hu/values-hu.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 698, + "endColumn": 111, + "endOffset": 805 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 810, + "endColumn": 129, + "endOffset": 935 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hu/values-hu.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 810, + "endColumn": 129, + "endOffset": 935 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 940, + "endColumn": 75, + "endOffset": 1011 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hu/values-hu.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 940, + "endColumn": 75, + "endOffset": 1011 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1016, + "endColumn": 75, + "endOffset": 1087 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hu/values-hu.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1016, + "endColumn": 75, + "endOffset": 1087 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1092, + "endColumn": 82, + "endOffset": 1170 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hu/values-hu.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1092, + "endColumn": 82, + "endOffset": 1170 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1175, + "endColumn": 109, + "endOffset": 1280 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hu/values-hu.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1175, + "endColumn": 109, + "endOffset": 1280 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1285, + "endColumn": 110, + "endOffset": 1391 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hu/values-hu.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1285, + "endColumn": 110, + "endOffset": 1391 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1396, + "endColumn": 99, + "endOffset": 1491 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hu/values-hu.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1396, + "endColumn": 99, + "endOffset": 1491 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1496, + "endColumn": 110, + "endOffset": 1602 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hu/values-hu.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1496, + "endColumn": 110, + "endOffset": 1602 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1607, + "endColumn": 107, + "endOffset": 1710 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hu/values-hu.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1607, + "endColumn": 107, + "endOffset": 1710 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1715, + "endColumn": 118, + "endOffset": 1829 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hu/values-hu.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1715, + "endColumn": 118, + "endOffset": 1829 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1834, + "endColumn": 133, + "endOffset": 1963 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hu/values-hu.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1834, + "endColumn": 133, + "endOffset": 1963 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1968, + "endColumn": 102, + "endOffset": 2066 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hu/values-hu.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1968, + "endColumn": 102, + "endOffset": 2066 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2071, + "endColumn": 53, + "endOffset": 2120 + }, + "from": { + "file": "/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/values-hu/values-hu.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 53, + "endOffset": 104 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2125, + "endColumn": 72, + "endOffset": 2193 + }, + "from": { + "file": "/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/values-hu/values-hu.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 109, + "endColumn": 72, + "endOffset": 177 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2198, + "endColumn": 78, + "endOffset": 2272 + }, + "from": { + "file": "/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/values-hu/values-hu.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 182, + "endColumn": 78, + "endOffset": 256 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2277, + "endColumn": 70, + "endOffset": 2343 + }, + "from": { + "file": "/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/values-hu/values-hu.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 261, + "endColumn": 70, + "endOffset": 327 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2348, + "endColumn": 65, + "endOffset": 2409 + }, + "from": { + "file": "/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/values-hu/values-hu.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 332, + "endColumn": 65, + "endOffset": 393 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2414, + "endColumn": 55, + "endOffset": 2465 + }, + "from": { + "file": "/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/values-hu/values-hu.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 398, + "endColumn": 55, + "endOffset": 449 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 2470, + "endColumn": 58, + "endOffset": 2524 + }, + "from": { + "file": "/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/values-hu/values-hu.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 454, + "endColumn": 58, + "endOffset": 508 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 2529, + "endColumn": 73, + "endOffset": 2598 + }, + "from": { + "file": "/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/values-hu/values-hu.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 513, + "endColumn": 73, + "endOffset": 582 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 2603, + "endColumn": 100, + "endOffset": 2699 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hu/values-hu.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2071, + "endColumn": 100, + "endOffset": 2167 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/multi/values-hy-rAM.json b/android/build/intermediates/blame/res/debug/multi/values-hy-rAM.json new file mode 100644 index 000000000..4393933bc --- /dev/null +++ b/android/build/intermediates/blame/res/debug/multi/values-hy-rAM.json @@ -0,0 +1,387 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hy-rAM/values-hy-rAM.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 102, + "endOffset": 153 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hy-rAM/values-hy-rAM.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 102, + "endOffset": 153 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 158, + "endColumn": 107, + "endOffset": 261 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hy-rAM/values-hy-rAM.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 158, + "endColumn": 107, + "endOffset": 261 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 266, + "endColumn": 122, + "endOffset": 384 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hy-rAM/values-hy-rAM.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 266, + "endColumn": 122, + "endOffset": 384 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 389, + "endColumn": 100, + "endOffset": 485 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hy-rAM/values-hy-rAM.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 389, + "endColumn": 100, + "endOffset": 485 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 490, + "endColumn": 109, + "endOffset": 595 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hy-rAM/values-hy-rAM.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 490, + "endColumn": 109, + "endOffset": 595 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 600, + "endColumn": 89, + "endOffset": 685 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hy-rAM/values-hy-rAM.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 600, + "endColumn": 89, + "endOffset": 685 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 690, + "endColumn": 105, + "endOffset": 791 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hy-rAM/values-hy-rAM.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 690, + "endColumn": 105, + "endOffset": 791 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 796, + "endColumn": 114, + "endOffset": 906 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hy-rAM/values-hy-rAM.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 796, + "endColumn": 114, + "endOffset": 906 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 911, + "endColumn": 81, + "endOffset": 988 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hy-rAM/values-hy-rAM.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 911, + "endColumn": 81, + "endOffset": 988 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 993, + "endColumn": 80, + "endOffset": 1069 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hy-rAM/values-hy-rAM.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 993, + "endColumn": 80, + "endOffset": 1069 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1074, + "endColumn": 84, + "endOffset": 1154 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hy-rAM/values-hy-rAM.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1074, + "endColumn": 84, + "endOffset": 1154 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1159, + "endColumn": 106, + "endOffset": 1261 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hy-rAM/values-hy-rAM.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1159, + "endColumn": 106, + "endOffset": 1261 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1266, + "endColumn": 106, + "endOffset": 1368 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hy-rAM/values-hy-rAM.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1266, + "endColumn": 106, + "endOffset": 1368 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1373, + "endColumn": 98, + "endOffset": 1467 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hy-rAM/values-hy-rAM.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1373, + "endColumn": 98, + "endOffset": 1467 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1472, + "endColumn": 109, + "endOffset": 1577 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hy-rAM/values-hy-rAM.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1472, + "endColumn": 109, + "endOffset": 1577 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1582, + "endColumn": 106, + "endOffset": 1684 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hy-rAM/values-hy-rAM.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1582, + "endColumn": 106, + "endOffset": 1684 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1689, + "endColumn": 100, + "endOffset": 1785 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hy-rAM/values-hy-rAM.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1689, + "endColumn": 100, + "endOffset": 1785 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1790, + "endColumn": 119, + "endOffset": 1905 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hy-rAM/values-hy-rAM.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1790, + "endColumn": 119, + "endOffset": 1905 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1910, + "endColumn": 98, + "endOffset": 2004 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hy-rAM/values-hy-rAM.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1910, + "endColumn": 98, + "endOffset": 2004 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2009, + "endColumn": 100, + "endOffset": 2105 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-hy-rAM/values-hy-rAM.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2009, + "endColumn": 100, + "endOffset": 2105 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/multi/values-in.json b/android/build/intermediates/blame/res/debug/multi/values-in.json new file mode 100644 index 000000000..b6e96a474 --- /dev/null +++ b/android/build/intermediates/blame/res/debug/multi/values-in.json @@ -0,0 +1,539 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-in/values-in.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 109, + "endOffset": 160 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-in/values-in.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 109, + "endOffset": 160 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 165, + "endColumn": 107, + "endOffset": 268 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-in/values-in.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 165, + "endColumn": 107, + "endOffset": 268 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 273, + "endColumn": 122, + "endOffset": 391 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-in/values-in.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 273, + "endColumn": 122, + "endOffset": 391 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 396, + "endColumn": 101, + "endOffset": 493 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-in/values-in.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 396, + "endColumn": 101, + "endOffset": 493 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 498, + "endColumn": 104, + "endOffset": 598 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-in/values-in.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 498, + "endColumn": 104, + "endOffset": 598 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 603, + "endColumn": 86, + "endOffset": 685 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-in/values-in.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 603, + "endColumn": 86, + "endOffset": 685 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 690, + "endColumn": 103, + "endOffset": 789 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-in/values-in.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 690, + "endColumn": 103, + "endOffset": 789 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 794, + "endColumn": 115, + "endOffset": 905 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-in/values-in.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 794, + "endColumn": 115, + "endOffset": 905 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 910, + "endColumn": 81, + "endOffset": 987 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-in/values-in.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 910, + "endColumn": 81, + "endOffset": 987 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 992, + "endColumn": 78, + "endOffset": 1066 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-in/values-in.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 992, + "endColumn": 78, + "endOffset": 1066 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1071, + "endColumn": 85, + "endOffset": 1152 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-in/values-in.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1071, + "endColumn": 85, + "endOffset": 1152 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1157, + "endColumn": 102, + "endOffset": 1255 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-in/values-in.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1157, + "endColumn": 102, + "endOffset": 1255 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1260, + "endColumn": 108, + "endOffset": 1364 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-in/values-in.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1260, + "endColumn": 108, + "endOffset": 1364 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1369, + "endColumn": 100, + "endOffset": 1465 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-in/values-in.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1369, + "endColumn": 100, + "endOffset": 1465 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1470, + "endColumn": 103, + "endOffset": 1569 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-in/values-in.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1470, + "endColumn": 103, + "endOffset": 1569 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1574, + "endColumn": 107, + "endOffset": 1677 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-in/values-in.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1574, + "endColumn": 107, + "endOffset": 1677 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1682, + "endColumn": 107, + "endOffset": 1785 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-in/values-in.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1682, + "endColumn": 107, + "endOffset": 1785 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1790, + "endColumn": 122, + "endOffset": 1908 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-in/values-in.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1790, + "endColumn": 122, + "endOffset": 1908 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1913, + "endColumn": 98, + "endOffset": 2007 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-in/values-in.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1913, + "endColumn": 98, + "endOffset": 2007 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2012, + "endColumn": 53, + "endOffset": 2061 + }, + "from": { + "file": "/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/values-in/values-in.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 53, + "endOffset": 104 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2066, + "endColumn": 69, + "endOffset": 2131 + }, + "from": { + "file": "/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/values-in/values-in.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 109, + "endColumn": 69, + "endOffset": 174 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2136, + "endColumn": 78, + "endOffset": 2210 + }, + "from": { + "file": "/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/values-in/values-in.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 179, + "endColumn": 78, + "endOffset": 253 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2215, + "endColumn": 70, + "endOffset": 2281 + }, + "from": { + "file": "/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/values-in/values-in.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 258, + "endColumn": 70, + "endOffset": 324 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2286, + "endColumn": 65, + "endOffset": 2347 + }, + "from": { + "file": "/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/values-in/values-in.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 329, + "endColumn": 65, + "endOffset": 390 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2352, + "endColumn": 55, + "endOffset": 2403 + }, + "from": { + "file": "/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/values-in/values-in.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 395, + "endColumn": 55, + "endOffset": 446 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 2408, + "endColumn": 58, + "endOffset": 2462 + }, + "from": { + "file": "/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/values-in/values-in.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 451, + "endColumn": 58, + "endOffset": 505 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 2467, + "endColumn": 73, + "endOffset": 2536 + }, + "from": { + "file": "/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/values-in/values-in.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 510, + "endColumn": 73, + "endOffset": 579 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 2541, + "endColumn": 100, + "endOffset": 2637 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-in/values-in.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2012, + "endColumn": 100, + "endOffset": 2108 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/multi/values-is-rIS.json b/android/build/intermediates/blame/res/debug/multi/values-is-rIS.json new file mode 100644 index 000000000..84dec43f7 --- /dev/null +++ b/android/build/intermediates/blame/res/debug/multi/values-is-rIS.json @@ -0,0 +1,387 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-is-rIS/values-is-rIS.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 99, + "endOffset": 150 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-is-rIS/values-is-rIS.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 99, + "endOffset": 150 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 155, + "endColumn": 107, + "endOffset": 258 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-is-rIS/values-is-rIS.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 155, + "endColumn": 107, + "endOffset": 258 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 263, + "endColumn": 122, + "endOffset": 381 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-is-rIS/values-is-rIS.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 263, + "endColumn": 122, + "endOffset": 381 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 386, + "endColumn": 96, + "endOffset": 478 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-is-rIS/values-is-rIS.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 386, + "endColumn": 96, + "endOffset": 478 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 483, + "endColumn": 111, + "endOffset": 590 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-is-rIS/values-is-rIS.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 483, + "endColumn": 111, + "endOffset": 590 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 595, + "endColumn": 84, + "endOffset": 675 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-is-rIS/values-is-rIS.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 595, + "endColumn": 84, + "endOffset": 675 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 680, + "endColumn": 100, + "endOffset": 776 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-is-rIS/values-is-rIS.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 680, + "endColumn": 100, + "endOffset": 776 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 781, + "endColumn": 113, + "endOffset": 890 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-is-rIS/values-is-rIS.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 781, + "endColumn": 113, + "endOffset": 890 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 895, + "endColumn": 79, + "endOffset": 970 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-is-rIS/values-is-rIS.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 895, + "endColumn": 79, + "endOffset": 970 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 975, + "endColumn": 79, + "endOffset": 1050 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-is-rIS/values-is-rIS.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 975, + "endColumn": 79, + "endOffset": 1050 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1055, + "endColumn": 80, + "endOffset": 1131 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-is-rIS/values-is-rIS.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1055, + "endColumn": 80, + "endOffset": 1131 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1136, + "endColumn": 109, + "endOffset": 1241 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-is-rIS/values-is-rIS.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1136, + "endColumn": 109, + "endOffset": 1241 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1246, + "endColumn": 107, + "endOffset": 1349 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-is-rIS/values-is-rIS.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1246, + "endColumn": 107, + "endOffset": 1349 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1354, + "endColumn": 97, + "endOffset": 1447 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-is-rIS/values-is-rIS.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1354, + "endColumn": 97, + "endOffset": 1447 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1452, + "endColumn": 108, + "endOffset": 1556 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-is-rIS/values-is-rIS.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1452, + "endColumn": 108, + "endOffset": 1556 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1561, + "endColumn": 98, + "endOffset": 1655 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-is-rIS/values-is-rIS.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1561, + "endColumn": 98, + "endOffset": 1655 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1660, + "endColumn": 102, + "endOffset": 1758 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-is-rIS/values-is-rIS.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1660, + "endColumn": 102, + "endOffset": 1758 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1763, + "endColumn": 117, + "endOffset": 1876 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-is-rIS/values-is-rIS.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1763, + "endColumn": 117, + "endOffset": 1876 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1881, + "endColumn": 97, + "endOffset": 1974 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-is-rIS/values-is-rIS.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1881, + "endColumn": 97, + "endOffset": 1974 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1979, + "endColumn": 100, + "endOffset": 2075 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-is-rIS/values-is-rIS.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1979, + "endColumn": 100, + "endOffset": 2075 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/multi/values-it.json b/android/build/intermediates/blame/res/debug/multi/values-it.json new file mode 100644 index 000000000..3dafed747 --- /dev/null +++ b/android/build/intermediates/blame/res/debug/multi/values-it.json @@ -0,0 +1,1717 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-it/values-it.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 108, + "endOffset": 159 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-it/values-it.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 108, + "endOffset": 159 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 164, + "endColumn": 107, + "endOffset": 267 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-it/values-it.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 164, + "endColumn": 107, + "endOffset": 267 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 272, + "endColumn": 122, + "endOffset": 390 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-it/values-it.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 272, + "endColumn": 122, + "endOffset": 390 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 395, + "endColumn": 99, + "endOffset": 490 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-it/values-it.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 395, + "endColumn": 99, + "endOffset": 490 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 495, + "endColumn": 108, + "endOffset": 599 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-it/values-it.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 495, + "endColumn": 108, + "endOffset": 599 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 604, + "endColumn": 83, + "endOffset": 683 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-it/values-it.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 604, + "endColumn": 83, + "endOffset": 683 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 688, + "endColumn": 108, + "endOffset": 792 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-it/values-it.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 688, + "endColumn": 108, + "endOffset": 792 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 797, + "endColumn": 124, + "endOffset": 917 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-it/values-it.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 797, + "endColumn": 124, + "endOffset": 917 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 922, + "endColumn": 76, + "endOffset": 994 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-it/values-it.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 922, + "endColumn": 76, + "endOffset": 994 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 999, + "endColumn": 75, + "endOffset": 1070 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-it/values-it.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 999, + "endColumn": 75, + "endOffset": 1070 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1075, + "endColumn": 80, + "endOffset": 1151 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-it/values-it.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1075, + "endColumn": 80, + "endOffset": 1151 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1156, + "endColumn": 105, + "endOffset": 1257 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-it/values-it.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1156, + "endColumn": 105, + "endOffset": 1257 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1262, + "endColumn": 107, + "endOffset": 1365 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-it/values-it.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1262, + "endColumn": 107, + "endOffset": 1365 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1370, + "endColumn": 97, + "endOffset": 1463 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-it/values-it.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1370, + "endColumn": 97, + "endOffset": 1463 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1468, + "endColumn": 103, + "endOffset": 1567 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-it/values-it.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1468, + "endColumn": 103, + "endOffset": 1567 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1572, + "endColumn": 104, + "endOffset": 1672 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-it/values-it.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1572, + "endColumn": 104, + "endOffset": 1672 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1677, + "endColumn": 106, + "endOffset": 1779 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-it/values-it.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1677, + "endColumn": 106, + "endOffset": 1779 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1784, + "endColumn": 121, + "endOffset": 1901 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-it/values-it.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1784, + "endColumn": 121, + "endOffset": 1901 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1906, + "endColumn": 99, + "endOffset": 2001 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-it/values-it.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1906, + "endColumn": 99, + "endOffset": 2001 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2006, + "endColumn": 54, + "endOffset": 2056 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-it/strings.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 812, + "endColumn": 54, + "endOffset": 862 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2061, + "endColumn": 53, + "endOffset": 2110 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-it/strings.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 758, + "endColumn": 53, + "endOffset": 807 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2115, + "endColumn": 49, + "endOffset": 2160 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-it/strings.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 334, + "endColumn": 49, + "endOffset": 379 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2165, + "endColumn": 50, + "endOffset": 2211 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-it/strings.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 283, + "endColumn": 50, + "endOffset": 329 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2216, + "endColumn": 48, + "endOffset": 2260 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-it/strings.xml", + "position": { + "startLine": 62, + "startColumn": 4, + "startOffset": 5119, + "endColumn": 48, + "endOffset": 5163 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2265, + "endColumn": 65, + "endOffset": 2326 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-it/strings.xml", + "position": { + "startLine": 49, + "startColumn": 4, + "startOffset": 3833, + "endColumn": 65, + "endOffset": 3894 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 2331, + "endColumn": 49, + "endOffset": 2376 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-it/strings.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1023, + "endColumn": 49, + "endOffset": 1068 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 2381, + "endColumn": 50, + "endOffset": 2427 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-it/strings.xml", + "position": { + "startLine": 45, + "startColumn": 4, + "startOffset": 3527, + "endColumn": 50, + "endOffset": 3573 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 2432, + "endColumn": 40, + "endOffset": 2468 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-it/strings.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 552, + "endColumn": 40, + "endOffset": 588 + } + } + }, + { + "to": { + "startLine": 30, + "startColumn": 4, + "startOffset": 2473, + "endColumn": 41, + "endOffset": 2510 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-it/strings.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 510, + "endColumn": 41, + "endOffset": 547 + } + } + }, + { + "to": { + "startLine": 31, + "startColumn": 4, + "startOffset": 2515, + "endColumn": 54, + "endOffset": 2565 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-it/strings.xml", + "position": { + "startLine": 1, + "startColumn": 4, + "startOffset": 16, + "endColumn": 54, + "endOffset": 66 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 2570, + "endColumn": 143, + "endOffset": 2709 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-it/strings.xml", + "position": { + "startLine": 46, + "startColumn": 4, + "startOffset": 3578, + "endColumn": 143, + "endOffset": 3717 + } + } + }, + { + "to": { + "startLine": 33, + "startColumn": 4, + "startOffset": 2714, + "endColumn": 56, + "endOffset": 2766 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-it/strings.xml", + "position": { + "startLine": 25, + "startColumn": 4, + "startOffset": 1452, + "endColumn": 56, + "endOffset": 1504 + } + } + }, + { + "to": { + "startLine": 34, + "startColumn": 4, + "startOffset": 2771, + "endColumn": 67, + "endOffset": 2834 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-it/strings.xml", + "position": { + "startLine": 33, + "startColumn": 4, + "startOffset": 2076, + "endColumn": 67, + "endOffset": 2139 + } + } + }, + { + "to": { + "startLine": 35, + "startColumn": 4, + "startOffset": 2839, + "endColumn": 157, + "endOffset": 2992 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-it/strings.xml", + "position": { + "startLine": 34, + "startColumn": 4, + "startOffset": 2144, + "endColumn": 157, + "endOffset": 2297 + } + } + }, + { + "to": { + "startLine": 36, + "startColumn": 4, + "startOffset": 2997, + "endColumn": 63, + "endOffset": 3056 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-it/strings.xml", + "position": { + "startLine": 32, + "startColumn": 4, + "startOffset": 2012, + "endColumn": 63, + "endOffset": 2071 + } + } + }, + { + "to": { + "startLine": 37, + "startColumn": 4, + "startOffset": 3061, + "endColumn": 80, + "endOffset": 3137 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-it/strings.xml", + "position": { + "startLine": 58, + "startColumn": 4, + "startOffset": 4814, + "endColumn": 80, + "endOffset": 4890 + } + } + }, + { + "to": { + "startLine": 38, + "startColumn": 4, + "startOffset": 3142, + "endColumn": 61, + "endOffset": 3199 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-it/strings.xml", + "position": { + "startLine": 37, + "startColumn": 4, + "startOffset": 2656, + "endColumn": 61, + "endOffset": 2713 + } + } + }, + { + "to": { + "startLine": 39, + "startColumn": 4, + "startOffset": 3204, + "endColumn": 170, + "endOffset": 3370 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-it/strings.xml", + "position": { + "startLine": 38, + "startColumn": 4, + "startOffset": 2718, + "endColumn": 170, + "endOffset": 2884 + } + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 3375, + "endColumn": 57, + "endOffset": 3428 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-it/strings.xml", + "position": { + "startLine": 24, + "startColumn": 4, + "startOffset": 1382, + "endColumn": 69, + "endOffset": 1447 + } + } + }, + { + "to": { + "startLine": 41, + "startColumn": 4, + "startOffset": 3433, + "endColumn": 53, + "endOffset": 3482 + }, + "from": { + "file": "/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/values-it/values-it.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 53, + "endOffset": 104 + } + } + }, + { + "to": { + "startLine": 42, + "startColumn": 4, + "startOffset": 3487, + "endColumn": 71, + "endOffset": 3554 + }, + "from": { + "file": "/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/values-it/values-it.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 109, + "endColumn": 71, + "endOffset": 176 + } + } + }, + { + "to": { + "startLine": 43, + "startColumn": 4, + "startOffset": 3559, + "endColumn": 78, + "endOffset": 3633 + }, + "from": { + "file": "/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/values-it/values-it.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 181, + "endColumn": 78, + "endOffset": 255 + } + } + }, + { + "to": { + "startLine": 44, + "startColumn": 4, + "startOffset": 3638, + "endColumn": 70, + "endOffset": 3704 + }, + "from": { + "file": "/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/values-it/values-it.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 260, + "endColumn": 70, + "endOffset": 326 + } + } + }, + { + "to": { + "startLine": 45, + "startColumn": 4, + "startOffset": 3709, + "endColumn": 60, + "endOffset": 3765 + }, + "from": { + "file": "/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/values-it/values-it.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 331, + "endColumn": 60, + "endOffset": 387 + } + } + }, + { + "to": { + "startLine": 46, + "startColumn": 4, + "startOffset": 3770, + "endColumn": 55, + "endOffset": 3821 + }, + "from": { + "file": "/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/values-it/values-it.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 392, + "endColumn": 55, + "endOffset": 443 + } + } + }, + { + "to": { + "startLine": 47, + "startColumn": 4, + "startOffset": 3826, + "endColumn": 58, + "endOffset": 3880 + }, + "from": { + "file": "/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/values-it/values-it.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 448, + "endColumn": 58, + "endOffset": 502 + } + } + }, + { + "to": { + "startLine": 48, + "startColumn": 4, + "startOffset": 3885, + "endColumn": 73, + "endOffset": 3954 + }, + "from": { + "file": "/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/values-it/values-it.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 507, + "endColumn": 73, + "endOffset": 576 + } + } + }, + { + "to": { + "startLine": 49, + "startColumn": 4, + "startOffset": 3959, + "endColumn": 53, + "endOffset": 4008 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-it/strings.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 1328, + "endColumn": 53, + "endOffset": 1377 + } + } + }, + { + "to": { + "startLine": 50, + "startColumn": 4, + "startOffset": 4013, + "endColumn": 91, + "endOffset": 4100 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-it/strings.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 593, + "endColumn": 91, + "endOffset": 680 + } + } + }, + { + "to": { + "startLine": 51, + "startColumn": 4, + "startOffset": 4105, + "endColumn": 74, + "endOffset": 4175 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-it/strings.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 435, + "endColumn": 74, + "endOffset": 505 + } + } + }, + { + "to": { + "startLine": 52, + "startColumn": 4, + "startOffset": 4180, + "endColumn": 86, + "endOffset": 4262 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-it/strings.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 936, + "endColumn": 86, + "endOffset": 1018 + } + } + }, + { + "to": { + "startLine": 53, + "startColumn": 4, + "startOffset": 4267, + "endColumn": 50, + "endOffset": 4313 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-it/strings.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 384, + "endColumn": 50, + "endOffset": 430 + } + } + }, + { + "to": { + "startLine": 54, + "startColumn": 4, + "startOffset": 4318, + "endColumn": 51, + "endOffset": 4365 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-it/strings.xml", + "position": { + "startLine": 53, + "startColumn": 4, + "startOffset": 4398, + "endColumn": 51, + "endOffset": 4445 + } + } + }, + { + "to": { + "startLine": 55, + "startColumn": 4, + "startOffset": 4370, + "endColumn": 145, + "endOffset": 4511 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-it/strings.xml", + "position": { + "startLine": 54, + "startColumn": 4, + "startOffset": 4450, + "endColumn": 145, + "endOffset": 4591 + } + } + }, + { + "to": { + "startLine": 56, + "startColumn": 4, + "startOffset": 4516, + "endColumn": 61, + "endOffset": 4573 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-it/strings.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1073, + "endColumn": 61, + "endOffset": 1130 + } + } + }, + { + "to": { + "startLine": 57, + "startColumn": 4, + "startOffset": 4578, + "endColumn": 77, + "endOffset": 4651 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-it/strings.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1135, + "endColumn": 77, + "endOffset": 1208 + } + } + }, + { + "to": { + "startLine": 58, + "startColumn": 4, + "startOffset": 4656, + "endColumn": 76, + "endOffset": 4728 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-it/strings.xml", + "position": { + "startLine": 57, + "startColumn": 4, + "startOffset": 4737, + "endColumn": 76, + "endOffset": 4809 + } + } + }, + { + "to": { + "startLine": 59, + "startColumn": 4, + "startOffset": 4733, + "endColumn": 73, + "endOffset": 4802 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-it/strings.xml", + "position": { + "startLine": 61, + "startColumn": 4, + "startOffset": 5045, + "endColumn": 73, + "endOffset": 5114 + } + } + }, + { + "to": { + "startLine": 60, + "startColumn": 4, + "startOffset": 4807, + "endColumn": 68, + "endOffset": 4871 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-it/strings.xml", + "position": { + "startLine": 60, + "startColumn": 4, + "startOffset": 4976, + "endColumn": 68, + "endOffset": 5040 + } + } + }, + { + "to": { + "startLine": 61, + "startColumn": 4, + "startOffset": 4876, + "endColumn": 61, + "endOffset": 4933 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-it/strings.xml", + "position": { + "startLine": 51, + "startColumn": 4, + "startOffset": 4080, + "endColumn": 61, + "endOffset": 4137 + } + } + }, + { + "to": { + "startLine": 62, + "startColumn": 4, + "startOffset": 4938, + "endColumn": 255, + "endOffset": 5189 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-it/strings.xml", + "position": { + "startLine": 52, + "startColumn": 4, + "startOffset": 4142, + "endColumn": 255, + "endOffset": 4393 + } + } + }, + { + "to": { + "startLine": 63, + "startColumn": 4, + "startOffset": 5194, + "endColumn": 59, + "endOffset": 5249 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-it/strings.xml", + "position": { + "startLine": 48, + "startColumn": 4, + "startOffset": 3773, + "endColumn": 59, + "endOffset": 3828 + } + } + }, + { + "to": { + "startLine": 64, + "startColumn": 4, + "startOffset": 5254, + "endColumn": 50, + "endOffset": 5300 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-it/strings.xml", + "position": { + "startLine": 47, + "startColumn": 4, + "startOffset": 3722, + "endColumn": 50, + "endOffset": 3768 + } + } + }, + { + "to": { + "startLine": 65, + "startColumn": 4, + "startOffset": 5305, + "endColumn": 61, + "endOffset": 5362 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-it/strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 221, + "endColumn": 61, + "endOffset": 278 + } + } + }, + { + "to": { + "startLine": 66, + "startColumn": 4, + "startOffset": 5367, + "endColumn": 68, + "endOffset": 5431 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-it/strings.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 867, + "endColumn": 68, + "endOffset": 931 + } + } + }, + { + "to": { + "startLine": 67, + "startColumn": 4, + "startOffset": 5436, + "endColumn": 55, + "endOffset": 5487 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-it/strings.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 1509, + "endColumn": 55, + "endOffset": 1560 + } + } + }, + { + "to": { + "startLine": 68, + "startColumn": 4, + "startOffset": 5492, + "endColumn": 72, + "endOffset": 5560 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-it/strings.xml", + "position": { + "startLine": 35, + "startColumn": 4, + "startOffset": 2302, + "endColumn": 72, + "endOffset": 2370 + } + } + }, + { + "to": { + "startLine": 69, + "startColumn": 4, + "startOffset": 5565, + "endColumn": 280, + "endOffset": 5841 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-it/strings.xml", + "position": { + "startLine": 36, + "startColumn": 4, + "startOffset": 2375, + "endColumn": 280, + "endOffset": 2651 + } + } + }, + { + "to": { + "startLine": 70, + "startColumn": 4, + "startOffset": 5846, + "endColumn": 180, + "endOffset": 6022 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-it/strings.xml", + "position": { + "startLine": 50, + "startColumn": 4, + "startOffset": 3899, + "endColumn": 180, + "endOffset": 4075 + } + } + }, + { + "to": { + "startLine": 71, + "startColumn": 4, + "startOffset": 6027, + "endColumn": 80, + "endOffset": 6103 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-it/strings.xml", + "position": { + "startLine": 59, + "startColumn": 4, + "startOffset": 4895, + "endColumn": 80, + "endOffset": 4971 + } + } + }, + { + "to": { + "startLine": 72, + "startColumn": 4, + "startOffset": 6108, + "endColumn": 114, + "endOffset": 6218 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-it/strings.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 1213, + "endColumn": 114, + "endOffset": 1323 + } + } + }, + { + "to": { + "startLine": 73, + "startColumn": 4, + "startOffset": 6223, + "endColumn": 56, + "endOffset": 6275 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-it/strings.xml", + "position": { + "startLine": 41, + "startColumn": 4, + "startOffset": 3092, + "endColumn": 56, + "endOffset": 3144 + } + } + }, + { + "to": { + "startLine": 74, + "startColumn": 4, + "startOffset": 6280, + "endColumn": 85, + "endOffset": 6361 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-it/strings.xml", + "position": { + "startLine": 42, + "startColumn": 4, + "startOffset": 3149, + "endColumn": 85, + "endOffset": 3230 + } + } + }, + { + "to": { + "startLine": 75, + "startColumn": 4, + "startOffset": 6366, + "endColumn": 49, + "endOffset": 6411 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-it/strings.xml", + "position": { + "startLine": 31, + "startColumn": 4, + "startOffset": 1962, + "endColumn": 49, + "endOffset": 2007 + } + } + }, + { + "to": { + "startLine": 76, + "startColumn": 4, + "startOffset": 6416, + "endColumn": 58, + "endOffset": 6470 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-it/strings.xml", + "position": { + "startLine": 27, + "startColumn": 4, + "startOffset": 1565, + "endColumn": 58, + "endOffset": 1619 + } + } + }, + { + "to": { + "startLine": 77, + "startColumn": 4, + "startOffset": 6475, + "endColumn": 164, + "endOffset": 6635 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-it/strings.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 1697, + "endColumn": 164, + "endOffset": 1857 + } + } + }, + { + "to": { + "startLine": 78, + "startColumn": 4, + "startOffset": 6640, + "endColumn": 99, + "endOffset": 6735 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-it/strings.xml", + "position": { + "startLine": 30, + "startColumn": 4, + "startOffset": 1862, + "endColumn": 99, + "endOffset": 1957 + } + } + }, + { + "to": { + "startLine": 79, + "startColumn": 4, + "startOffset": 6740, + "endColumn": 72, + "endOffset": 6808 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-it/strings.xml", + "position": { + "startLine": 28, + "startColumn": 4, + "startOffset": 1624, + "endColumn": 72, + "endOffset": 1692 + } + } + }, + { + "to": { + "startLine": 80, + "startColumn": 4, + "startOffset": 6813, + "endColumn": 72, + "endOffset": 6881 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-it/strings.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 685, + "endColumn": 72, + "endOffset": 753 + } + } + }, + { + "to": { + "startLine": 81, + "startColumn": 4, + "startOffset": 6886, + "endColumn": 221, + "endOffset": 7103 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-it/strings.xml", + "position": { + "startLine": 44, + "startColumn": 4, + "startOffset": 3305, + "endColumn": 221, + "endOffset": 3522 + } + } + }, + { + "to": { + "startLine": 82, + "startColumn": 4, + "startOffset": 7108, + "endColumn": 69, + "endOffset": 7173 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-it/strings.xml", + "position": { + "startLine": 43, + "startColumn": 4, + "startOffset": 3235, + "endColumn": 69, + "endOffset": 3300 + } + } + }, + { + "to": { + "startLine": 83, + "startColumn": 4, + "startOffset": 7178, + "endColumn": 100, + "endOffset": 7274 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-it/values-it.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2006, + "endColumn": 100, + "endOffset": 2102 + } + } + }, + { + "to": { + "startLine": 84, + "startColumn": 4, + "startOffset": 7279, + "endColumn": 68, + "endOffset": 7343 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-it/strings.xml", + "position": { + "startLine": 63, + "startColumn": 4, + "startOffset": 5168, + "endColumn": 68, + "endOffset": 5232 + } + } + }, + { + "to": { + "startLine": 85, + "startColumn": 4, + "startOffset": 7348, + "endColumn": 100, + "endOffset": 7444 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-it/strings.xml", + "position": { + "startLine": 64, + "startColumn": 4, + "startOffset": 5237, + "endColumn": 100, + "endOffset": 5333 + } + } + }, + { + "to": { + "startLine": 86, + "startColumn": 4, + "startOffset": 7449, + "endColumn": 52, + "endOffset": 7497 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-it/strings.xml", + "position": { + "startLine": 55, + "startColumn": 4, + "startOffset": 4596, + "endColumn": 52, + "endOffset": 4644 + } + } + }, + { + "to": { + "startLine": 87, + "startColumn": 4, + "startOffset": 7502, + "endColumn": 87, + "endOffset": 7585 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-it/strings.xml", + "position": { + "startLine": 56, + "startColumn": 4, + "startOffset": 4649, + "endColumn": 87, + "endOffset": 4732 + } + } + }, + { + "to": { + "startLine": 88, + "startColumn": 4, + "startOffset": 7590, + "endColumn": 87, + "endOffset": 7673 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-it/strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 133, + "endColumn": 87, + "endOffset": 216 + } + } + }, + { + "to": { + "startLine": 89, + "startColumn": 4, + "startOffset": 7678, + "endColumn": 59, + "endOffset": 7733 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-it/strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 72, + "endColumn": 59, + "endOffset": 127 + } + } + }, + { + "to": { + "startLine": 90, + "startColumn": 4, + "startOffset": 7738, + "endColumn": 63, + "endOffset": 7797 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-it/strings.xml", + "position": { + "startLine": 39, + "startColumn": 4, + "startOffset": 2889, + "endColumn": 63, + "endOffset": 2948 + } + } + }, + { + "to": { + "startLine": 91, + "startColumn": 4, + "startOffset": 7802, + "endColumn": 138, + "endOffset": 7936 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-it/strings.xml", + "position": { + "startLine": 40, + "startColumn": 4, + "startOffset": 2953, + "endColumn": 138, + "endOffset": 3087 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/multi/values-iw.json b/android/build/intermediates/blame/res/debug/multi/values-iw.json new file mode 100644 index 000000000..1507f67b0 --- /dev/null +++ b/android/build/intermediates/blame/res/debug/multi/values-iw.json @@ -0,0 +1,387 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-iw/values-iw.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 103, + "endOffset": 154 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-iw/values-iw.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 103, + "endOffset": 154 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 159, + "endColumn": 109, + "endOffset": 264 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-iw/values-iw.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 159, + "endColumn": 109, + "endOffset": 264 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 269, + "endColumn": 125, + "endOffset": 390 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-iw/values-iw.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 269, + "endColumn": 125, + "endOffset": 390 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 395, + "endColumn": 98, + "endOffset": 489 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-iw/values-iw.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 395, + "endColumn": 98, + "endOffset": 489 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 494, + "endColumn": 107, + "endOffset": 597 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-iw/values-iw.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 494, + "endColumn": 107, + "endOffset": 597 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 602, + "endColumn": 83, + "endOffset": 681 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-iw/values-iw.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 602, + "endColumn": 83, + "endOffset": 681 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 686, + "endColumn": 99, + "endOffset": 781 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-iw/values-iw.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 686, + "endColumn": 99, + "endOffset": 781 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 786, + "endColumn": 113, + "endOffset": 895 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-iw/values-iw.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 786, + "endColumn": 113, + "endOffset": 895 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 900, + "endColumn": 77, + "endOffset": 973 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-iw/values-iw.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 900, + "endColumn": 77, + "endOffset": 973 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 978, + "endColumn": 77, + "endOffset": 1051 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-iw/values-iw.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 978, + "endColumn": 77, + "endOffset": 1051 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1056, + "endColumn": 78, + "endOffset": 1130 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-iw/values-iw.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1056, + "endColumn": 78, + "endOffset": 1130 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1135, + "endColumn": 101, + "endOffset": 1232 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-iw/values-iw.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1135, + "endColumn": 101, + "endOffset": 1232 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1237, + "endColumn": 103, + "endOffset": 1336 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-iw/values-iw.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1237, + "endColumn": 103, + "endOffset": 1336 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1341, + "endColumn": 95, + "endOffset": 1432 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-iw/values-iw.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1341, + "endColumn": 95, + "endOffset": 1432 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1437, + "endColumn": 102, + "endOffset": 1535 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-iw/values-iw.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1437, + "endColumn": 102, + "endOffset": 1535 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1540, + "endColumn": 100, + "endOffset": 1636 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-iw/values-iw.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1540, + "endColumn": 100, + "endOffset": 1636 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1641, + "endColumn": 99, + "endOffset": 1736 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-iw/values-iw.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1641, + "endColumn": 99, + "endOffset": 1736 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1741, + "endColumn": 115, + "endOffset": 1852 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-iw/values-iw.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1741, + "endColumn": 115, + "endOffset": 1852 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1857, + "endColumn": 95, + "endOffset": 1948 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-iw/values-iw.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1857, + "endColumn": 95, + "endOffset": 1948 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1953, + "endColumn": 102, + "endOffset": 2051 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-iw/values-iw.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1953, + "endColumn": 102, + "endOffset": 2051 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/multi/values-ja.json b/android/build/intermediates/blame/res/debug/multi/values-ja.json new file mode 100644 index 000000000..24770c818 --- /dev/null +++ b/android/build/intermediates/blame/res/debug/multi/values-ja.json @@ -0,0 +1,1717 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ja/values-ja.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 96, + "endOffset": 147 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ja/values-ja.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 96, + "endOffset": 147 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 152, + "endColumn": 106, + "endOffset": 254 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ja/values-ja.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 152, + "endColumn": 106, + "endOffset": 254 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 259, + "endColumn": 120, + "endOffset": 375 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ja/values-ja.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 259, + "endColumn": 120, + "endOffset": 375 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 380, + "endColumn": 92, + "endOffset": 468 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ja/values-ja.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 380, + "endColumn": 92, + "endOffset": 468 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 473, + "endColumn": 104, + "endOffset": 573 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ja/values-ja.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 473, + "endColumn": 104, + "endOffset": 573 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 578, + "endColumn": 81, + "endOffset": 655 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ja/values-ja.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 578, + "endColumn": 81, + "endOffset": 655 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 660, + "endColumn": 97, + "endOffset": 753 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ja/values-ja.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 660, + "endColumn": 97, + "endOffset": 753 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 758, + "endColumn": 107, + "endOffset": 861 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ja/values-ja.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 758, + "endColumn": 107, + "endOffset": 861 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 866, + "endColumn": 76, + "endOffset": 938 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ja/values-ja.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 866, + "endColumn": 76, + "endOffset": 938 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 943, + "endColumn": 75, + "endOffset": 1014 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ja/values-ja.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 943, + "endColumn": 75, + "endOffset": 1014 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1019, + "endColumn": 77, + "endOffset": 1092 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ja/values-ja.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1019, + "endColumn": 77, + "endOffset": 1092 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1097, + "endColumn": 101, + "endOffset": 1194 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ja/values-ja.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1097, + "endColumn": 101, + "endOffset": 1194 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1199, + "endColumn": 98, + "endOffset": 1293 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ja/values-ja.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1199, + "endColumn": 98, + "endOffset": 1293 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1298, + "endColumn": 94, + "endOffset": 1388 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ja/values-ja.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1298, + "endColumn": 94, + "endOffset": 1388 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1393, + "endColumn": 102, + "endOffset": 1491 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ja/values-ja.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1393, + "endColumn": 102, + "endOffset": 1491 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1496, + "endColumn": 94, + "endOffset": 1586 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ja/values-ja.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1496, + "endColumn": 94, + "endOffset": 1586 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1591, + "endColumn": 95, + "endOffset": 1682 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ja/values-ja.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1591, + "endColumn": 95, + "endOffset": 1682 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1687, + "endColumn": 110, + "endOffset": 1793 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ja/values-ja.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1687, + "endColumn": 110, + "endOffset": 1793 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1798, + "endColumn": 96, + "endOffset": 1890 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ja/values-ja.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1798, + "endColumn": 96, + "endOffset": 1890 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1895, + "endColumn": 54, + "endOffset": 1945 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-ja/strings.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 708, + "endColumn": 54, + "endOffset": 758 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 1950, + "endColumn": 48, + "endOffset": 1994 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-ja/strings.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 659, + "endColumn": 48, + "endOffset": 703 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 1999, + "endColumn": 44, + "endOffset": 2039 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-ja/strings.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 298, + "endColumn": 44, + "endOffset": 338 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2044, + "endColumn": 43, + "endOffset": 2083 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-ja/strings.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 254, + "endColumn": 43, + "endOffset": 293 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2088, + "endColumn": 41, + "endOffset": 2125 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-ja/strings.xml", + "position": { + "startLine": 62, + "startColumn": 4, + "startOffset": 3763, + "endColumn": 41, + "endOffset": 3800 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2130, + "endColumn": 49, + "endOffset": 2175 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-ja/strings.xml", + "position": { + "startLine": 49, + "startColumn": 4, + "startOffset": 2852, + "endColumn": 49, + "endOffset": 2897 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 2180, + "endColumn": 47, + "endOffset": 2223 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-ja/strings.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 918, + "endColumn": 47, + "endOffset": 961 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 2228, + "endColumn": 43, + "endOffset": 2267 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-ja/strings.xml", + "position": { + "startLine": 45, + "startColumn": 4, + "startOffset": 2572, + "endColumn": 43, + "endOffset": 2611 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 2272, + "endColumn": 41, + "endOffset": 2309 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-ja/strings.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 491, + "endColumn": 41, + "endOffset": 528 + } + } + }, + { + "to": { + "startLine": 30, + "startColumn": 4, + "startOffset": 2314, + "endColumn": 41, + "endOffset": 2351 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-ja/strings.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 449, + "endColumn": 41, + "endOffset": 486 + } + } + }, + { + "to": { + "startLine": 31, + "startColumn": 4, + "startOffset": 2356, + "endColumn": 54, + "endOffset": 2406 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-ja/strings.xml", + "position": { + "startLine": 1, + "startColumn": 4, + "startOffset": 16, + "endColumn": 54, + "endOffset": 66 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 2411, + "endColumn": 129, + "endOffset": 2536 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-ja/strings.xml", + "position": { + "startLine": 46, + "startColumn": 4, + "startOffset": 2616, + "endColumn": 129, + "endOffset": 2741 + } + } + }, + { + "to": { + "startLine": 33, + "startColumn": 4, + "startOffset": 2541, + "endColumn": 42, + "endOffset": 2579 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-ja/strings.xml", + "position": { + "startLine": 25, + "startColumn": 4, + "startOffset": 1256, + "endColumn": 42, + "endOffset": 1294 + } + } + }, + { + "to": { + "startLine": 34, + "startColumn": 4, + "startOffset": 2584, + "endColumn": 52, + "endOffset": 2632 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-ja/strings.xml", + "position": { + "startLine": 33, + "startColumn": 4, + "startOffset": 1684, + "endColumn": 52, + "endOffset": 1732 + } + } + }, + { + "to": { + "startLine": 35, + "startColumn": 4, + "startOffset": 2637, + "endColumn": 98, + "endOffset": 2731 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-ja/strings.xml", + "position": { + "startLine": 34, + "startColumn": 4, + "startOffset": 1737, + "endColumn": 98, + "endOffset": 1831 + } + } + }, + { + "to": { + "startLine": 36, + "startColumn": 4, + "startOffset": 2736, + "endColumn": 47, + "endOffset": 2779 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-ja/strings.xml", + "position": { + "startLine": 32, + "startColumn": 4, + "startOffset": 1636, + "endColumn": 47, + "endOffset": 1679 + } + } + }, + { + "to": { + "startLine": 37, + "startColumn": 4, + "startOffset": 2784, + "endColumn": 66, + "endOffset": 2846 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-ja/strings.xml", + "position": { + "startLine": 58, + "startColumn": 4, + "startOffset": 3525, + "endColumn": 66, + "endOffset": 3587 + } + } + }, + { + "to": { + "startLine": 38, + "startColumn": 4, + "startOffset": 2851, + "endColumn": 50, + "endOffset": 2897 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-ja/strings.xml", + "position": { + "startLine": 37, + "startColumn": 4, + "startOffset": 2021, + "endColumn": 50, + "endOffset": 2067 + } + } + }, + { + "to": { + "startLine": 39, + "startColumn": 4, + "startOffset": 2902, + "endColumn": 84, + "endOffset": 2982 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-ja/strings.xml", + "position": { + "startLine": 38, + "startColumn": 4, + "startOffset": 2072, + "endColumn": 84, + "endOffset": 2152 + } + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 2987, + "endColumn": 40, + "endOffset": 3023 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-ja/strings.xml", + "position": { + "startLine": 24, + "startColumn": 4, + "startOffset": 1203, + "endColumn": 52, + "endOffset": 1251 + } + } + }, + { + "to": { + "startLine": 41, + "startColumn": 4, + "startOffset": 3028, + "endColumn": 53, + "endOffset": 3077 + }, + "from": { + "file": "/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/values-ja/values-ja.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 53, + "endOffset": 104 + } + } + }, + { + "to": { + "startLine": 42, + "startColumn": 4, + "startOffset": 3082, + "endColumn": 60, + "endOffset": 3138 + }, + "from": { + "file": "/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/values-ja/values-ja.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 109, + "endColumn": 60, + "endOffset": 165 + } + } + }, + { + "to": { + "startLine": 43, + "startColumn": 4, + "startOffset": 3143, + "endColumn": 78, + "endOffset": 3217 + }, + "from": { + "file": "/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/values-ja/values-ja.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 170, + "endColumn": 78, + "endOffset": 244 + } + } + }, + { + "to": { + "startLine": 44, + "startColumn": 4, + "startOffset": 3222, + "endColumn": 70, + "endOffset": 3288 + }, + "from": { + "file": "/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/values-ja/values-ja.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 249, + "endColumn": 70, + "endOffset": 315 + } + } + }, + { + "to": { + "startLine": 45, + "startColumn": 4, + "startOffset": 3293, + "endColumn": 61, + "endOffset": 3350 + }, + "from": { + "file": "/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/values-ja/values-ja.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 320, + "endColumn": 61, + "endOffset": 377 + } + } + }, + { + "to": { + "startLine": 46, + "startColumn": 4, + "startOffset": 3355, + "endColumn": 55, + "endOffset": 3406 + }, + "from": { + "file": "/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/values-ja/values-ja.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 382, + "endColumn": 55, + "endOffset": 433 + } + } + }, + { + "to": { + "startLine": 47, + "startColumn": 4, + "startOffset": 3411, + "endColumn": 58, + "endOffset": 3465 + }, + "from": { + "file": "/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/values-ja/values-ja.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 438, + "endColumn": 58, + "endOffset": 492 + } + } + }, + { + "to": { + "startLine": 48, + "startColumn": 4, + "startOffset": 3470, + "endColumn": 73, + "endOffset": 3539 + }, + "from": { + "file": "/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/values-ja/values-ja.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 497, + "endColumn": 73, + "endOffset": 566 + } + } + }, + { + "to": { + "startLine": 49, + "startColumn": 4, + "startOffset": 3544, + "endColumn": 44, + "endOffset": 3584 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-ja/strings.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 1158, + "endColumn": 44, + "endOffset": 1198 + } + } + }, + { + "to": { + "startLine": 50, + "startColumn": 4, + "startOffset": 3589, + "endColumn": 73, + "endOffset": 3658 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-ja/strings.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 533, + "endColumn": 73, + "endOffset": 602 + } + } + }, + { + "to": { + "startLine": 51, + "startColumn": 4, + "startOffset": 3663, + "endColumn": 60, + "endOffset": 3719 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-ja/strings.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 388, + "endColumn": 60, + "endOffset": 444 + } + } + }, + { + "to": { + "startLine": 52, + "startColumn": 4, + "startOffset": 3724, + "endColumn": 88, + "endOffset": 3808 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-ja/strings.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 829, + "endColumn": 88, + "endOffset": 913 + } + } + }, + { + "to": { + "startLine": 53, + "startColumn": 4, + "startOffset": 3813, + "endColumn": 44, + "endOffset": 3853 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-ja/strings.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 343, + "endColumn": 44, + "endOffset": 383 + } + } + }, + { + "to": { + "startLine": 54, + "startColumn": 4, + "startOffset": 3858, + "endColumn": 50, + "endOffset": 3904 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-ja/strings.xml", + "position": { + "startLine": 53, + "startColumn": 4, + "startOffset": 3205, + "endColumn": 50, + "endOffset": 3251 + } + } + }, + { + "to": { + "startLine": 55, + "startColumn": 4, + "startOffset": 3909, + "endColumn": 81, + "endOffset": 3986 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-ja/strings.xml", + "position": { + "startLine": 54, + "startColumn": 4, + "startOffset": 3256, + "endColumn": 81, + "endOffset": 3333 + } + } + }, + { + "to": { + "startLine": 56, + "startColumn": 4, + "startOffset": 3991, + "endColumn": 47, + "endOffset": 4034 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-ja/strings.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 966, + "endColumn": 47, + "endOffset": 1009 + } + } + }, + { + "to": { + "startLine": 57, + "startColumn": 4, + "startOffset": 4039, + "endColumn": 70, + "endOffset": 4105 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-ja/strings.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1014, + "endColumn": 70, + "endOffset": 1080 + } + } + }, + { + "to": { + "startLine": 58, + "startColumn": 4, + "startOffset": 4110, + "endColumn": 65, + "endOffset": 4171 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-ja/strings.xml", + "position": { + "startLine": 57, + "startColumn": 4, + "startOffset": 3459, + "endColumn": 65, + "endOffset": 3520 + } + } + }, + { + "to": { + "startLine": 59, + "startColumn": 4, + "startOffset": 4176, + "endColumn": 54, + "endOffset": 4226 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-ja/strings.xml", + "position": { + "startLine": 61, + "startColumn": 4, + "startOffset": 3708, + "endColumn": 54, + "endOffset": 3758 + } + } + }, + { + "to": { + "startLine": 60, + "startColumn": 4, + "startOffset": 4231, + "endColumn": 53, + "endOffset": 4280 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-ja/strings.xml", + "position": { + "startLine": 60, + "startColumn": 4, + "startOffset": 3654, + "endColumn": 53, + "endOffset": 3703 + } + } + }, + { + "to": { + "startLine": 61, + "startColumn": 4, + "startOffset": 4285, + "endColumn": 58, + "endOffset": 4339 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-ja/strings.xml", + "position": { + "startLine": 51, + "startColumn": 4, + "startOffset": 3018, + "endColumn": 58, + "endOffset": 3072 + } + } + }, + { + "to": { + "startLine": 62, + "startColumn": 4, + "startOffset": 4344, + "endColumn": 127, + "endOffset": 4467 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-ja/strings.xml", + "position": { + "startLine": 52, + "startColumn": 4, + "startOffset": 3077, + "endColumn": 127, + "endOffset": 3200 + } + } + }, + { + "to": { + "startLine": 63, + "startColumn": 4, + "startOffset": 4472, + "endColumn": 54, + "endOffset": 4522 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-ja/strings.xml", + "position": { + "startLine": 48, + "startColumn": 4, + "startOffset": 2797, + "endColumn": 54, + "endOffset": 2847 + } + } + }, + { + "to": { + "startLine": 64, + "startColumn": 4, + "startOffset": 4527, + "endColumn": 50, + "endOffset": 4573 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-ja/strings.xml", + "position": { + "startLine": 47, + "startColumn": 4, + "startOffset": 2746, + "endColumn": 50, + "endOffset": 2792 + } + } + }, + { + "to": { + "startLine": 65, + "startColumn": 4, + "startOffset": 4578, + "endColumn": 54, + "endOffset": 4628 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-ja/strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 199, + "endColumn": 54, + "endOffset": 249 + } + } + }, + { + "to": { + "startLine": 66, + "startColumn": 4, + "startOffset": 4633, + "endColumn": 65, + "endOffset": 4694 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-ja/strings.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 763, + "endColumn": 65, + "endOffset": 824 + } + } + }, + { + "to": { + "startLine": 67, + "startColumn": 4, + "startOffset": 4699, + "endColumn": 44, + "endOffset": 4739 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-ja/strings.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 1299, + "endColumn": 44, + "endOffset": 1339 + } + } + }, + { + "to": { + "startLine": 68, + "startColumn": 4, + "startOffset": 4744, + "endColumn": 56, + "endOffset": 4796 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-ja/strings.xml", + "position": { + "startLine": 35, + "startColumn": 4, + "startOffset": 1836, + "endColumn": 56, + "endOffset": 1888 + } + } + }, + { + "to": { + "startLine": 69, + "startColumn": 4, + "startOffset": 4801, + "endColumn": 127, + "endOffset": 4924 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-ja/strings.xml", + "position": { + "startLine": 36, + "startColumn": 4, + "startOffset": 1893, + "endColumn": 127, + "endOffset": 2016 + } + } + }, + { + "to": { + "startLine": 70, + "startColumn": 4, + "startOffset": 4929, + "endColumn": 115, + "endOffset": 5040 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-ja/strings.xml", + "position": { + "startLine": 50, + "startColumn": 4, + "startOffset": 2902, + "endColumn": 115, + "endOffset": 3013 + } + } + }, + { + "to": { + "startLine": 71, + "startColumn": 4, + "startOffset": 5045, + "endColumn": 61, + "endOffset": 5102 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-ja/strings.xml", + "position": { + "startLine": 59, + "startColumn": 4, + "startOffset": 3592, + "endColumn": 61, + "endOffset": 3649 + } + } + }, + { + "to": { + "startLine": 72, + "startColumn": 4, + "startOffset": 5107, + "endColumn": 72, + "endOffset": 5175 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-ja/strings.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 1085, + "endColumn": 72, + "endOffset": 1153 + } + } + }, + { + "to": { + "startLine": 73, + "startColumn": 4, + "startOffset": 5180, + "endColumn": 49, + "endOffset": 5225 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-ja/strings.xml", + "position": { + "startLine": 41, + "startColumn": 4, + "startOffset": 2292, + "endColumn": 49, + "endOffset": 2337 + } + } + }, + { + "to": { + "startLine": 74, + "startColumn": 4, + "startOffset": 5230, + "endColumn": 64, + "endOffset": 5290 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-ja/strings.xml", + "position": { + "startLine": 42, + "startColumn": 4, + "startOffset": 2342, + "endColumn": 64, + "endOffset": 2402 + } + } + }, + { + "to": { + "startLine": 75, + "startColumn": 4, + "startOffset": 5295, + "endColumn": 39, + "endOffset": 5330 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-ja/strings.xml", + "position": { + "startLine": 31, + "startColumn": 4, + "startOffset": 1596, + "endColumn": 39, + "endOffset": 1631 + } + } + }, + { + "to": { + "startLine": 76, + "startColumn": 4, + "startOffset": 5335, + "endColumn": 46, + "endOffset": 5377 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-ja/strings.xml", + "position": { + "startLine": 27, + "startColumn": 4, + "startOffset": 1344, + "endColumn": 46, + "endOffset": 1386 + } + } + }, + { + "to": { + "startLine": 77, + "startColumn": 4, + "startOffset": 5382, + "endColumn": 83, + "endOffset": 5461 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-ja/strings.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 1445, + "endColumn": 83, + "endOffset": 1524 + } + } + }, + { + "to": { + "startLine": 78, + "startColumn": 4, + "startOffset": 5466, + "endColumn": 66, + "endOffset": 5528 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-ja/strings.xml", + "position": { + "startLine": 30, + "startColumn": 4, + "startOffset": 1529, + "endColumn": 66, + "endOffset": 1591 + } + } + }, + { + "to": { + "startLine": 79, + "startColumn": 4, + "startOffset": 5533, + "endColumn": 53, + "endOffset": 5582 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-ja/strings.xml", + "position": { + "startLine": 28, + "startColumn": 4, + "startOffset": 1391, + "endColumn": 53, + "endOffset": 1440 + } + } + }, + { + "to": { + "startLine": 80, + "startColumn": 4, + "startOffset": 5587, + "endColumn": 51, + "endOffset": 5634 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-ja/strings.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 607, + "endColumn": 51, + "endOffset": 654 + } + } + }, + { + "to": { + "startLine": 81, + "startColumn": 4, + "startOffset": 5639, + "endColumn": 113, + "endOffset": 5748 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-ja/strings.xml", + "position": { + "startLine": 44, + "startColumn": 4, + "startOffset": 2458, + "endColumn": 113, + "endOffset": 2567 + } + } + }, + { + "to": { + "startLine": 82, + "startColumn": 4, + "startOffset": 5753, + "endColumn": 50, + "endOffset": 5799 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-ja/strings.xml", + "position": { + "startLine": 43, + "startColumn": 4, + "startOffset": 2407, + "endColumn": 50, + "endOffset": 2453 + } + } + }, + { + "to": { + "startLine": 83, + "startColumn": 4, + "startOffset": 5804, + "endColumn": 100, + "endOffset": 5900 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ja/values-ja.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1895, + "endColumn": 100, + "endOffset": 1991 + } + } + }, + { + "to": { + "startLine": 84, + "startColumn": 4, + "startOffset": 5905, + "endColumn": 54, + "endOffset": 5955 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-ja/strings.xml", + "position": { + "startLine": 63, + "startColumn": 4, + "startOffset": 3805, + "endColumn": 54, + "endOffset": 3855 + } + } + }, + { + "to": { + "startLine": 85, + "startColumn": 4, + "startOffset": 5960, + "endColumn": 74, + "endOffset": 6030 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-ja/strings.xml", + "position": { + "startLine": 64, + "startColumn": 4, + "startOffset": 3860, + "endColumn": 74, + "endOffset": 3930 + } + } + }, + { + "to": { + "startLine": 86, + "startColumn": 4, + "startOffset": 6035, + "endColumn": 50, + "endOffset": 6081 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-ja/strings.xml", + "position": { + "startLine": 55, + "startColumn": 4, + "startOffset": 3338, + "endColumn": 50, + "endOffset": 3384 + } + } + }, + { + "to": { + "startLine": 87, + "startColumn": 4, + "startOffset": 6086, + "endColumn": 69, + "endOffset": 6151 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-ja/strings.xml", + "position": { + "startLine": 56, + "startColumn": 4, + "startOffset": 3389, + "endColumn": 69, + "endOffset": 3454 + } + } + }, + { + "to": { + "startLine": 88, + "startColumn": 4, + "startOffset": 6156, + "endColumn": 68, + "endOffset": 6220 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-ja/strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 130, + "endColumn": 68, + "endOffset": 194 + } + } + }, + { + "to": { + "startLine": 89, + "startColumn": 4, + "startOffset": 6225, + "endColumn": 56, + "endOffset": 6277 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-ja/strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 72, + "endColumn": 56, + "endOffset": 124 + } + } + }, + { + "to": { + "startLine": 90, + "startColumn": 4, + "startOffset": 6282, + "endColumn": 46, + "endOffset": 6324 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-ja/strings.xml", + "position": { + "startLine": 39, + "startColumn": 4, + "startOffset": 2157, + "endColumn": 46, + "endOffset": 2199 + } + } + }, + { + "to": { + "startLine": 91, + "startColumn": 4, + "startOffset": 6329, + "endColumn": 87, + "endOffset": 6412 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-ja/strings.xml", + "position": { + "startLine": 40, + "startColumn": 4, + "startOffset": 2204, + "endColumn": 87, + "endOffset": 2287 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/multi/values-ka-rGE.json b/android/build/intermediates/blame/res/debug/multi/values-ka-rGE.json new file mode 100644 index 000000000..11791665c --- /dev/null +++ b/android/build/intermediates/blame/res/debug/multi/values-ka-rGE.json @@ -0,0 +1,387 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ka-rGE/values-ka-rGE.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 108, + "endOffset": 159 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ka-rGE/values-ka-rGE.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 108, + "endOffset": 159 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 164, + "endColumn": 107, + "endOffset": 267 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ka-rGE/values-ka-rGE.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 164, + "endColumn": 107, + "endOffset": 267 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 272, + "endColumn": 122, + "endOffset": 390 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ka-rGE/values-ka-rGE.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 272, + "endColumn": 122, + "endOffset": 390 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 395, + "endColumn": 103, + "endOffset": 494 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ka-rGE/values-ka-rGE.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 395, + "endColumn": 103, + "endOffset": 494 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 499, + "endColumn": 110, + "endOffset": 605 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ka-rGE/values-ka-rGE.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 499, + "endColumn": 110, + "endOffset": 605 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 610, + "endColumn": 87, + "endOffset": 693 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ka-rGE/values-ka-rGE.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 610, + "endColumn": 87, + "endOffset": 693 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 698, + "endColumn": 104, + "endOffset": 798 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ka-rGE/values-ka-rGE.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 698, + "endColumn": 104, + "endOffset": 798 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 803, + "endColumn": 112, + "endOffset": 911 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ka-rGE/values-ka-rGE.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 803, + "endColumn": 112, + "endOffset": 911 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 916, + "endColumn": 83, + "endOffset": 995 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ka-rGE/values-ka-rGE.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 916, + "endColumn": 83, + "endOffset": 995 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1000, + "endColumn": 81, + "endOffset": 1077 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ka-rGE/values-ka-rGE.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1000, + "endColumn": 81, + "endOffset": 1077 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1082, + "endColumn": 82, + "endOffset": 1160 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ka-rGE/values-ka-rGE.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1082, + "endColumn": 82, + "endOffset": 1160 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1165, + "endColumn": 112, + "endOffset": 1273 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ka-rGE/values-ka-rGE.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1165, + "endColumn": 112, + "endOffset": 1273 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1278, + "endColumn": 106, + "endOffset": 1380 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ka-rGE/values-ka-rGE.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1278, + "endColumn": 106, + "endOffset": 1380 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1385, + "endColumn": 97, + "endOffset": 1478 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ka-rGE/values-ka-rGE.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1385, + "endColumn": 97, + "endOffset": 1478 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1483, + "endColumn": 112, + "endOffset": 1591 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ka-rGE/values-ka-rGE.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1483, + "endColumn": 112, + "endOffset": 1591 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1596, + "endColumn": 103, + "endOffset": 1695 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ka-rGE/values-ka-rGE.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1596, + "endColumn": 103, + "endOffset": 1695 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1700, + "endColumn": 103, + "endOffset": 1799 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ka-rGE/values-ka-rGE.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1700, + "endColumn": 103, + "endOffset": 1799 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1804, + "endColumn": 121, + "endOffset": 1921 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ka-rGE/values-ka-rGE.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1804, + "endColumn": 121, + "endOffset": 1921 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1926, + "endColumn": 97, + "endOffset": 2019 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ka-rGE/values-ka-rGE.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1926, + "endColumn": 97, + "endOffset": 2019 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2024, + "endColumn": 100, + "endOffset": 2120 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ka-rGE/values-ka-rGE.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2024, + "endColumn": 100, + "endOffset": 2120 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/multi/values-kk-rKZ.json b/android/build/intermediates/blame/res/debug/multi/values-kk-rKZ.json new file mode 100644 index 000000000..d68930d8a --- /dev/null +++ b/android/build/intermediates/blame/res/debug/multi/values-kk-rKZ.json @@ -0,0 +1,387 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-kk-rKZ/values-kk-rKZ.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 111, + "endOffset": 162 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-kk-rKZ/values-kk-rKZ.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 111, + "endOffset": 162 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 167, + "endColumn": 107, + "endOffset": 270 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-kk-rKZ/values-kk-rKZ.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 167, + "endColumn": 107, + "endOffset": 270 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 275, + "endColumn": 122, + "endOffset": 393 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-kk-rKZ/values-kk-rKZ.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 275, + "endColumn": 122, + "endOffset": 393 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 398, + "endColumn": 102, + "endOffset": 496 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-kk-rKZ/values-kk-rKZ.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 398, + "endColumn": 102, + "endOffset": 496 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 501, + "endColumn": 109, + "endOffset": 606 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-kk-rKZ/values-kk-rKZ.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 501, + "endColumn": 109, + "endOffset": 606 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 611, + "endColumn": 84, + "endOffset": 691 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-kk-rKZ/values-kk-rKZ.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 611, + "endColumn": 84, + "endOffset": 691 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 696, + "endColumn": 105, + "endOffset": 797 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-kk-rKZ/values-kk-rKZ.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 696, + "endColumn": 105, + "endOffset": 797 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 802, + "endColumn": 118, + "endOffset": 916 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-kk-rKZ/values-kk-rKZ.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 802, + "endColumn": 118, + "endOffset": 916 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 921, + "endColumn": 80, + "endOffset": 997 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-kk-rKZ/values-kk-rKZ.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 921, + "endColumn": 80, + "endOffset": 997 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1002, + "endColumn": 79, + "endOffset": 1077 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-kk-rKZ/values-kk-rKZ.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1002, + "endColumn": 79, + "endOffset": 1077 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1082, + "endColumn": 80, + "endOffset": 1158 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-kk-rKZ/values-kk-rKZ.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1082, + "endColumn": 80, + "endOffset": 1158 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1163, + "endColumn": 102, + "endOffset": 1261 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-kk-rKZ/values-kk-rKZ.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1163, + "endColumn": 102, + "endOffset": 1261 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1266, + "endColumn": 104, + "endOffset": 1366 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-kk-rKZ/values-kk-rKZ.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1266, + "endColumn": 104, + "endOffset": 1366 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1371, + "endColumn": 97, + "endOffset": 1464 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-kk-rKZ/values-kk-rKZ.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1371, + "endColumn": 97, + "endOffset": 1464 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1469, + "endColumn": 106, + "endOffset": 1571 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-kk-rKZ/values-kk-rKZ.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1469, + "endColumn": 106, + "endOffset": 1571 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1576, + "endColumn": 108, + "endOffset": 1680 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-kk-rKZ/values-kk-rKZ.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1576, + "endColumn": 108, + "endOffset": 1680 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1685, + "endColumn": 99, + "endOffset": 1780 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-kk-rKZ/values-kk-rKZ.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1685, + "endColumn": 99, + "endOffset": 1780 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1785, + "endColumn": 114, + "endOffset": 1895 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-kk-rKZ/values-kk-rKZ.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1785, + "endColumn": 114, + "endOffset": 1895 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1900, + "endColumn": 98, + "endOffset": 1994 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-kk-rKZ/values-kk-rKZ.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1900, + "endColumn": 98, + "endOffset": 1994 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1999, + "endColumn": 100, + "endOffset": 2095 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-kk-rKZ/values-kk-rKZ.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1999, + "endColumn": 100, + "endOffset": 2095 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/multi/values-km-rKH.json b/android/build/intermediates/blame/res/debug/multi/values-km-rKH.json new file mode 100644 index 000000000..ad1b43cdc --- /dev/null +++ b/android/build/intermediates/blame/res/debug/multi/values-km-rKH.json @@ -0,0 +1,387 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-km-rKH/values-km-rKH.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 102, + "endOffset": 153 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-km-rKH/values-km-rKH.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 102, + "endOffset": 153 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 158, + "endColumn": 107, + "endOffset": 261 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-km-rKH/values-km-rKH.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 158, + "endColumn": 107, + "endOffset": 261 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 266, + "endColumn": 122, + "endOffset": 384 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-km-rKH/values-km-rKH.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 266, + "endColumn": 122, + "endOffset": 384 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 389, + "endColumn": 99, + "endOffset": 484 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-km-rKH/values-km-rKH.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 389, + "endColumn": 99, + "endOffset": 484 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 489, + "endColumn": 111, + "endOffset": 596 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-km-rKH/values-km-rKH.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 489, + "endColumn": 111, + "endOffset": 596 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 601, + "endColumn": 86, + "endOffset": 683 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-km-rKH/values-km-rKH.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 601, + "endColumn": 86, + "endOffset": 683 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 688, + "endColumn": 103, + "endOffset": 787 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-km-rKH/values-km-rKH.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 688, + "endColumn": 103, + "endOffset": 787 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 792, + "endColumn": 117, + "endOffset": 905 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-km-rKH/values-km-rKH.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 792, + "endColumn": 117, + "endOffset": 905 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 910, + "endColumn": 76, + "endOffset": 982 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-km-rKH/values-km-rKH.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 910, + "endColumn": 76, + "endOffset": 982 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 987, + "endColumn": 76, + "endOffset": 1059 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-km-rKH/values-km-rKH.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 987, + "endColumn": 76, + "endOffset": 1059 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1064, + "endColumn": 82, + "endOffset": 1142 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-km-rKH/values-km-rKH.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1064, + "endColumn": 82, + "endOffset": 1142 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1147, + "endColumn": 103, + "endOffset": 1246 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-km-rKH/values-km-rKH.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1147, + "endColumn": 103, + "endOffset": 1246 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1251, + "endColumn": 104, + "endOffset": 1351 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-km-rKH/values-km-rKH.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1251, + "endColumn": 104, + "endOffset": 1351 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1356, + "endColumn": 99, + "endOffset": 1451 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-km-rKH/values-km-rKH.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1356, + "endColumn": 99, + "endOffset": 1451 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1456, + "endColumn": 109, + "endOffset": 1561 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-km-rKH/values-km-rKH.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1456, + "endColumn": 109, + "endOffset": 1561 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1566, + "endColumn": 106, + "endOffset": 1668 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-km-rKH/values-km-rKH.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1566, + "endColumn": 106, + "endOffset": 1668 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1673, + "endColumn": 107, + "endOffset": 1776 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-km-rKH/values-km-rKH.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1673, + "endColumn": 107, + "endOffset": 1776 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1781, + "endColumn": 122, + "endOffset": 1899 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-km-rKH/values-km-rKH.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1781, + "endColumn": 122, + "endOffset": 1899 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1904, + "endColumn": 97, + "endOffset": 1997 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-km-rKH/values-km-rKH.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1904, + "endColumn": 97, + "endOffset": 1997 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2002, + "endColumn": 100, + "endOffset": 2098 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-km-rKH/values-km-rKH.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2002, + "endColumn": 100, + "endOffset": 2098 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/multi/values-kn-rIN.json b/android/build/intermediates/blame/res/debug/multi/values-kn-rIN.json new file mode 100644 index 000000000..90a6d5641 --- /dev/null +++ b/android/build/intermediates/blame/res/debug/multi/values-kn-rIN.json @@ -0,0 +1,387 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-kn-rIN/values-kn-rIN.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 117, + "endOffset": 168 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-kn-rIN/values-kn-rIN.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 117, + "endOffset": 168 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 173, + "endColumn": 107, + "endOffset": 276 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-kn-rIN/values-kn-rIN.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 173, + "endColumn": 107, + "endOffset": 276 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 281, + "endColumn": 122, + "endOffset": 399 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-kn-rIN/values-kn-rIN.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 281, + "endColumn": 122, + "endOffset": 399 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 404, + "endColumn": 111, + "endOffset": 511 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-kn-rIN/values-kn-rIN.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 404, + "endColumn": 111, + "endOffset": 511 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 516, + "endColumn": 112, + "endOffset": 624 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-kn-rIN/values-kn-rIN.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 516, + "endColumn": 112, + "endOffset": 624 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 629, + "endColumn": 87, + "endOffset": 712 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-kn-rIN/values-kn-rIN.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 629, + "endColumn": 87, + "endOffset": 712 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 717, + "endColumn": 106, + "endOffset": 819 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-kn-rIN/values-kn-rIN.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 717, + "endColumn": 106, + "endOffset": 819 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 824, + "endColumn": 126, + "endOffset": 946 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-kn-rIN/values-kn-rIN.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 824, + "endColumn": 126, + "endOffset": 946 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 951, + "endColumn": 76, + "endOffset": 1023 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-kn-rIN/values-kn-rIN.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 951, + "endColumn": 76, + "endOffset": 1023 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1028, + "endColumn": 76, + "endOffset": 1100 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-kn-rIN/values-kn-rIN.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1028, + "endColumn": 76, + "endOffset": 1100 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1105, + "endColumn": 81, + "endOffset": 1182 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-kn-rIN/values-kn-rIN.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1105, + "endColumn": 81, + "endOffset": 1182 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1187, + "endColumn": 115, + "endOffset": 1298 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-kn-rIN/values-kn-rIN.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1187, + "endColumn": 115, + "endOffset": 1298 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1303, + "endColumn": 110, + "endOffset": 1409 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-kn-rIN/values-kn-rIN.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1303, + "endColumn": 110, + "endOffset": 1409 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1414, + "endColumn": 98, + "endOffset": 1508 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-kn-rIN/values-kn-rIN.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1414, + "endColumn": 98, + "endOffset": 1508 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1513, + "endColumn": 112, + "endOffset": 1621 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-kn-rIN/values-kn-rIN.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1513, + "endColumn": 112, + "endOffset": 1621 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1626, + "endColumn": 103, + "endOffset": 1725 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-kn-rIN/values-kn-rIN.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1626, + "endColumn": 103, + "endOffset": 1725 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1730, + "endColumn": 113, + "endOffset": 1839 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-kn-rIN/values-kn-rIN.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1730, + "endColumn": 113, + "endOffset": 1839 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1844, + "endColumn": 125, + "endOffset": 1965 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-kn-rIN/values-kn-rIN.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1844, + "endColumn": 125, + "endOffset": 1965 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1970, + "endColumn": 99, + "endOffset": 2065 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-kn-rIN/values-kn-rIN.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1970, + "endColumn": 99, + "endOffset": 2065 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2070, + "endColumn": 100, + "endOffset": 2166 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-kn-rIN/values-kn-rIN.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2070, + "endColumn": 100, + "endOffset": 2166 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/multi/values-ko.json b/android/build/intermediates/blame/res/debug/multi/values-ko.json new file mode 100644 index 000000000..76e8e2e30 --- /dev/null +++ b/android/build/intermediates/blame/res/debug/multi/values-ko.json @@ -0,0 +1,539 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ko/values-ko.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 94, + "endOffset": 145 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ko/values-ko.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 94, + "endOffset": 145 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 150, + "endColumn": 107, + "endOffset": 253 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ko/values-ko.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 150, + "endColumn": 107, + "endOffset": 253 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 258, + "endColumn": 122, + "endOffset": 376 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ko/values-ko.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 258, + "endColumn": 122, + "endOffset": 376 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 381, + "endColumn": 93, + "endOffset": 470 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ko/values-ko.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 381, + "endColumn": 93, + "endOffset": 470 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 475, + "endColumn": 101, + "endOffset": 572 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ko/values-ko.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 475, + "endColumn": 101, + "endOffset": 572 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 577, + "endColumn": 81, + "endOffset": 654 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ko/values-ko.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 577, + "endColumn": 81, + "endOffset": 654 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 659, + "endColumn": 97, + "endOffset": 752 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ko/values-ko.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 659, + "endColumn": 97, + "endOffset": 752 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 757, + "endColumn": 105, + "endOffset": 858 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ko/values-ko.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 757, + "endColumn": 105, + "endOffset": 858 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 863, + "endColumn": 78, + "endOffset": 937 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ko/values-ko.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 863, + "endColumn": 78, + "endOffset": 937 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 942, + "endColumn": 75, + "endOffset": 1013 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ko/values-ko.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 942, + "endColumn": 75, + "endOffset": 1013 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1018, + "endColumn": 79, + "endOffset": 1093 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ko/values-ko.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1018, + "endColumn": 79, + "endOffset": 1093 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1098, + "endColumn": 97, + "endOffset": 1191 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ko/values-ko.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1098, + "endColumn": 97, + "endOffset": 1191 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1196, + "endColumn": 94, + "endOffset": 1286 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ko/values-ko.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1196, + "endColumn": 94, + "endOffset": 1286 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1291, + "endColumn": 94, + "endOffset": 1381 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ko/values-ko.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1291, + "endColumn": 94, + "endOffset": 1381 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1386, + "endColumn": 99, + "endOffset": 1481 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ko/values-ko.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1386, + "endColumn": 99, + "endOffset": 1481 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1486, + "endColumn": 95, + "endOffset": 1577 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ko/values-ko.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1486, + "endColumn": 95, + "endOffset": 1577 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1582, + "endColumn": 98, + "endOffset": 1676 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ko/values-ko.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1582, + "endColumn": 98, + "endOffset": 1676 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1681, + "endColumn": 114, + "endOffset": 1791 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ko/values-ko.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1681, + "endColumn": 114, + "endOffset": 1791 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1796, + "endColumn": 93, + "endOffset": 1885 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ko/values-ko.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1796, + "endColumn": 93, + "endOffset": 1885 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1890, + "endColumn": 53, + "endOffset": 1939 + }, + "from": { + "file": "/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/values-ko/values-ko.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 53, + "endOffset": 104 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 1944, + "endColumn": 60, + "endOffset": 2000 + }, + "from": { + "file": "/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/values-ko/values-ko.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 109, + "endColumn": 60, + "endOffset": 165 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2005, + "endColumn": 78, + "endOffset": 2079 + }, + "from": { + "file": "/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/values-ko/values-ko.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 170, + "endColumn": 78, + "endOffset": 244 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2084, + "endColumn": 70, + "endOffset": 2150 + }, + "from": { + "file": "/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/values-ko/values-ko.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 249, + "endColumn": 70, + "endOffset": 315 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2155, + "endColumn": 59, + "endOffset": 2210 + }, + "from": { + "file": "/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/values-ko/values-ko.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 320, + "endColumn": 59, + "endOffset": 375 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2215, + "endColumn": 55, + "endOffset": 2266 + }, + "from": { + "file": "/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/values-ko/values-ko.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 380, + "endColumn": 55, + "endOffset": 431 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 2271, + "endColumn": 58, + "endOffset": 2325 + }, + "from": { + "file": "/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/values-ko/values-ko.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 436, + "endColumn": 58, + "endOffset": 490 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 2330, + "endColumn": 73, + "endOffset": 2399 + }, + "from": { + "file": "/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/values-ko/values-ko.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 495, + "endColumn": 73, + "endOffset": 564 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 2404, + "endColumn": 100, + "endOffset": 2500 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ko/values-ko.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1890, + "endColumn": 100, + "endOffset": 1986 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/multi/values-ky-rKG.json b/android/build/intermediates/blame/res/debug/multi/values-ky-rKG.json new file mode 100644 index 000000000..52d950e79 --- /dev/null +++ b/android/build/intermediates/blame/res/debug/multi/values-ky-rKG.json @@ -0,0 +1,387 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ky-rKG/values-ky-rKG.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 103, + "endOffset": 154 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ky-rKG/values-ky-rKG.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 103, + "endOffset": 154 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 159, + "endColumn": 107, + "endOffset": 262 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ky-rKG/values-ky-rKG.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 159, + "endColumn": 107, + "endOffset": 262 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 267, + "endColumn": 122, + "endOffset": 385 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ky-rKG/values-ky-rKG.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 267, + "endColumn": 122, + "endOffset": 385 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 390, + "endColumn": 94, + "endOffset": 480 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ky-rKG/values-ky-rKG.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 390, + "endColumn": 94, + "endOffset": 480 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 485, + "endColumn": 118, + "endOffset": 599 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ky-rKG/values-ky-rKG.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 485, + "endColumn": 118, + "endOffset": 599 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 604, + "endColumn": 83, + "endOffset": 683 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ky-rKG/values-ky-rKG.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 604, + "endColumn": 83, + "endOffset": 683 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 688, + "endColumn": 106, + "endOffset": 790 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ky-rKG/values-ky-rKG.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 688, + "endColumn": 106, + "endOffset": 790 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 795, + "endColumn": 116, + "endOffset": 907 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ky-rKG/values-ky-rKG.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 795, + "endColumn": 116, + "endOffset": 907 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 912, + "endColumn": 77, + "endOffset": 985 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ky-rKG/values-ky-rKG.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 912, + "endColumn": 77, + "endOffset": 985 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 990, + "endColumn": 78, + "endOffset": 1064 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ky-rKG/values-ky-rKG.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 990, + "endColumn": 78, + "endOffset": 1064 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1069, + "endColumn": 80, + "endOffset": 1145 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ky-rKG/values-ky-rKG.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1069, + "endColumn": 80, + "endOffset": 1145 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1150, + "endColumn": 109, + "endOffset": 1255 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ky-rKG/values-ky-rKG.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1150, + "endColumn": 109, + "endOffset": 1255 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1260, + "endColumn": 106, + "endOffset": 1362 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ky-rKG/values-ky-rKG.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1260, + "endColumn": 106, + "endOffset": 1362 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1367, + "endColumn": 97, + "endOffset": 1460 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ky-rKG/values-ky-rKG.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1367, + "endColumn": 97, + "endOffset": 1460 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1465, + "endColumn": 105, + "endOffset": 1566 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ky-rKG/values-ky-rKG.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1465, + "endColumn": 105, + "endOffset": 1566 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1571, + "endColumn": 106, + "endOffset": 1673 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ky-rKG/values-ky-rKG.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1571, + "endColumn": 106, + "endOffset": 1673 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1678, + "endColumn": 100, + "endOffset": 1774 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ky-rKG/values-ky-rKG.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1678, + "endColumn": 100, + "endOffset": 1774 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1779, + "endColumn": 123, + "endOffset": 1898 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ky-rKG/values-ky-rKG.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1779, + "endColumn": 123, + "endOffset": 1898 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1903, + "endColumn": 102, + "endOffset": 2001 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ky-rKG/values-ky-rKG.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1903, + "endColumn": 102, + "endOffset": 2001 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2006, + "endColumn": 100, + "endOffset": 2102 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ky-rKG/values-ky-rKG.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2006, + "endColumn": 100, + "endOffset": 2102 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/multi/values-land.json b/android/build/intermediates/blame/res/debug/multi/values-land.json new file mode 100644 index 000000000..03623b2b0 --- /dev/null +++ b/android/build/intermediates/blame/res/debug/multi/values-land.json @@ -0,0 +1,142 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-land/values-land.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 61, + "endOffset": 112 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-land/values-land.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 61, + "endOffset": 112 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 117, + "endColumn": 71, + "endOffset": 184 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-land/values-land.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 117, + "endColumn": 71, + "endOffset": 184 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 189, + "endColumn": 69, + "endOffset": 254 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-land/values-land.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 189, + "endColumn": 69, + "endOffset": 254 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 259, + "endColumn": 63, + "endOffset": 318 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-land/values-land.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 259, + "endColumn": 63, + "endOffset": 318 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 323, + "endColumn": 70, + "endOffset": 389 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-land/values-land.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 323, + "endColumn": 70, + "endOffset": 389 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 394, + "endColumn": 67, + "endOffset": 457 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-land/values-land.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 394, + "endColumn": 67, + "endOffset": 457 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 462, + "endLine": 11, + "endColumn": 12, + "endOffset": 639 + }, + "from": { + "file": "/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/values-land/values-land.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endLine": 5, + "endColumn": 12, + "endOffset": 232 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/multi/values-large-v4.json b/android/build/intermediates/blame/res/debug/multi/values-large-v4.json new file mode 100644 index 000000000..e8e201363 --- /dev/null +++ b/android/build/intermediates/blame/res/debug/multi/values-large-v4.json @@ -0,0 +1,254 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-large-v4/values-large-v4.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 61, + "endOffset": 112 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-large-v4/values-large-v4.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 61, + "endOffset": 112 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 117, + "endColumn": 71, + "endOffset": 184 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-large-v4/values-large-v4.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 117, + "endColumn": 71, + "endOffset": 184 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 189, + "endColumn": 58, + "endOffset": 243 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-large-v4/values-large-v4.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 189, + "endColumn": 58, + "endOffset": 243 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 248, + "endColumn": 70, + "endOffset": 314 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-large-v4/values-large-v4.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 248, + "endColumn": 70, + "endOffset": 314 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 319, + "endColumn": 70, + "endOffset": 385 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-large-v4/values-large-v4.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 319, + "endColumn": 70, + "endOffset": 385 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 390, + "endColumn": 69, + "endOffset": 455 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-large-v4/values-large-v4.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 390, + "endColumn": 69, + "endOffset": 455 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 460, + "endColumn": 69, + "endOffset": 525 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-large-v4/values-large-v4.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 460, + "endColumn": 69, + "endOffset": 525 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 530, + "endColumn": 67, + "endOffset": 593 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-large-v4/values-large-v4.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 530, + "endColumn": 67, + "endOffset": 593 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 598, + "endColumn": 67, + "endOffset": 661 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-large-v4/values-large-v4.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 598, + "endColumn": 67, + "endOffset": 661 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 666, + "endColumn": 63, + "endOffset": 725 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-large-v4/values-large-v4.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 666, + "endColumn": 63, + "endOffset": 725 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 730, + "endColumn": 54, + "endOffset": 780 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-large-v4/values-large-v4.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 730, + "endColumn": 54, + "endOffset": 780 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 785, + "endColumn": 103, + "endOffset": 884 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-large-v4/values-large-v4.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 785, + "endColumn": 103, + "endOffset": 884 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 889, + "endColumn": 115, + "endOffset": 1000 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-large-v4/values-large-v4.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 889, + "endColumn": 115, + "endOffset": 1000 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/multi/values-ldltr-v21.json b/android/build/intermediates/blame/res/debug/multi/values-ldltr-v21.json new file mode 100644 index 000000000..ff72930a6 --- /dev/null +++ b/android/build/intermediates/blame/res/debug/multi/values-ldltr-v21.json @@ -0,0 +1,26 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ldltr-v21/values-ldltr-v21.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 112, + "endOffset": 163 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ldltr-v21/values-ldltr-v21.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 112, + "endOffset": 163 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/multi/values-lo-rLA.json b/android/build/intermediates/blame/res/debug/multi/values-lo-rLA.json new file mode 100644 index 000000000..e61a30409 --- /dev/null +++ b/android/build/intermediates/blame/res/debug/multi/values-lo-rLA.json @@ -0,0 +1,387 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-lo-rLA/values-lo-rLA.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 102, + "endOffset": 153 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lo-rLA/values-lo-rLA.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 102, + "endOffset": 153 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 158, + "endColumn": 107, + "endOffset": 261 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lo-rLA/values-lo-rLA.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 158, + "endColumn": 107, + "endOffset": 261 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 266, + "endColumn": 122, + "endOffset": 384 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lo-rLA/values-lo-rLA.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 266, + "endColumn": 122, + "endOffset": 384 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 389, + "endColumn": 96, + "endOffset": 481 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lo-rLA/values-lo-rLA.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 389, + "endColumn": 96, + "endOffset": 481 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 486, + "endColumn": 106, + "endOffset": 588 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lo-rLA/values-lo-rLA.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 486, + "endColumn": 106, + "endOffset": 588 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 593, + "endColumn": 84, + "endOffset": 673 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lo-rLA/values-lo-rLA.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 593, + "endColumn": 84, + "endOffset": 673 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 678, + "endColumn": 104, + "endOffset": 778 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lo-rLA/values-lo-rLA.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 678, + "endColumn": 104, + "endOffset": 778 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 783, + "endColumn": 111, + "endOffset": 890 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lo-rLA/values-lo-rLA.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 783, + "endColumn": 111, + "endOffset": 890 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 895, + "endColumn": 76, + "endOffset": 967 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lo-rLA/values-lo-rLA.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 895, + "endColumn": 76, + "endOffset": 967 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 972, + "endColumn": 77, + "endOffset": 1045 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lo-rLA/values-lo-rLA.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 972, + "endColumn": 77, + "endOffset": 1045 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1050, + "endColumn": 79, + "endOffset": 1125 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lo-rLA/values-lo-rLA.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1050, + "endColumn": 79, + "endOffset": 1125 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1130, + "endColumn": 106, + "endOffset": 1232 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lo-rLA/values-lo-rLA.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1130, + "endColumn": 106, + "endOffset": 1232 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1237, + "endColumn": 96, + "endOffset": 1329 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lo-rLA/values-lo-rLA.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1237, + "endColumn": 96, + "endOffset": 1329 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1334, + "endColumn": 97, + "endOffset": 1427 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lo-rLA/values-lo-rLA.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1334, + "endColumn": 97, + "endOffset": 1427 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1432, + "endColumn": 104, + "endOffset": 1532 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lo-rLA/values-lo-rLA.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1432, + "endColumn": 104, + "endOffset": 1532 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1537, + "endColumn": 102, + "endOffset": 1635 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lo-rLA/values-lo-rLA.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1537, + "endColumn": 102, + "endOffset": 1635 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1640, + "endColumn": 103, + "endOffset": 1739 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lo-rLA/values-lo-rLA.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1640, + "endColumn": 103, + "endOffset": 1739 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1744, + "endColumn": 121, + "endOffset": 1861 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lo-rLA/values-lo-rLA.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1744, + "endColumn": 121, + "endOffset": 1861 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1866, + "endColumn": 95, + "endOffset": 1957 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lo-rLA/values-lo-rLA.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1866, + "endColumn": 95, + "endOffset": 1957 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1962, + "endColumn": 100, + "endOffset": 2058 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lo-rLA/values-lo-rLA.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1962, + "endColumn": 100, + "endOffset": 2058 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/multi/values-lt.json b/android/build/intermediates/blame/res/debug/multi/values-lt.json new file mode 100644 index 000000000..21fe53d57 --- /dev/null +++ b/android/build/intermediates/blame/res/debug/multi/values-lt.json @@ -0,0 +1,387 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-lt/values-lt.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 115, + "endOffset": 166 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lt/values-lt.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 115, + "endOffset": 166 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 171, + "endColumn": 107, + "endOffset": 274 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lt/values-lt.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 171, + "endColumn": 107, + "endOffset": 274 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 279, + "endColumn": 122, + "endOffset": 397 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lt/values-lt.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 279, + "endColumn": 122, + "endOffset": 397 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 402, + "endColumn": 100, + "endOffset": 498 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lt/values-lt.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 402, + "endColumn": 100, + "endOffset": 498 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 503, + "endColumn": 112, + "endOffset": 611 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lt/values-lt.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 503, + "endColumn": 112, + "endOffset": 611 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 616, + "endColumn": 86, + "endOffset": 698 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lt/values-lt.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 616, + "endColumn": 86, + "endOffset": 698 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 703, + "endColumn": 108, + "endOffset": 807 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lt/values-lt.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 703, + "endColumn": 108, + "endOffset": 807 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 812, + "endColumn": 120, + "endOffset": 928 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lt/values-lt.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 812, + "endColumn": 120, + "endOffset": 928 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 933, + "endColumn": 81, + "endOffset": 1010 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lt/values-lt.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 933, + "endColumn": 81, + "endOffset": 1010 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1015, + "endColumn": 80, + "endOffset": 1091 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lt/values-lt.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1015, + "endColumn": 80, + "endOffset": 1091 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1096, + "endColumn": 84, + "endOffset": 1176 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lt/values-lt.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1096, + "endColumn": 84, + "endOffset": 1176 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1181, + "endColumn": 108, + "endOffset": 1285 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lt/values-lt.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1181, + "endColumn": 108, + "endOffset": 1285 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1290, + "endColumn": 108, + "endOffset": 1394 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lt/values-lt.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1290, + "endColumn": 108, + "endOffset": 1394 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1399, + "endColumn": 99, + "endOffset": 1494 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lt/values-lt.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1399, + "endColumn": 99, + "endOffset": 1494 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1499, + "endColumn": 109, + "endOffset": 1604 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lt/values-lt.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1499, + "endColumn": 109, + "endOffset": 1604 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1609, + "endColumn": 103, + "endOffset": 1708 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lt/values-lt.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1609, + "endColumn": 103, + "endOffset": 1708 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1713, + "endColumn": 112, + "endOffset": 1821 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lt/values-lt.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1713, + "endColumn": 112, + "endOffset": 1821 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1826, + "endColumn": 129, + "endOffset": 1951 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lt/values-lt.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1826, + "endColumn": 129, + "endOffset": 1951 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1956, + "endColumn": 100, + "endOffset": 2052 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lt/values-lt.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1956, + "endColumn": 100, + "endOffset": 2052 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2057, + "endColumn": 100, + "endOffset": 2153 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lt/values-lt.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2057, + "endColumn": 100, + "endOffset": 2153 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/multi/values-lv.json b/android/build/intermediates/blame/res/debug/multi/values-lv.json new file mode 100644 index 000000000..099f9dfe1 --- /dev/null +++ b/android/build/intermediates/blame/res/debug/multi/values-lv.json @@ -0,0 +1,387 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-lv/values-lv.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 119, + "endOffset": 170 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lv/values-lv.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 119, + "endOffset": 170 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 175, + "endColumn": 107, + "endOffset": 278 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lv/values-lv.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 175, + "endColumn": 107, + "endOffset": 278 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 283, + "endColumn": 122, + "endOffset": 401 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lv/values-lv.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 283, + "endColumn": 122, + "endOffset": 401 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 406, + "endColumn": 107, + "endOffset": 509 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lv/values-lv.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 406, + "endColumn": 107, + "endOffset": 509 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 514, + "endColumn": 108, + "endOffset": 618 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lv/values-lv.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 514, + "endColumn": 108, + "endOffset": 618 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 623, + "endColumn": 85, + "endOffset": 704 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lv/values-lv.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 623, + "endColumn": 85, + "endOffset": 704 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 709, + "endColumn": 103, + "endOffset": 808 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lv/values-lv.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 709, + "endColumn": 103, + "endOffset": 808 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 813, + "endColumn": 121, + "endOffset": 930 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lv/values-lv.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 813, + "endColumn": 121, + "endOffset": 930 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 935, + "endColumn": 81, + "endOffset": 1012 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lv/values-lv.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 935, + "endColumn": 81, + "endOffset": 1012 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1017, + "endColumn": 81, + "endOffset": 1094 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lv/values-lv.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1017, + "endColumn": 81, + "endOffset": 1094 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1099, + "endColumn": 84, + "endOffset": 1179 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lv/values-lv.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1099, + "endColumn": 84, + "endOffset": 1179 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1184, + "endColumn": 108, + "endOffset": 1288 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lv/values-lv.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1184, + "endColumn": 108, + "endOffset": 1288 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1293, + "endColumn": 111, + "endOffset": 1400 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lv/values-lv.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1293, + "endColumn": 111, + "endOffset": 1400 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1405, + "endColumn": 98, + "endOffset": 1499 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lv/values-lv.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1405, + "endColumn": 98, + "endOffset": 1499 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1504, + "endColumn": 110, + "endOffset": 1610 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lv/values-lv.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1504, + "endColumn": 110, + "endOffset": 1610 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1615, + "endColumn": 108, + "endOffset": 1719 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lv/values-lv.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1615, + "endColumn": 108, + "endOffset": 1719 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1724, + "endColumn": 104, + "endOffset": 1824 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lv/values-lv.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1724, + "endColumn": 104, + "endOffset": 1824 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1829, + "endColumn": 118, + "endOffset": 1943 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lv/values-lv.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1829, + "endColumn": 118, + "endOffset": 1943 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1948, + "endColumn": 98, + "endOffset": 2042 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lv/values-lv.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1948, + "endColumn": 98, + "endOffset": 2042 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2047, + "endColumn": 100, + "endOffset": 2143 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-lv/values-lv.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2047, + "endColumn": 100, + "endOffset": 2143 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/multi/values-mk-rMK.json b/android/build/intermediates/blame/res/debug/multi/values-mk-rMK.json new file mode 100644 index 000000000..b083742d5 --- /dev/null +++ b/android/build/intermediates/blame/res/debug/multi/values-mk-rMK.json @@ -0,0 +1,349 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-mk-rMK/values-mk-rMK.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 107, + "endOffset": 158 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mk-rMK/values-mk-rMK.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 107, + "endOffset": 158 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 163, + "endColumn": 122, + "endOffset": 281 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mk-rMK/values-mk-rMK.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 163, + "endColumn": 122, + "endOffset": 281 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 286, + "endColumn": 103, + "endOffset": 385 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mk-rMK/values-mk-rMK.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 286, + "endColumn": 103, + "endOffset": 385 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 390, + "endColumn": 107, + "endOffset": 493 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mk-rMK/values-mk-rMK.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 390, + "endColumn": 107, + "endOffset": 493 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 498, + "endColumn": 85, + "endOffset": 579 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mk-rMK/values-mk-rMK.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 498, + "endColumn": 85, + "endOffset": 579 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 584, + "endColumn": 104, + "endOffset": 684 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mk-rMK/values-mk-rMK.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 584, + "endColumn": 104, + "endOffset": 684 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 689, + "endColumn": 118, + "endOffset": 803 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mk-rMK/values-mk-rMK.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 689, + "endColumn": 118, + "endOffset": 803 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 808, + "endColumn": 82, + "endOffset": 886 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mk-rMK/values-mk-rMK.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 808, + "endColumn": 82, + "endOffset": 886 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 891, + "endColumn": 81, + "endOffset": 968 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mk-rMK/values-mk-rMK.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 891, + "endColumn": 81, + "endOffset": 968 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 973, + "endColumn": 86, + "endOffset": 1055 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mk-rMK/values-mk-rMK.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 973, + "endColumn": 86, + "endOffset": 1055 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1060, + "endColumn": 105, + "endOffset": 1161 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mk-rMK/values-mk-rMK.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1060, + "endColumn": 105, + "endOffset": 1161 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1166, + "endColumn": 106, + "endOffset": 1268 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mk-rMK/values-mk-rMK.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1166, + "endColumn": 106, + "endOffset": 1268 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1273, + "endColumn": 100, + "endOffset": 1369 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mk-rMK/values-mk-rMK.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1273, + "endColumn": 100, + "endOffset": 1369 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1374, + "endColumn": 106, + "endOffset": 1476 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mk-rMK/values-mk-rMK.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1374, + "endColumn": 106, + "endOffset": 1476 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1481, + "endColumn": 110, + "endOffset": 1587 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mk-rMK/values-mk-rMK.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1481, + "endColumn": 110, + "endOffset": 1587 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1592, + "endColumn": 103, + "endOffset": 1691 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mk-rMK/values-mk-rMK.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1592, + "endColumn": 103, + "endOffset": 1691 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1696, + "endColumn": 97, + "endOffset": 1789 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mk-rMK/values-mk-rMK.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1696, + "endColumn": 97, + "endOffset": 1789 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1794, + "endColumn": 100, + "endOffset": 1890 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mk-rMK/values-mk-rMK.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1794, + "endColumn": 100, + "endOffset": 1890 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/multi/values-ml-rIN.json b/android/build/intermediates/blame/res/debug/multi/values-ml-rIN.json new file mode 100644 index 000000000..23b11833b --- /dev/null +++ b/android/build/intermediates/blame/res/debug/multi/values-ml-rIN.json @@ -0,0 +1,387 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ml-rIN/values-ml-rIN.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 118, + "endOffset": 169 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ml-rIN/values-ml-rIN.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 118, + "endOffset": 169 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 174, + "endColumn": 107, + "endOffset": 277 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ml-rIN/values-ml-rIN.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 174, + "endColumn": 107, + "endOffset": 277 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 282, + "endColumn": 122, + "endOffset": 400 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ml-rIN/values-ml-rIN.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 282, + "endColumn": 122, + "endOffset": 400 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 405, + "endColumn": 117, + "endOffset": 518 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ml-rIN/values-ml-rIN.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 405, + "endColumn": 117, + "endOffset": 518 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 523, + "endColumn": 115, + "endOffset": 634 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ml-rIN/values-ml-rIN.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 523, + "endColumn": 115, + "endOffset": 634 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 639, + "endColumn": 92, + "endOffset": 727 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ml-rIN/values-ml-rIN.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 639, + "endColumn": 92, + "endOffset": 727 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 732, + "endColumn": 104, + "endOffset": 832 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ml-rIN/values-ml-rIN.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 732, + "endColumn": 104, + "endOffset": 832 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 837, + "endColumn": 131, + "endOffset": 964 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ml-rIN/values-ml-rIN.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 837, + "endColumn": 131, + "endOffset": 964 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 969, + "endColumn": 76, + "endOffset": 1041 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ml-rIN/values-ml-rIN.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 969, + "endColumn": 76, + "endOffset": 1041 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1046, + "endColumn": 75, + "endOffset": 1117 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ml-rIN/values-ml-rIN.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1046, + "endColumn": 75, + "endOffset": 1117 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1122, + "endColumn": 81, + "endOffset": 1199 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ml-rIN/values-ml-rIN.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1122, + "endColumn": 81, + "endOffset": 1199 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1204, + "endColumn": 110, + "endOffset": 1310 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ml-rIN/values-ml-rIN.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1204, + "endColumn": 110, + "endOffset": 1310 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1315, + "endColumn": 105, + "endOffset": 1416 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ml-rIN/values-ml-rIN.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1315, + "endColumn": 105, + "endOffset": 1416 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1421, + "endColumn": 97, + "endOffset": 1514 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ml-rIN/values-ml-rIN.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1421, + "endColumn": 97, + "endOffset": 1514 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1519, + "endColumn": 113, + "endOffset": 1628 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ml-rIN/values-ml-rIN.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1519, + "endColumn": 113, + "endOffset": 1628 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1633, + "endColumn": 100, + "endOffset": 1729 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ml-rIN/values-ml-rIN.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1633, + "endColumn": 100, + "endOffset": 1729 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1734, + "endColumn": 110, + "endOffset": 1840 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ml-rIN/values-ml-rIN.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1734, + "endColumn": 110, + "endOffset": 1840 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1845, + "endColumn": 127, + "endOffset": 1968 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ml-rIN/values-ml-rIN.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1845, + "endColumn": 127, + "endOffset": 1968 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1973, + "endColumn": 100, + "endOffset": 2069 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ml-rIN/values-ml-rIN.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1973, + "endColumn": 100, + "endOffset": 2069 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2074, + "endColumn": 100, + "endOffset": 2170 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ml-rIN/values-ml-rIN.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2074, + "endColumn": 100, + "endOffset": 2170 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/multi/values-mn-rMN.json b/android/build/intermediates/blame/res/debug/multi/values-mn-rMN.json new file mode 100644 index 000000000..5c00e98ac --- /dev/null +++ b/android/build/intermediates/blame/res/debug/multi/values-mn-rMN.json @@ -0,0 +1,387 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-mn-rMN/values-mn-rMN.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 112, + "endOffset": 163 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mn-rMN/values-mn-rMN.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 112, + "endOffset": 163 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 168, + "endColumn": 107, + "endOffset": 271 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mn-rMN/values-mn-rMN.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 168, + "endColumn": 107, + "endOffset": 271 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 276, + "endColumn": 122, + "endOffset": 394 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mn-rMN/values-mn-rMN.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 276, + "endColumn": 122, + "endOffset": 394 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 399, + "endColumn": 99, + "endOffset": 494 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mn-rMN/values-mn-rMN.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 399, + "endColumn": 99, + "endOffset": 494 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 499, + "endColumn": 112, + "endOffset": 607 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mn-rMN/values-mn-rMN.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 499, + "endColumn": 112, + "endOffset": 607 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 612, + "endColumn": 86, + "endOffset": 694 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mn-rMN/values-mn-rMN.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 612, + "endColumn": 86, + "endOffset": 694 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 699, + "endColumn": 105, + "endOffset": 800 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mn-rMN/values-mn-rMN.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 699, + "endColumn": 105, + "endOffset": 800 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 805, + "endColumn": 111, + "endOffset": 912 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mn-rMN/values-mn-rMN.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 805, + "endColumn": 111, + "endOffset": 912 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 917, + "endColumn": 81, + "endOffset": 994 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mn-rMN/values-mn-rMN.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 917, + "endColumn": 81, + "endOffset": 994 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 999, + "endColumn": 81, + "endOffset": 1076 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mn-rMN/values-mn-rMN.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 999, + "endColumn": 81, + "endOffset": 1076 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1081, + "endColumn": 81, + "endOffset": 1158 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mn-rMN/values-mn-rMN.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1081, + "endColumn": 81, + "endOffset": 1158 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1163, + "endColumn": 108, + "endOffset": 1267 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mn-rMN/values-mn-rMN.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1163, + "endColumn": 108, + "endOffset": 1267 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1272, + "endColumn": 103, + "endOffset": 1371 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mn-rMN/values-mn-rMN.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1272, + "endColumn": 103, + "endOffset": 1371 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1376, + "endColumn": 96, + "endOffset": 1468 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mn-rMN/values-mn-rMN.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1376, + "endColumn": 96, + "endOffset": 1468 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1473, + "endColumn": 107, + "endOffset": 1576 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mn-rMN/values-mn-rMN.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1473, + "endColumn": 107, + "endOffset": 1576 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1581, + "endColumn": 100, + "endOffset": 1677 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mn-rMN/values-mn-rMN.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1581, + "endColumn": 100, + "endOffset": 1677 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1682, + "endColumn": 102, + "endOffset": 1780 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mn-rMN/values-mn-rMN.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1682, + "endColumn": 102, + "endOffset": 1780 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1785, + "endColumn": 121, + "endOffset": 1902 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mn-rMN/values-mn-rMN.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1785, + "endColumn": 121, + "endOffset": 1902 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1907, + "endColumn": 96, + "endOffset": 1999 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mn-rMN/values-mn-rMN.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1907, + "endColumn": 96, + "endOffset": 1999 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2004, + "endColumn": 100, + "endOffset": 2100 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mn-rMN/values-mn-rMN.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2004, + "endColumn": 100, + "endOffset": 2100 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/multi/values-mr-rIN.json b/android/build/intermediates/blame/res/debug/multi/values-mr-rIN.json new file mode 100644 index 000000000..2c07e98dc --- /dev/null +++ b/android/build/intermediates/blame/res/debug/multi/values-mr-rIN.json @@ -0,0 +1,387 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-mr-rIN/values-mr-rIN.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 117, + "endOffset": 168 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mr-rIN/values-mr-rIN.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 117, + "endOffset": 168 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 173, + "endColumn": 107, + "endOffset": 276 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mr-rIN/values-mr-rIN.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 173, + "endColumn": 107, + "endOffset": 276 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 281, + "endColumn": 122, + "endOffset": 399 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mr-rIN/values-mr-rIN.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 281, + "endColumn": 122, + "endOffset": 399 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 404, + "endColumn": 105, + "endOffset": 505 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mr-rIN/values-mr-rIN.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 404, + "endColumn": 105, + "endOffset": 505 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 510, + "endColumn": 106, + "endOffset": 612 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mr-rIN/values-mr-rIN.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 510, + "endColumn": 106, + "endOffset": 612 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 617, + "endColumn": 89, + "endOffset": 702 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mr-rIN/values-mr-rIN.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 617, + "endColumn": 89, + "endOffset": 702 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 707, + "endColumn": 100, + "endOffset": 803 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mr-rIN/values-mr-rIN.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 707, + "endColumn": 100, + "endOffset": 803 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 808, + "endColumn": 114, + "endOffset": 918 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mr-rIN/values-mr-rIN.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 808, + "endColumn": 114, + "endOffset": 918 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 923, + "endColumn": 76, + "endOffset": 995 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mr-rIN/values-mr-rIN.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 923, + "endColumn": 76, + "endOffset": 995 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1000, + "endColumn": 77, + "endOffset": 1073 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mr-rIN/values-mr-rIN.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1000, + "endColumn": 77, + "endOffset": 1073 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1078, + "endColumn": 79, + "endOffset": 1153 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mr-rIN/values-mr-rIN.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1078, + "endColumn": 79, + "endOffset": 1153 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1158, + "endColumn": 111, + "endOffset": 1265 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mr-rIN/values-mr-rIN.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1158, + "endColumn": 111, + "endOffset": 1265 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1270, + "endColumn": 101, + "endOffset": 1367 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mr-rIN/values-mr-rIN.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1270, + "endColumn": 101, + "endOffset": 1367 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1372, + "endColumn": 95, + "endOffset": 1463 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mr-rIN/values-mr-rIN.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1372, + "endColumn": 95, + "endOffset": 1463 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1468, + "endColumn": 108, + "endOffset": 1572 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mr-rIN/values-mr-rIN.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1468, + "endColumn": 108, + "endOffset": 1572 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1577, + "endColumn": 100, + "endOffset": 1673 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mr-rIN/values-mr-rIN.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1577, + "endColumn": 100, + "endOffset": 1673 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1678, + "endColumn": 114, + "endOffset": 1788 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mr-rIN/values-mr-rIN.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1678, + "endColumn": 114, + "endOffset": 1788 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1793, + "endColumn": 122, + "endOffset": 1911 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mr-rIN/values-mr-rIN.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1793, + "endColumn": 122, + "endOffset": 1911 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1916, + "endColumn": 104, + "endOffset": 2016 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mr-rIN/values-mr-rIN.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1916, + "endColumn": 104, + "endOffset": 2016 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2021, + "endColumn": 100, + "endOffset": 2117 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-mr-rIN/values-mr-rIN.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2021, + "endColumn": 100, + "endOffset": 2117 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/multi/values-ms-rMY.json b/android/build/intermediates/blame/res/debug/multi/values-ms-rMY.json new file mode 100644 index 000000000..2c0ceeea5 --- /dev/null +++ b/android/build/intermediates/blame/res/debug/multi/values-ms-rMY.json @@ -0,0 +1,387 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ms-rMY/values-ms-rMY.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 110, + "endOffset": 161 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ms-rMY/values-ms-rMY.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 110, + "endOffset": 161 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 166, + "endColumn": 107, + "endOffset": 269 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ms-rMY/values-ms-rMY.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 166, + "endColumn": 107, + "endOffset": 269 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 274, + "endColumn": 122, + "endOffset": 392 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ms-rMY/values-ms-rMY.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 274, + "endColumn": 122, + "endOffset": 392 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 397, + "endColumn": 104, + "endOffset": 497 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ms-rMY/values-ms-rMY.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 397, + "endColumn": 104, + "endOffset": 497 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 502, + "endColumn": 107, + "endOffset": 605 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ms-rMY/values-ms-rMY.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 502, + "endColumn": 107, + "endOffset": 605 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 610, + "endColumn": 86, + "endOffset": 692 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ms-rMY/values-ms-rMY.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 610, + "endColumn": 86, + "endOffset": 692 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 697, + "endColumn": 103, + "endOffset": 796 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ms-rMY/values-ms-rMY.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 697, + "endColumn": 103, + "endOffset": 796 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 801, + "endColumn": 110, + "endOffset": 907 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ms-rMY/values-ms-rMY.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 801, + "endColumn": 110, + "endOffset": 907 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 912, + "endColumn": 77, + "endOffset": 985 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ms-rMY/values-ms-rMY.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 912, + "endColumn": 77, + "endOffset": 985 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 990, + "endColumn": 78, + "endOffset": 1064 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ms-rMY/values-ms-rMY.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 990, + "endColumn": 78, + "endOffset": 1064 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1069, + "endColumn": 79, + "endOffset": 1144 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ms-rMY/values-ms-rMY.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1069, + "endColumn": 79, + "endOffset": 1144 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1149, + "endColumn": 111, + "endOffset": 1256 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ms-rMY/values-ms-rMY.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1149, + "endColumn": 111, + "endOffset": 1256 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1261, + "endColumn": 108, + "endOffset": 1365 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ms-rMY/values-ms-rMY.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1261, + "endColumn": 108, + "endOffset": 1365 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1370, + "endColumn": 96, + "endOffset": 1462 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ms-rMY/values-ms-rMY.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1370, + "endColumn": 96, + "endOffset": 1462 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1467, + "endColumn": 108, + "endOffset": 1571 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ms-rMY/values-ms-rMY.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1467, + "endColumn": 108, + "endOffset": 1571 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1576, + "endColumn": 102, + "endOffset": 1674 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ms-rMY/values-ms-rMY.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1576, + "endColumn": 102, + "endOffset": 1674 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1679, + "endColumn": 106, + "endOffset": 1781 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ms-rMY/values-ms-rMY.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1679, + "endColumn": 106, + "endOffset": 1781 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1786, + "endColumn": 121, + "endOffset": 1903 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ms-rMY/values-ms-rMY.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1786, + "endColumn": 121, + "endOffset": 1903 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1908, + "endColumn": 100, + "endOffset": 2004 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ms-rMY/values-ms-rMY.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1908, + "endColumn": 100, + "endOffset": 2004 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2009, + "endColumn": 100, + "endOffset": 2105 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ms-rMY/values-ms-rMY.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2009, + "endColumn": 100, + "endOffset": 2105 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/multi/values-my-rMM.json b/android/build/intermediates/blame/res/debug/multi/values-my-rMM.json new file mode 100644 index 000000000..f62266f1c --- /dev/null +++ b/android/build/intermediates/blame/res/debug/multi/values-my-rMM.json @@ -0,0 +1,387 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-my-rMM/values-my-rMM.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 108, + "endOffset": 159 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-my-rMM/values-my-rMM.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 108, + "endOffset": 159 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 164, + "endColumn": 107, + "endOffset": 267 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-my-rMM/values-my-rMM.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 164, + "endColumn": 107, + "endOffset": 267 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 272, + "endColumn": 124, + "endOffset": 392 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-my-rMM/values-my-rMM.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 272, + "endColumn": 124, + "endOffset": 392 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 397, + "endColumn": 104, + "endOffset": 497 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-my-rMM/values-my-rMM.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 397, + "endColumn": 104, + "endOffset": 497 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 502, + "endColumn": 116, + "endOffset": 614 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-my-rMM/values-my-rMM.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 502, + "endColumn": 116, + "endOffset": 614 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 619, + "endColumn": 92, + "endOffset": 707 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-my-rMM/values-my-rMM.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 619, + "endColumn": 92, + "endOffset": 707 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 712, + "endColumn": 111, + "endOffset": 819 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-my-rMM/values-my-rMM.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 712, + "endColumn": 111, + "endOffset": 819 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 824, + "endColumn": 135, + "endOffset": 955 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-my-rMM/values-my-rMM.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 824, + "endColumn": 135, + "endOffset": 955 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 960, + "endColumn": 77, + "endOffset": 1033 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-my-rMM/values-my-rMM.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 960, + "endColumn": 77, + "endOffset": 1033 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1038, + "endColumn": 78, + "endOffset": 1112 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-my-rMM/values-my-rMM.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1038, + "endColumn": 78, + "endOffset": 1112 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1117, + "endColumn": 85, + "endOffset": 1198 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-my-rMM/values-my-rMM.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1117, + "endColumn": 85, + "endOffset": 1198 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1203, + "endColumn": 124, + "endOffset": 1323 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-my-rMM/values-my-rMM.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1203, + "endColumn": 124, + "endOffset": 1323 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1328, + "endColumn": 111, + "endOffset": 1435 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-my-rMM/values-my-rMM.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1328, + "endColumn": 111, + "endOffset": 1435 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1440, + "endColumn": 101, + "endOffset": 1537 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-my-rMM/values-my-rMM.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1440, + "endColumn": 101, + "endOffset": 1537 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1542, + "endColumn": 125, + "endOffset": 1663 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-my-rMM/values-my-rMM.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1542, + "endColumn": 125, + "endOffset": 1663 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1668, + "endColumn": 110, + "endOffset": 1774 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-my-rMM/values-my-rMM.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1668, + "endColumn": 110, + "endOffset": 1774 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1779, + "endColumn": 109, + "endOffset": 1884 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-my-rMM/values-my-rMM.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1779, + "endColumn": 109, + "endOffset": 1884 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1889, + "endColumn": 122, + "endOffset": 2007 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-my-rMM/values-my-rMM.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1889, + "endColumn": 122, + "endOffset": 2007 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 2012, + "endColumn": 99, + "endOffset": 2107 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-my-rMM/values-my-rMM.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 2012, + "endColumn": 99, + "endOffset": 2107 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2112, + "endColumn": 100, + "endOffset": 2208 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-my-rMM/values-my-rMM.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2112, + "endColumn": 100, + "endOffset": 2208 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/multi/values-nb.json b/android/build/intermediates/blame/res/debug/multi/values-nb.json new file mode 100644 index 000000000..c75fd0fcb --- /dev/null +++ b/android/build/intermediates/blame/res/debug/multi/values-nb.json @@ -0,0 +1,539 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-nb/values-nb.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 107, + "endOffset": 158 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-nb/values-nb.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 107, + "endOffset": 158 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 163, + "endColumn": 108, + "endOffset": 267 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-nb/values-nb.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 163, + "endColumn": 108, + "endOffset": 267 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 272, + "endColumn": 124, + "endOffset": 392 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-nb/values-nb.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 272, + "endColumn": 124, + "endOffset": 392 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 397, + "endColumn": 94, + "endOffset": 487 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-nb/values-nb.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 397, + "endColumn": 94, + "endOffset": 487 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 492, + "endColumn": 113, + "endOffset": 601 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-nb/values-nb.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 492, + "endColumn": 113, + "endOffset": 601 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 606, + "endColumn": 85, + "endOffset": 687 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-nb/values-nb.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 606, + "endColumn": 85, + "endOffset": 687 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 692, + "endColumn": 99, + "endOffset": 787 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-nb/values-nb.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 692, + "endColumn": 99, + "endOffset": 787 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 792, + "endColumn": 112, + "endOffset": 900 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-nb/values-nb.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 792, + "endColumn": 112, + "endOffset": 900 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 905, + "endColumn": 75, + "endOffset": 976 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-nb/values-nb.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 905, + "endColumn": 75, + "endOffset": 976 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 981, + "endColumn": 75, + "endOffset": 1052 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-nb/values-nb.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 981, + "endColumn": 75, + "endOffset": 1052 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1057, + "endColumn": 79, + "endOffset": 1132 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-nb/values-nb.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1057, + "endColumn": 79, + "endOffset": 1132 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1137, + "endColumn": 102, + "endOffset": 1235 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-nb/values-nb.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1137, + "endColumn": 102, + "endOffset": 1235 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1240, + "endColumn": 98, + "endOffset": 1334 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-nb/values-nb.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1240, + "endColumn": 98, + "endOffset": 1334 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1339, + "endColumn": 95, + "endOffset": 1430 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-nb/values-nb.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1339, + "endColumn": 95, + "endOffset": 1430 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1435, + "endColumn": 103, + "endOffset": 1534 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-nb/values-nb.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1435, + "endColumn": 103, + "endOffset": 1534 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1539, + "endColumn": 97, + "endOffset": 1632 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-nb/values-nb.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1539, + "endColumn": 97, + "endOffset": 1632 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1637, + "endColumn": 100, + "endOffset": 1733 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-nb/values-nb.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1637, + "endColumn": 100, + "endOffset": 1733 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1738, + "endColumn": 115, + "endOffset": 1849 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-nb/values-nb.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1738, + "endColumn": 115, + "endOffset": 1849 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1854, + "endColumn": 96, + "endOffset": 1946 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-nb/values-nb.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1854, + "endColumn": 96, + "endOffset": 1946 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1951, + "endColumn": 53, + "endOffset": 2000 + }, + "from": { + "file": "/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/values-nb/values-nb.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 53, + "endOffset": 104 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2005, + "endColumn": 71, + "endOffset": 2072 + }, + "from": { + "file": "/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/values-nb/values-nb.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 109, + "endColumn": 71, + "endOffset": 176 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2077, + "endColumn": 78, + "endOffset": 2151 + }, + "from": { + "file": "/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/values-nb/values-nb.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 181, + "endColumn": 78, + "endOffset": 255 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2156, + "endColumn": 70, + "endOffset": 2222 + }, + "from": { + "file": "/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/values-nb/values-nb.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 260, + "endColumn": 70, + "endOffset": 326 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2227, + "endColumn": 63, + "endOffset": 2286 + }, + "from": { + "file": "/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/values-nb/values-nb.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 331, + "endColumn": 63, + "endOffset": 390 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2291, + "endColumn": 55, + "endOffset": 2342 + }, + "from": { + "file": "/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/values-nb/values-nb.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 395, + "endColumn": 55, + "endOffset": 446 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 2347, + "endColumn": 58, + "endOffset": 2401 + }, + "from": { + "file": "/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/values-nb/values-nb.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 451, + "endColumn": 58, + "endOffset": 505 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 2406, + "endColumn": 73, + "endOffset": 2475 + }, + "from": { + "file": "/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/values-nb/values-nb.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 510, + "endColumn": 73, + "endOffset": 579 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 2480, + "endColumn": 100, + "endOffset": 2576 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-nb/values-nb.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1951, + "endColumn": 100, + "endOffset": 2047 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/multi/values-ne-rNP.json b/android/build/intermediates/blame/res/debug/multi/values-ne-rNP.json new file mode 100644 index 000000000..267001bb8 --- /dev/null +++ b/android/build/intermediates/blame/res/debug/multi/values-ne-rNP.json @@ -0,0 +1,387 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ne-rNP/values-ne-rNP.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 104, + "endOffset": 155 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ne-rNP/values-ne-rNP.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 104, + "endOffset": 155 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 160, + "endColumn": 107, + "endOffset": 263 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ne-rNP/values-ne-rNP.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 160, + "endColumn": 107, + "endOffset": 263 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 268, + "endColumn": 122, + "endOffset": 386 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ne-rNP/values-ne-rNP.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 268, + "endColumn": 122, + "endOffset": 386 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 391, + "endColumn": 103, + "endOffset": 490 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ne-rNP/values-ne-rNP.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 391, + "endColumn": 103, + "endOffset": 490 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 495, + "endColumn": 107, + "endOffset": 598 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ne-rNP/values-ne-rNP.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 495, + "endColumn": 107, + "endOffset": 598 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 603, + "endColumn": 90, + "endOffset": 689 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ne-rNP/values-ne-rNP.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 603, + "endColumn": 90, + "endOffset": 689 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 694, + "endColumn": 106, + "endOffset": 796 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ne-rNP/values-ne-rNP.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 694, + "endColumn": 106, + "endOffset": 796 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 801, + "endColumn": 126, + "endOffset": 923 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ne-rNP/values-ne-rNP.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 801, + "endColumn": 126, + "endOffset": 923 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 928, + "endColumn": 93, + "endOffset": 1017 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ne-rNP/values-ne-rNP.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 928, + "endColumn": 93, + "endOffset": 1017 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1022, + "endColumn": 89, + "endOffset": 1107 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ne-rNP/values-ne-rNP.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1022, + "endColumn": 89, + "endOffset": 1107 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1112, + "endColumn": 87, + "endOffset": 1195 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ne-rNP/values-ne-rNP.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1112, + "endColumn": 87, + "endOffset": 1195 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1200, + "endColumn": 109, + "endOffset": 1305 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ne-rNP/values-ne-rNP.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1200, + "endColumn": 109, + "endOffset": 1305 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1310, + "endColumn": 115, + "endOffset": 1421 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ne-rNP/values-ne-rNP.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1310, + "endColumn": 115, + "endOffset": 1421 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1426, + "endColumn": 102, + "endOffset": 1524 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ne-rNP/values-ne-rNP.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1426, + "endColumn": 102, + "endOffset": 1524 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1529, + "endColumn": 114, + "endOffset": 1639 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ne-rNP/values-ne-rNP.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1529, + "endColumn": 114, + "endOffset": 1639 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1644, + "endColumn": 101, + "endOffset": 1741 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ne-rNP/values-ne-rNP.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1644, + "endColumn": 101, + "endOffset": 1741 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1746, + "endColumn": 114, + "endOffset": 1856 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ne-rNP/values-ne-rNP.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1746, + "endColumn": 114, + "endOffset": 1856 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1861, + "endColumn": 130, + "endOffset": 1987 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ne-rNP/values-ne-rNP.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1861, + "endColumn": 130, + "endOffset": 1987 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1992, + "endColumn": 111, + "endOffset": 2099 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ne-rNP/values-ne-rNP.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1992, + "endColumn": 111, + "endOffset": 2099 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2104, + "endColumn": 100, + "endOffset": 2200 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ne-rNP/values-ne-rNP.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2104, + "endColumn": 100, + "endOffset": 2200 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/multi/values-night-v8.json b/android/build/intermediates/blame/res/debug/multi/values-night-v8.json new file mode 100644 index 000000000..d5fee4667 --- /dev/null +++ b/android/build/intermediates/blame/res/debug/multi/values-night-v8.json @@ -0,0 +1,140 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-night-v8/values-night-v8.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 69, + "endOffset": 120 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-night-v8/values-night-v8.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 69, + "endOffset": 120 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 125, + "endColumn": 83, + "endOffset": 204 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-night-v8/values-night-v8.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 125, + "endColumn": 83, + "endOffset": 204 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 209, + "endColumn": 83, + "endOffset": 288 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-night-v8/values-night-v8.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 209, + "endColumn": 83, + "endOffset": 288 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 293, + "endColumn": 95, + "endOffset": 384 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-night-v8/values-night-v8.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 293, + "endColumn": 95, + "endOffset": 384 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 389, + "endColumn": 101, + "endOffset": 486 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-night-v8/values-night-v8.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 389, + "endColumn": 101, + "endOffset": 486 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 491, + "endColumn": 101, + "endOffset": 588 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-night-v8/values-night-v8.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 491, + "endColumn": 101, + "endOffset": 588 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 593, + "endColumn": 93, + "endOffset": 682 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-night-v8/values-night-v8.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 593, + "endColumn": 93, + "endOffset": 682 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/multi/values-nl.json b/android/build/intermediates/blame/res/debug/multi/values-nl.json new file mode 100644 index 000000000..58d526592 --- /dev/null +++ b/android/build/intermediates/blame/res/debug/multi/values-nl.json @@ -0,0 +1,539 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-nl/values-nl.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 117, + "endOffset": 168 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-nl/values-nl.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 117, + "endOffset": 168 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 173, + "endColumn": 107, + "endOffset": 276 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-nl/values-nl.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 173, + "endColumn": 107, + "endOffset": 276 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 281, + "endColumn": 122, + "endOffset": 399 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-nl/values-nl.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 281, + "endColumn": 122, + "endOffset": 399 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 404, + "endColumn": 104, + "endOffset": 504 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-nl/values-nl.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 404, + "endColumn": 104, + "endOffset": 504 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 509, + "endColumn": 106, + "endOffset": 611 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-nl/values-nl.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 509, + "endColumn": 106, + "endOffset": 611 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 616, + "endColumn": 85, + "endOffset": 697 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-nl/values-nl.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 616, + "endColumn": 85, + "endOffset": 697 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 702, + "endColumn": 107, + "endOffset": 805 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-nl/values-nl.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 702, + "endColumn": 107, + "endOffset": 805 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 810, + "endColumn": 119, + "endOffset": 925 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-nl/values-nl.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 810, + "endColumn": 119, + "endOffset": 925 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 930, + "endColumn": 76, + "endOffset": 1002 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-nl/values-nl.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 930, + "endColumn": 76, + "endOffset": 1002 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1007, + "endColumn": 76, + "endOffset": 1079 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-nl/values-nl.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1007, + "endColumn": 76, + "endOffset": 1079 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1084, + "endColumn": 81, + "endOffset": 1161 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-nl/values-nl.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1084, + "endColumn": 81, + "endOffset": 1161 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1166, + "endColumn": 110, + "endOffset": 1272 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-nl/values-nl.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1166, + "endColumn": 110, + "endOffset": 1272 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1277, + "endColumn": 103, + "endOffset": 1376 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-nl/values-nl.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1277, + "endColumn": 103, + "endOffset": 1376 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1381, + "endColumn": 98, + "endOffset": 1475 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-nl/values-nl.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1381, + "endColumn": 98, + "endOffset": 1475 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1480, + "endColumn": 114, + "endOffset": 1590 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-nl/values-nl.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1480, + "endColumn": 114, + "endOffset": 1590 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1595, + "endColumn": 112, + "endOffset": 1703 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-nl/values-nl.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1595, + "endColumn": 112, + "endOffset": 1703 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1708, + "endColumn": 102, + "endOffset": 1806 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-nl/values-nl.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1708, + "endColumn": 102, + "endOffset": 1806 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1811, + "endColumn": 117, + "endOffset": 1924 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-nl/values-nl.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1811, + "endColumn": 117, + "endOffset": 1924 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1929, + "endColumn": 102, + "endOffset": 2027 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-nl/values-nl.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1929, + "endColumn": 102, + "endOffset": 2027 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2032, + "endColumn": 53, + "endOffset": 2081 + }, + "from": { + "file": "/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/values-nl/values-nl.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 53, + "endOffset": 104 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2086, + "endColumn": 74, + "endOffset": 2156 + }, + "from": { + "file": "/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/values-nl/values-nl.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 109, + "endColumn": 74, + "endOffset": 179 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2161, + "endColumn": 78, + "endOffset": 2235 + }, + "from": { + "file": "/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/values-nl/values-nl.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 184, + "endColumn": 78, + "endOffset": 258 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2240, + "endColumn": 70, + "endOffset": 2306 + }, + "from": { + "file": "/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/values-nl/values-nl.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 263, + "endColumn": 70, + "endOffset": 329 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2311, + "endColumn": 64, + "endOffset": 2371 + }, + "from": { + "file": "/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/values-nl/values-nl.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 334, + "endColumn": 64, + "endOffset": 394 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2376, + "endColumn": 55, + "endOffset": 2427 + }, + "from": { + "file": "/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/values-nl/values-nl.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 399, + "endColumn": 55, + "endOffset": 450 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 2432, + "endColumn": 58, + "endOffset": 2486 + }, + "from": { + "file": "/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/values-nl/values-nl.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 455, + "endColumn": 58, + "endOffset": 509 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 2491, + "endColumn": 73, + "endOffset": 2560 + }, + "from": { + "file": "/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/values-nl/values-nl.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 514, + "endColumn": 73, + "endOffset": 583 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 2565, + "endColumn": 100, + "endOffset": 2661 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-nl/values-nl.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2032, + "endColumn": 100, + "endOffset": 2128 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/multi/values-pa-rIN.json b/android/build/intermediates/blame/res/debug/multi/values-pa-rIN.json new file mode 100644 index 000000000..842d1e6aa --- /dev/null +++ b/android/build/intermediates/blame/res/debug/multi/values-pa-rIN.json @@ -0,0 +1,387 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-pa-rIN/values-pa-rIN.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 105, + "endOffset": 156 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pa-rIN/values-pa-rIN.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 105, + "endOffset": 156 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 161, + "endColumn": 107, + "endOffset": 264 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pa-rIN/values-pa-rIN.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 161, + "endColumn": 107, + "endOffset": 264 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 269, + "endColumn": 122, + "endOffset": 387 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pa-rIN/values-pa-rIN.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 269, + "endColumn": 122, + "endOffset": 387 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 392, + "endColumn": 104, + "endOffset": 492 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pa-rIN/values-pa-rIN.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 392, + "endColumn": 104, + "endOffset": 492 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 497, + "endColumn": 104, + "endOffset": 597 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pa-rIN/values-pa-rIN.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 497, + "endColumn": 104, + "endOffset": 597 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 602, + "endColumn": 85, + "endOffset": 683 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pa-rIN/values-pa-rIN.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 602, + "endColumn": 85, + "endOffset": 683 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 688, + "endColumn": 99, + "endOffset": 783 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pa-rIN/values-pa-rIN.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 688, + "endColumn": 99, + "endOffset": 783 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 788, + "endColumn": 112, + "endOffset": 896 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pa-rIN/values-pa-rIN.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 788, + "endColumn": 112, + "endOffset": 896 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 901, + "endColumn": 76, + "endOffset": 973 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pa-rIN/values-pa-rIN.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 901, + "endColumn": 76, + "endOffset": 973 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 978, + "endColumn": 75, + "endOffset": 1049 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pa-rIN/values-pa-rIN.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 978, + "endColumn": 75, + "endOffset": 1049 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1054, + "endColumn": 78, + "endOffset": 1128 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pa-rIN/values-pa-rIN.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1054, + "endColumn": 78, + "endOffset": 1128 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1133, + "endColumn": 100, + "endOffset": 1229 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pa-rIN/values-pa-rIN.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1133, + "endColumn": 100, + "endOffset": 1229 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1234, + "endColumn": 100, + "endOffset": 1330 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pa-rIN/values-pa-rIN.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1234, + "endColumn": 100, + "endOffset": 1330 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1335, + "endColumn": 96, + "endOffset": 1427 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pa-rIN/values-pa-rIN.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1335, + "endColumn": 96, + "endOffset": 1427 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1432, + "endColumn": 108, + "endOffset": 1536 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pa-rIN/values-pa-rIN.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1432, + "endColumn": 108, + "endOffset": 1536 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1541, + "endColumn": 98, + "endOffset": 1635 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pa-rIN/values-pa-rIN.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1541, + "endColumn": 98, + "endOffset": 1635 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1640, + "endColumn": 109, + "endOffset": 1745 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pa-rIN/values-pa-rIN.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1640, + "endColumn": 109, + "endOffset": 1745 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1750, + "endColumn": 121, + "endOffset": 1867 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pa-rIN/values-pa-rIN.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1750, + "endColumn": 121, + "endOffset": 1867 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1872, + "endColumn": 99, + "endOffset": 1967 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pa-rIN/values-pa-rIN.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1872, + "endColumn": 99, + "endOffset": 1967 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1972, + "endColumn": 100, + "endOffset": 2068 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pa-rIN/values-pa-rIN.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1972, + "endColumn": 100, + "endOffset": 2068 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/multi/values-pl.json b/android/build/intermediates/blame/res/debug/multi/values-pl.json new file mode 100644 index 000000000..e3986663d --- /dev/null +++ b/android/build/intermediates/blame/res/debug/multi/values-pl.json @@ -0,0 +1,539 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-pl/values-pl.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 115, + "endOffset": 166 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pl/values-pl.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 115, + "endOffset": 166 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 171, + "endColumn": 107, + "endOffset": 274 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pl/values-pl.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 171, + "endColumn": 107, + "endOffset": 274 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 279, + "endColumn": 122, + "endOffset": 397 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pl/values-pl.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 279, + "endColumn": 122, + "endOffset": 397 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 402, + "endColumn": 101, + "endOffset": 499 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pl/values-pl.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 402, + "endColumn": 101, + "endOffset": 499 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 504, + "endColumn": 107, + "endOffset": 607 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pl/values-pl.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 504, + "endColumn": 107, + "endOffset": 607 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 612, + "endColumn": 85, + "endOffset": 693 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pl/values-pl.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 612, + "endColumn": 85, + "endOffset": 693 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 698, + "endColumn": 108, + "endOffset": 802 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pl/values-pl.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 698, + "endColumn": 108, + "endOffset": 802 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 807, + "endColumn": 118, + "endOffset": 921 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pl/values-pl.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 807, + "endColumn": 118, + "endOffset": 921 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 926, + "endColumn": 77, + "endOffset": 999 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pl/values-pl.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 926, + "endColumn": 77, + "endOffset": 999 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1004, + "endColumn": 76, + "endOffset": 1076 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pl/values-pl.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1004, + "endColumn": 76, + "endOffset": 1076 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1081, + "endColumn": 81, + "endOffset": 1158 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pl/values-pl.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1081, + "endColumn": 81, + "endOffset": 1158 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1163, + "endColumn": 108, + "endOffset": 1267 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pl/values-pl.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1163, + "endColumn": 108, + "endOffset": 1267 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1272, + "endColumn": 108, + "endOffset": 1376 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pl/values-pl.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1272, + "endColumn": 108, + "endOffset": 1376 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1381, + "endColumn": 98, + "endOffset": 1475 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pl/values-pl.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1381, + "endColumn": 98, + "endOffset": 1475 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1480, + "endColumn": 108, + "endOffset": 1584 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pl/values-pl.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1480, + "endColumn": 108, + "endOffset": 1584 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1589, + "endColumn": 110, + "endOffset": 1695 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pl/values-pl.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1589, + "endColumn": 110, + "endOffset": 1695 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1700, + "endColumn": 107, + "endOffset": 1803 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pl/values-pl.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1700, + "endColumn": 107, + "endOffset": 1803 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1808, + "endColumn": 122, + "endOffset": 1926 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pl/values-pl.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1808, + "endColumn": 122, + "endOffset": 1926 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1931, + "endColumn": 95, + "endOffset": 2022 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pl/values-pl.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1931, + "endColumn": 95, + "endOffset": 2022 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2027, + "endColumn": 53, + "endOffset": 2076 + }, + "from": { + "file": "/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/values-pl/values-pl.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 53, + "endOffset": 104 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2081, + "endColumn": 69, + "endOffset": 2146 + }, + "from": { + "file": "/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/values-pl/values-pl.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 109, + "endColumn": 69, + "endOffset": 174 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2151, + "endColumn": 78, + "endOffset": 2225 + }, + "from": { + "file": "/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/values-pl/values-pl.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 179, + "endColumn": 78, + "endOffset": 253 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2230, + "endColumn": 70, + "endOffset": 2296 + }, + "from": { + "file": "/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/values-pl/values-pl.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 258, + "endColumn": 70, + "endOffset": 324 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2301, + "endColumn": 61, + "endOffset": 2358 + }, + "from": { + "file": "/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/values-pl/values-pl.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 329, + "endColumn": 61, + "endOffset": 386 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2363, + "endColumn": 55, + "endOffset": 2414 + }, + "from": { + "file": "/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/values-pl/values-pl.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 391, + "endColumn": 55, + "endOffset": 442 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 2419, + "endColumn": 58, + "endOffset": 2473 + }, + "from": { + "file": "/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/values-pl/values-pl.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 447, + "endColumn": 58, + "endOffset": 501 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 2478, + "endColumn": 73, + "endOffset": 2547 + }, + "from": { + "file": "/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/values-pl/values-pl.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 506, + "endColumn": 73, + "endOffset": 575 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 2552, + "endColumn": 100, + "endOffset": 2648 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pl/values-pl.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2027, + "endColumn": 100, + "endOffset": 2123 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/multi/values-port.json b/android/build/intermediates/blame/res/debug/multi/values-port.json new file mode 100644 index 000000000..484742668 --- /dev/null +++ b/android/build/intermediates/blame/res/debug/multi/values-port.json @@ -0,0 +1,26 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-port/values-port.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 55, + "endOffset": 106 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-port/values-port.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 55, + "endOffset": 106 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/multi/values-pt-rBR.json b/android/build/intermediates/blame/res/debug/multi/values-pt-rBR.json new file mode 100644 index 000000000..f57e02e5e --- /dev/null +++ b/android/build/intermediates/blame/res/debug/multi/values-pt-rBR.json @@ -0,0 +1,387 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-pt-rBR/values-pt-rBR.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 119, + "endOffset": 170 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt-rBR/values-pt-rBR.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 119, + "endOffset": 170 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 175, + "endColumn": 107, + "endOffset": 278 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt-rBR/values-pt-rBR.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 175, + "endColumn": 107, + "endOffset": 278 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 283, + "endColumn": 122, + "endOffset": 401 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt-rBR/values-pt-rBR.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 283, + "endColumn": 122, + "endOffset": 401 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 406, + "endColumn": 105, + "endOffset": 507 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt-rBR/values-pt-rBR.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 406, + "endColumn": 105, + "endOffset": 507 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 512, + "endColumn": 106, + "endOffset": 614 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt-rBR/values-pt-rBR.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 512, + "endColumn": 106, + "endOffset": 614 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 619, + "endColumn": 88, + "endOffset": 703 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt-rBR/values-pt-rBR.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 619, + "endColumn": 88, + "endOffset": 703 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 708, + "endColumn": 100, + "endOffset": 804 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt-rBR/values-pt-rBR.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 708, + "endColumn": 100, + "endOffset": 804 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 809, + "endColumn": 117, + "endOffset": 922 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt-rBR/values-pt-rBR.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 809, + "endColumn": 117, + "endOffset": 922 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 927, + "endColumn": 82, + "endOffset": 1005 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt-rBR/values-pt-rBR.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 927, + "endColumn": 82, + "endOffset": 1005 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1010, + "endColumn": 79, + "endOffset": 1085 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt-rBR/values-pt-rBR.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1010, + "endColumn": 79, + "endOffset": 1085 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1090, + "endColumn": 86, + "endOffset": 1172 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt-rBR/values-pt-rBR.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1090, + "endColumn": 86, + "endOffset": 1172 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1177, + "endColumn": 106, + "endOffset": 1279 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt-rBR/values-pt-rBR.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1177, + "endColumn": 106, + "endOffset": 1279 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1284, + "endColumn": 111, + "endOffset": 1391 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt-rBR/values-pt-rBR.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1284, + "endColumn": 111, + "endOffset": 1391 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1396, + "endColumn": 101, + "endOffset": 1493 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt-rBR/values-pt-rBR.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1396, + "endColumn": 101, + "endOffset": 1493 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1498, + "endColumn": 107, + "endOffset": 1601 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt-rBR/values-pt-rBR.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1498, + "endColumn": 107, + "endOffset": 1601 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1606, + "endColumn": 106, + "endOffset": 1708 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt-rBR/values-pt-rBR.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1606, + "endColumn": 106, + "endOffset": 1708 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1713, + "endColumn": 109, + "endOffset": 1818 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt-rBR/values-pt-rBR.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1713, + "endColumn": 109, + "endOffset": 1818 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1823, + "endColumn": 124, + "endOffset": 1943 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt-rBR/values-pt-rBR.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1823, + "endColumn": 124, + "endOffset": 1943 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1948, + "endColumn": 99, + "endOffset": 2043 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt-rBR/values-pt-rBR.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1948, + "endColumn": 99, + "endOffset": 2043 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2048, + "endColumn": 100, + "endOffset": 2144 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt-rBR/values-pt-rBR.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2048, + "endColumn": 100, + "endOffset": 2144 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/multi/values-pt-rPT.json b/android/build/intermediates/blame/res/debug/multi/values-pt-rPT.json new file mode 100644 index 000000000..e82c7d660 --- /dev/null +++ b/android/build/intermediates/blame/res/debug/multi/values-pt-rPT.json @@ -0,0 +1,539 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-pt-rPT/values-pt-rPT.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 119, + "endOffset": 170 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt-rPT/values-pt-rPT.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 119, + "endOffset": 170 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 175, + "endColumn": 107, + "endOffset": 278 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt-rPT/values-pt-rPT.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 175, + "endColumn": 107, + "endOffset": 278 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 283, + "endColumn": 122, + "endOffset": 401 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt-rPT/values-pt-rPT.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 283, + "endColumn": 122, + "endOffset": 401 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 406, + "endColumn": 105, + "endOffset": 507 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt-rPT/values-pt-rPT.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 406, + "endColumn": 105, + "endOffset": 507 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 512, + "endColumn": 106, + "endOffset": 614 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt-rPT/values-pt-rPT.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 512, + "endColumn": 106, + "endOffset": 614 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 619, + "endColumn": 88, + "endOffset": 703 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt-rPT/values-pt-rPT.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 619, + "endColumn": 88, + "endOffset": 703 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 708, + "endColumn": 100, + "endOffset": 804 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt-rPT/values-pt-rPT.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 708, + "endColumn": 100, + "endOffset": 804 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 809, + "endColumn": 123, + "endOffset": 928 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt-rPT/values-pt-rPT.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 809, + "endColumn": 123, + "endOffset": 928 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 933, + "endColumn": 83, + "endOffset": 1012 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt-rPT/values-pt-rPT.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 933, + "endColumn": 83, + "endOffset": 1012 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1017, + "endColumn": 80, + "endOffset": 1093 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt-rPT/values-pt-rPT.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1017, + "endColumn": 80, + "endOffset": 1093 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1098, + "endColumn": 86, + "endOffset": 1180 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt-rPT/values-pt-rPT.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1098, + "endColumn": 86, + "endOffset": 1180 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1185, + "endColumn": 106, + "endOffset": 1287 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt-rPT/values-pt-rPT.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1185, + "endColumn": 106, + "endOffset": 1287 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1292, + "endColumn": 111, + "endOffset": 1399 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt-rPT/values-pt-rPT.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1292, + "endColumn": 111, + "endOffset": 1399 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1404, + "endColumn": 101, + "endOffset": 1501 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt-rPT/values-pt-rPT.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1404, + "endColumn": 101, + "endOffset": 1501 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1506, + "endColumn": 107, + "endOffset": 1609 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt-rPT/values-pt-rPT.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1506, + "endColumn": 107, + "endOffset": 1609 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1614, + "endColumn": 106, + "endOffset": 1716 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt-rPT/values-pt-rPT.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1614, + "endColumn": 106, + "endOffset": 1716 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1721, + "endColumn": 106, + "endOffset": 1823 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt-rPT/values-pt-rPT.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1721, + "endColumn": 106, + "endOffset": 1823 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1828, + "endColumn": 121, + "endOffset": 1945 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt-rPT/values-pt-rPT.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1828, + "endColumn": 121, + "endOffset": 1945 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1950, + "endColumn": 98, + "endOffset": 2044 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt-rPT/values-pt-rPT.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1950, + "endColumn": 98, + "endOffset": 2044 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2049, + "endColumn": 53, + "endOffset": 2098 + }, + "from": { + "file": "/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/values-pt-rPT/values-pt-rPT.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 53, + "endOffset": 104 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2103, + "endColumn": 69, + "endOffset": 2168 + }, + "from": { + "file": "/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/values-pt-rPT/values-pt-rPT.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 109, + "endColumn": 69, + "endOffset": 174 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2173, + "endColumn": 78, + "endOffset": 2247 + }, + "from": { + "file": "/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/values-pt-rPT/values-pt-rPT.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 179, + "endColumn": 78, + "endOffset": 253 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2252, + "endColumn": 70, + "endOffset": 2318 + }, + "from": { + "file": "/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/values-pt-rPT/values-pt-rPT.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 258, + "endColumn": 70, + "endOffset": 324 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2323, + "endColumn": 60, + "endOffset": 2379 + }, + "from": { + "file": "/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/values-pt-rPT/values-pt-rPT.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 329, + "endColumn": 60, + "endOffset": 385 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2384, + "endColumn": 55, + "endOffset": 2435 + }, + "from": { + "file": "/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/values-pt-rPT/values-pt-rPT.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 390, + "endColumn": 55, + "endOffset": 441 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 2440, + "endColumn": 58, + "endOffset": 2494 + }, + "from": { + "file": "/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/values-pt-rPT/values-pt-rPT.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 446, + "endColumn": 58, + "endOffset": 500 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 2499, + "endColumn": 73, + "endOffset": 2568 + }, + "from": { + "file": "/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/values-pt-rPT/values-pt-rPT.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 505, + "endColumn": 73, + "endOffset": 574 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 2573, + "endColumn": 100, + "endOffset": 2669 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt-rPT/values-pt-rPT.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2049, + "endColumn": 100, + "endOffset": 2145 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/multi/values-pt.json b/android/build/intermediates/blame/res/debug/multi/values-pt.json new file mode 100644 index 000000000..121e01dec --- /dev/null +++ b/android/build/intermediates/blame/res/debug/multi/values-pt.json @@ -0,0 +1,1717 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-pt/values-pt.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 119, + "endOffset": 170 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt/values-pt.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 119, + "endOffset": 170 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 175, + "endColumn": 107, + "endOffset": 278 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt/values-pt.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 175, + "endColumn": 107, + "endOffset": 278 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 283, + "endColumn": 122, + "endOffset": 401 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt/values-pt.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 283, + "endColumn": 122, + "endOffset": 401 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 406, + "endColumn": 105, + "endOffset": 507 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt/values-pt.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 406, + "endColumn": 105, + "endOffset": 507 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 512, + "endColumn": 106, + "endOffset": 614 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt/values-pt.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 512, + "endColumn": 106, + "endOffset": 614 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 619, + "endColumn": 88, + "endOffset": 703 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt/values-pt.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 619, + "endColumn": 88, + "endOffset": 703 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 708, + "endColumn": 100, + "endOffset": 804 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt/values-pt.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 708, + "endColumn": 100, + "endOffset": 804 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 809, + "endColumn": 117, + "endOffset": 922 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt/values-pt.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 809, + "endColumn": 117, + "endOffset": 922 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 927, + "endColumn": 82, + "endOffset": 1005 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt/values-pt.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 927, + "endColumn": 82, + "endOffset": 1005 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1010, + "endColumn": 79, + "endOffset": 1085 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt/values-pt.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1010, + "endColumn": 79, + "endOffset": 1085 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1090, + "endColumn": 86, + "endOffset": 1172 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt/values-pt.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1090, + "endColumn": 86, + "endOffset": 1172 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1177, + "endColumn": 106, + "endOffset": 1279 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt/values-pt.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1177, + "endColumn": 106, + "endOffset": 1279 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1284, + "endColumn": 111, + "endOffset": 1391 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt/values-pt.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1284, + "endColumn": 111, + "endOffset": 1391 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1396, + "endColumn": 101, + "endOffset": 1493 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt/values-pt.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1396, + "endColumn": 101, + "endOffset": 1493 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1498, + "endColumn": 107, + "endOffset": 1601 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt/values-pt.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1498, + "endColumn": 107, + "endOffset": 1601 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1606, + "endColumn": 106, + "endOffset": 1708 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt/values-pt.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1606, + "endColumn": 106, + "endOffset": 1708 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1713, + "endColumn": 109, + "endOffset": 1818 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt/values-pt.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1713, + "endColumn": 109, + "endOffset": 1818 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1823, + "endColumn": 124, + "endOffset": 1943 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt/values-pt.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1823, + "endColumn": 124, + "endOffset": 1943 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1948, + "endColumn": 99, + "endOffset": 2043 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt/values-pt.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1948, + "endColumn": 99, + "endOffset": 2043 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2048, + "endColumn": 54, + "endOffset": 2098 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-pt/strings.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 842, + "endColumn": 54, + "endOffset": 892 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2103, + "endColumn": 46, + "endOffset": 2145 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-pt/strings.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 795, + "endColumn": 46, + "endOffset": 837 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2150, + "endColumn": 49, + "endOffset": 2195 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-pt/strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 109, + "endColumn": 49, + "endOffset": 154 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2200, + "endColumn": 53, + "endOffset": 2249 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-pt/strings.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 159, + "endColumn": 53, + "endOffset": 208 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2254, + "endColumn": 47, + "endOffset": 2297 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-pt/strings.xml", + "position": { + "startLine": 61, + "startColumn": 4, + "startOffset": 5004, + "endColumn": 47, + "endOffset": 5047 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2302, + "endColumn": 62, + "endOffset": 2360 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-pt/strings.xml", + "position": { + "startLine": 48, + "startColumn": 4, + "startOffset": 3740, + "endColumn": 62, + "endOffset": 3798 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 2365, + "endColumn": 50, + "endOffset": 2411 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-pt/strings.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 897, + "endColumn": 50, + "endOffset": 943 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 2416, + "endColumn": 47, + "endOffset": 2459 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-pt/strings.xml", + "position": { + "startLine": 44, + "startColumn": 4, + "startOffset": 3430, + "endColumn": 47, + "endOffset": 3473 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 2464, + "endColumn": 41, + "endOffset": 2501 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-pt/strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 213, + "endColumn": 41, + "endOffset": 250 + } + } + }, + { + "to": { + "startLine": 30, + "startColumn": 4, + "startOffset": 2506, + "endColumn": 42, + "endOffset": 2544 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-pt/strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 255, + "endColumn": 42, + "endOffset": 293 + } + } + }, + { + "to": { + "startLine": 31, + "startColumn": 4, + "startOffset": 2549, + "endColumn": 53, + "endOffset": 2598 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-pt/strings.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 53, + "endOffset": 104 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 2603, + "endColumn": 151, + "endOffset": 2750 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-pt/strings.xml", + "position": { + "startLine": 45, + "startColumn": 4, + "startOffset": 3478, + "endColumn": 151, + "endOffset": 3625 + } + } + }, + { + "to": { + "startLine": 33, + "startColumn": 4, + "startOffset": 2755, + "endColumn": 52, + "endOffset": 2803 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-pt/strings.xml", + "position": { + "startLine": 24, + "startColumn": 4, + "startOffset": 1464, + "endColumn": 52, + "endOffset": 1512 + } + } + }, + { + "to": { + "startLine": 34, + "startColumn": 4, + "startOffset": 2808, + "endColumn": 62, + "endOffset": 2866 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-pt/strings.xml", + "position": { + "startLine": 32, + "startColumn": 4, + "startOffset": 2057, + "endColumn": 62, + "endOffset": 2115 + } + } + }, + { + "to": { + "startLine": 35, + "startColumn": 4, + "startOffset": 2871, + "endColumn": 160, + "endOffset": 3027 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-pt/strings.xml", + "position": { + "startLine": 33, + "startColumn": 4, + "startOffset": 2120, + "endColumn": 160, + "endOffset": 2276 + } + } + }, + { + "to": { + "startLine": 36, + "startColumn": 4, + "startOffset": 3032, + "endColumn": 64, + "endOffset": 3092 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-pt/strings.xml", + "position": { + "startLine": 31, + "startColumn": 4, + "startOffset": 1992, + "endColumn": 64, + "endOffset": 2052 + } + } + }, + { + "to": { + "startLine": 37, + "startColumn": 4, + "startOffset": 3097, + "endColumn": 81, + "endOffset": 3174 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-pt/strings.xml", + "position": { + "startLine": 57, + "startColumn": 4, + "startOffset": 4700, + "endColumn": 81, + "endOffset": 4777 + } + } + }, + { + "to": { + "startLine": 38, + "startColumn": 4, + "startOffset": 3179, + "endColumn": 65, + "endOffset": 3240 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-pt/strings.xml", + "position": { + "startLine": 36, + "startColumn": 4, + "startOffset": 2587, + "endColumn": 65, + "endOffset": 2648 + } + } + }, + { + "to": { + "startLine": 39, + "startColumn": 4, + "startOffset": 3245, + "endColumn": 144, + "endOffset": 3385 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-pt/strings.xml", + "position": { + "startLine": 37, + "startColumn": 4, + "startOffset": 2653, + "endColumn": 144, + "endOffset": 2793 + } + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 3390, + "endColumn": 58, + "endOffset": 3444 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-pt/strings.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 1397, + "endColumn": 66, + "endOffset": 1459 + } + } + }, + { + "to": { + "startLine": 41, + "startColumn": 4, + "startOffset": 3449, + "endColumn": 53, + "endOffset": 3498 + }, + "from": { + "file": "/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/values-pt/values-pt.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 53, + "endOffset": 104 + } + } + }, + { + "to": { + "startLine": 42, + "startColumn": 4, + "startOffset": 3503, + "endColumn": 69, + "endOffset": 3568 + }, + "from": { + "file": "/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/values-pt/values-pt.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 109, + "endColumn": 69, + "endOffset": 174 + } + } + }, + { + "to": { + "startLine": 43, + "startColumn": 4, + "startOffset": 3573, + "endColumn": 78, + "endOffset": 3647 + }, + "from": { + "file": "/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/values-pt/values-pt.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 179, + "endColumn": 78, + "endOffset": 253 + } + } + }, + { + "to": { + "startLine": 44, + "startColumn": 4, + "startOffset": 3652, + "endColumn": 70, + "endOffset": 3718 + }, + "from": { + "file": "/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/values-pt/values-pt.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 258, + "endColumn": 70, + "endOffset": 324 + } + } + }, + { + "to": { + "startLine": 45, + "startColumn": 4, + "startOffset": 3723, + "endColumn": 60, + "endOffset": 3779 + }, + "from": { + "file": "/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/values-pt/values-pt.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 329, + "endColumn": 60, + "endOffset": 385 + } + } + }, + { + "to": { + "startLine": 46, + "startColumn": 4, + "startOffset": 3784, + "endColumn": 55, + "endOffset": 3835 + }, + "from": { + "file": "/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/values-pt/values-pt.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 390, + "endColumn": 55, + "endOffset": 441 + } + } + }, + { + "to": { + "startLine": 47, + "startColumn": 4, + "startOffset": 3840, + "endColumn": 58, + "endOffset": 3894 + }, + "from": { + "file": "/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/values-pt/values-pt.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 446, + "endColumn": 58, + "endOffset": 500 + } + } + }, + { + "to": { + "startLine": 48, + "startColumn": 4, + "startOffset": 3899, + "endColumn": 73, + "endOffset": 3968 + }, + "from": { + "file": "/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/values-pt/values-pt.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 505, + "endColumn": 73, + "endOffset": 574 + } + } + }, + { + "to": { + "startLine": 49, + "startColumn": 4, + "startOffset": 3973, + "endColumn": 51, + "endOffset": 4020 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-pt/strings.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 1345, + "endColumn": 51, + "endOffset": 1392 + } + } + }, + { + "to": { + "startLine": 50, + "startColumn": 4, + "startOffset": 4025, + "endColumn": 96, + "endOffset": 4117 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-pt/strings.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 298, + "endColumn": 96, + "endOffset": 390 + } + } + }, + { + "to": { + "startLine": 51, + "startColumn": 4, + "startOffset": 4122, + "endColumn": 75, + "endOffset": 4193 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-pt/strings.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 395, + "endColumn": 75, + "endOffset": 466 + } + } + }, + { + "to": { + "startLine": 52, + "startColumn": 4, + "startOffset": 4198, + "endColumn": 101, + "endOffset": 4295 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-pt/strings.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 948, + "endColumn": 101, + "endOffset": 1045 + } + } + }, + { + "to": { + "startLine": 53, + "startColumn": 4, + "startOffset": 4300, + "endColumn": 50, + "endOffset": 4346 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-pt/strings.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 471, + "endColumn": 50, + "endOffset": 517 + } + } + }, + { + "to": { + "startLine": 54, + "startColumn": 4, + "startOffset": 4351, + "endColumn": 51, + "endOffset": 4398 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-pt/strings.xml", + "position": { + "startLine": 52, + "startColumn": 4, + "startOffset": 4284, + "endColumn": 51, + "endOffset": 4331 + } + } + }, + { + "to": { + "startLine": 55, + "startColumn": 4, + "startOffset": 4403, + "endColumn": 147, + "endOffset": 4546 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-pt/strings.xml", + "position": { + "startLine": 53, + "startColumn": 4, + "startOffset": 4336, + "endColumn": 147, + "endOffset": 4479 + } + } + }, + { + "to": { + "startLine": 56, + "startColumn": 4, + "startOffset": 4551, + "endColumn": 48, + "endOffset": 4595 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-pt/strings.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1050, + "endColumn": 48, + "endOffset": 1094 + } + } + }, + { + "to": { + "startLine": 57, + "startColumn": 4, + "startOffset": 4600, + "endColumn": 70, + "endOffset": 4666 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-pt/strings.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1099, + "endColumn": 70, + "endOffset": 1165 + } + } + }, + { + "to": { + "startLine": 58, + "startColumn": 4, + "startOffset": 4671, + "endColumn": 82, + "endOffset": 4749 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-pt/strings.xml", + "position": { + "startLine": 56, + "startColumn": 4, + "startOffset": 4617, + "endColumn": 82, + "endOffset": 4695 + } + } + }, + { + "to": { + "startLine": 59, + "startColumn": 4, + "startOffset": 4754, + "endColumn": 74, + "endOffset": 4824 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-pt/strings.xml", + "position": { + "startLine": 60, + "startColumn": 4, + "startOffset": 4929, + "endColumn": 74, + "endOffset": 4999 + } + } + }, + { + "to": { + "startLine": 60, + "startColumn": 4, + "startOffset": 4829, + "endColumn": 70, + "endOffset": 4895 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-pt/strings.xml", + "position": { + "startLine": 59, + "startColumn": 4, + "startOffset": 4858, + "endColumn": 70, + "endOffset": 4924 + } + } + }, + { + "to": { + "startLine": 61, + "startColumn": 4, + "startOffset": 4900, + "endColumn": 60, + "endOffset": 4956 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-pt/strings.xml", + "position": { + "startLine": 50, + "startColumn": 4, + "startOffset": 4006, + "endColumn": 60, + "endOffset": 4062 + } + } + }, + { + "to": { + "startLine": 62, + "startColumn": 4, + "startOffset": 4961, + "endColumn": 216, + "endOffset": 5173 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-pt/strings.xml", + "position": { + "startLine": 51, + "startColumn": 4, + "startOffset": 4067, + "endColumn": 216, + "endOffset": 4279 + } + } + }, + { + "to": { + "startLine": 63, + "startColumn": 4, + "startOffset": 5178, + "endColumn": 58, + "endOffset": 5232 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-pt/strings.xml", + "position": { + "startLine": 47, + "startColumn": 4, + "startOffset": 3681, + "endColumn": 58, + "endOffset": 3735 + } + } + }, + { + "to": { + "startLine": 64, + "startColumn": 4, + "startOffset": 5237, + "endColumn": 50, + "endOffset": 5283 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-pt/strings.xml", + "position": { + "startLine": 46, + "startColumn": 4, + "startOffset": 3630, + "endColumn": 50, + "endOffset": 3676 + } + } + }, + { + "to": { + "startLine": 65, + "startColumn": 4, + "startOffset": 5288, + "endColumn": 61, + "endOffset": 5345 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-pt/strings.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 522, + "endColumn": 61, + "endOffset": 579 + } + } + }, + { + "to": { + "startLine": 66, + "startColumn": 4, + "startOffset": 5350, + "endColumn": 66, + "endOffset": 5412 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-pt/strings.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1170, + "endColumn": 66, + "endOffset": 1232 + } + } + }, + { + "to": { + "startLine": 67, + "startColumn": 4, + "startOffset": 5417, + "endColumn": 50, + "endOffset": 5463 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-pt/strings.xml", + "position": { + "startLine": 25, + "startColumn": 4, + "startOffset": 1517, + "endColumn": 50, + "endOffset": 1563 + } + } + }, + { + "to": { + "startLine": 68, + "startColumn": 4, + "startOffset": 5468, + "endColumn": 66, + "endOffset": 5530 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-pt/strings.xml", + "position": { + "startLine": 34, + "startColumn": 4, + "startOffset": 2281, + "endColumn": 66, + "endOffset": 2343 + } + } + }, + { + "to": { + "startLine": 69, + "startColumn": 4, + "startOffset": 5535, + "endColumn": 238, + "endOffset": 5769 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-pt/strings.xml", + "position": { + "startLine": 35, + "startColumn": 4, + "startOffset": 2348, + "endColumn": 238, + "endOffset": 2582 + } + } + }, + { + "to": { + "startLine": 70, + "startColumn": 4, + "startOffset": 5774, + "endColumn": 202, + "endOffset": 5972 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-pt/strings.xml", + "position": { + "startLine": 49, + "startColumn": 4, + "startOffset": 3803, + "endColumn": 202, + "endOffset": 4001 + } + } + }, + { + "to": { + "startLine": 71, + "startColumn": 4, + "startOffset": 5977, + "endColumn": 75, + "endOffset": 6048 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-pt/strings.xml", + "position": { + "startLine": 58, + "startColumn": 4, + "startOffset": 4782, + "endColumn": 75, + "endOffset": 4853 + } + } + }, + { + "to": { + "startLine": 72, + "startColumn": 4, + "startOffset": 6053, + "endColumn": 107, + "endOffset": 6156 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-pt/strings.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1237, + "endColumn": 107, + "endOffset": 1340 + } + } + }, + { + "to": { + "startLine": 73, + "startColumn": 4, + "startOffset": 6161, + "endColumn": 56, + "endOffset": 6213 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-pt/strings.xml", + "position": { + "startLine": 40, + "startColumn": 4, + "startOffset": 3006, + "endColumn": 56, + "endOffset": 3058 + } + } + }, + { + "to": { + "startLine": 74, + "startColumn": 4, + "startOffset": 6218, + "endColumn": 81, + "endOffset": 6295 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-pt/strings.xml", + "position": { + "startLine": 41, + "startColumn": 4, + "startOffset": 3063, + "endColumn": 81, + "endOffset": 3140 + } + } + }, + { + "to": { + "startLine": 75, + "startColumn": 4, + "startOffset": 6300, + "endColumn": 50, + "endOffset": 6346 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-pt/strings.xml", + "position": { + "startLine": 30, + "startColumn": 4, + "startOffset": 1941, + "endColumn": 50, + "endOffset": 1987 + } + } + }, + { + "to": { + "startLine": 76, + "startColumn": 4, + "startOffset": 6351, + "endColumn": 61, + "endOffset": 6408 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-pt/strings.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 1568, + "endColumn": 61, + "endOffset": 1625 + } + } + }, + { + "to": { + "startLine": 77, + "startColumn": 4, + "startOffset": 6413, + "endColumn": 144, + "endOffset": 6553 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-pt/strings.xml", + "position": { + "startLine": 28, + "startColumn": 4, + "startOffset": 1696, + "endColumn": 144, + "endOffset": 1836 + } + } + }, + { + "to": { + "startLine": 78, + "startColumn": 4, + "startOffset": 6558, + "endColumn": 99, + "endOffset": 6653 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-pt/strings.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 1841, + "endColumn": 99, + "endOffset": 1936 + } + } + }, + { + "to": { + "startLine": 79, + "startColumn": 4, + "startOffset": 6658, + "endColumn": 65, + "endOffset": 6719 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-pt/strings.xml", + "position": { + "startLine": 27, + "startColumn": 4, + "startOffset": 1630, + "endColumn": 65, + "endOffset": 1691 + } + } + }, + { + "to": { + "startLine": 80, + "startColumn": 4, + "startOffset": 6724, + "endColumn": 62, + "endOffset": 6782 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-pt/strings.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 732, + "endColumn": 62, + "endOffset": 790 + } + } + }, + { + "to": { + "startLine": 81, + "startColumn": 4, + "startOffset": 6787, + "endColumn": 218, + "endOffset": 7001 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-pt/strings.xml", + "position": { + "startLine": 43, + "startColumn": 4, + "startOffset": 3211, + "endColumn": 218, + "endOffset": 3425 + } + } + }, + { + "to": { + "startLine": 82, + "startColumn": 4, + "startOffset": 7006, + "endColumn": 65, + "endOffset": 7067 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-pt/strings.xml", + "position": { + "startLine": 42, + "startColumn": 4, + "startOffset": 3145, + "endColumn": 65, + "endOffset": 3206 + } + } + }, + { + "to": { + "startLine": 83, + "startColumn": 4, + "startOffset": 7072, + "endColumn": 100, + "endOffset": 7168 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-pt/values-pt.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2048, + "endColumn": 100, + "endOffset": 2144 + } + } + }, + { + "to": { + "startLine": 84, + "startColumn": 4, + "startOffset": 7173, + "endColumn": 65, + "endOffset": 7234 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-pt/strings.xml", + "position": { + "startLine": 62, + "startColumn": 4, + "startOffset": 5052, + "endColumn": 65, + "endOffset": 5113 + } + } + }, + { + "to": { + "startLine": 85, + "startColumn": 4, + "startOffset": 7239, + "endColumn": 94, + "endOffset": 7329 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-pt/strings.xml", + "position": { + "startLine": 63, + "startColumn": 4, + "startOffset": 5118, + "endColumn": 94, + "endOffset": 5208 + } + } + }, + { + "to": { + "startLine": 86, + "startColumn": 4, + "startOffset": 7334, + "endColumn": 54, + "endOffset": 7384 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-pt/strings.xml", + "position": { + "startLine": 54, + "startColumn": 4, + "startOffset": 4484, + "endColumn": 54, + "endOffset": 4534 + } + } + }, + { + "to": { + "startLine": 87, + "startColumn": 4, + "startOffset": 7389, + "endColumn": 77, + "endOffset": 7462 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-pt/strings.xml", + "position": { + "startLine": 55, + "startColumn": 4, + "startOffset": 4539, + "endColumn": 77, + "endOffset": 4612 + } + } + }, + { + "to": { + "startLine": 88, + "startColumn": 4, + "startOffset": 7467, + "endColumn": 88, + "endOffset": 7551 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-pt/strings.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 584, + "endColumn": 88, + "endOffset": 668 + } + } + }, + { + "to": { + "startLine": 89, + "startColumn": 4, + "startOffset": 7556, + "endColumn": 58, + "endOffset": 7610 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-pt/strings.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 673, + "endColumn": 58, + "endOffset": 727 + } + } + }, + { + "to": { + "startLine": 90, + "startColumn": 4, + "startOffset": 7615, + "endColumn": 59, + "endOffset": 7670 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-pt/strings.xml", + "position": { + "startLine": 38, + "startColumn": 4, + "startOffset": 2798, + "endColumn": 59, + "endOffset": 2853 + } + } + }, + { + "to": { + "startLine": 91, + "startColumn": 4, + "startOffset": 7675, + "endColumn": 147, + "endOffset": 7818 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-pt/strings.xml", + "position": { + "startLine": 39, + "startColumn": 4, + "startOffset": 2858, + "endColumn": 147, + "endOffset": 3001 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/multi/values-ro.json b/android/build/intermediates/blame/res/debug/multi/values-ro.json new file mode 100644 index 000000000..724d0726a --- /dev/null +++ b/android/build/intermediates/blame/res/debug/multi/values-ro.json @@ -0,0 +1,539 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ro/values-ro.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 120, + "endOffset": 171 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ro/values-ro.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 120, + "endOffset": 171 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 176, + "endColumn": 107, + "endOffset": 279 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ro/values-ro.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 176, + "endColumn": 107, + "endOffset": 279 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 284, + "endColumn": 122, + "endOffset": 402 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ro/values-ro.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 284, + "endColumn": 122, + "endOffset": 402 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 407, + "endColumn": 103, + "endOffset": 506 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ro/values-ro.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 407, + "endColumn": 103, + "endOffset": 506 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 511, + "endColumn": 112, + "endOffset": 619 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ro/values-ro.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 511, + "endColumn": 112, + "endOffset": 619 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 624, + "endColumn": 87, + "endOffset": 707 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ro/values-ro.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 624, + "endColumn": 87, + "endOffset": 707 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 712, + "endColumn": 111, + "endOffset": 819 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ro/values-ro.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 712, + "endColumn": 111, + "endOffset": 819 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 824, + "endColumn": 120, + "endOffset": 940 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ro/values-ro.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 824, + "endColumn": 120, + "endOffset": 940 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 945, + "endColumn": 84, + "endOffset": 1025 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ro/values-ro.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 945, + "endColumn": 84, + "endOffset": 1025 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1030, + "endColumn": 81, + "endOffset": 1107 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ro/values-ro.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1030, + "endColumn": 81, + "endOffset": 1107 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1112, + "endColumn": 82, + "endOffset": 1190 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ro/values-ro.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1112, + "endColumn": 82, + "endOffset": 1190 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1195, + "endColumn": 111, + "endOffset": 1302 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ro/values-ro.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1195, + "endColumn": 111, + "endOffset": 1302 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1307, + "endColumn": 112, + "endOffset": 1415 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ro/values-ro.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1307, + "endColumn": 112, + "endOffset": 1415 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1420, + "endColumn": 99, + "endOffset": 1515 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ro/values-ro.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1420, + "endColumn": 99, + "endOffset": 1515 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1520, + "endColumn": 113, + "endOffset": 1629 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ro/values-ro.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1520, + "endColumn": 113, + "endOffset": 1629 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1634, + "endColumn": 104, + "endOffset": 1734 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ro/values-ro.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1634, + "endColumn": 104, + "endOffset": 1734 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1739, + "endColumn": 105, + "endOffset": 1840 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ro/values-ro.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1739, + "endColumn": 105, + "endOffset": 1840 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1845, + "endColumn": 120, + "endOffset": 1961 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ro/values-ro.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1845, + "endColumn": 120, + "endOffset": 1961 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1966, + "endColumn": 102, + "endOffset": 2064 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ro/values-ro.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1966, + "endColumn": 102, + "endOffset": 2064 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2069, + "endColumn": 53, + "endOffset": 2118 + }, + "from": { + "file": "/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/values-ro/values-ro.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 53, + "endOffset": 104 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2123, + "endColumn": 69, + "endOffset": 2188 + }, + "from": { + "file": "/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/values-ro/values-ro.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 109, + "endColumn": 69, + "endOffset": 174 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2193, + "endColumn": 78, + "endOffset": 2267 + }, + "from": { + "file": "/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/values-ro/values-ro.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 179, + "endColumn": 78, + "endOffset": 253 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2272, + "endColumn": 70, + "endOffset": 2338 + }, + "from": { + "file": "/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/values-ro/values-ro.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 258, + "endColumn": 70, + "endOffset": 324 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2343, + "endColumn": 64, + "endOffset": 2403 + }, + "from": { + "file": "/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/values-ro/values-ro.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 329, + "endColumn": 64, + "endOffset": 389 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2408, + "endColumn": 55, + "endOffset": 2459 + }, + "from": { + "file": "/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/values-ro/values-ro.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 394, + "endColumn": 55, + "endOffset": 445 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 2464, + "endColumn": 58, + "endOffset": 2518 + }, + "from": { + "file": "/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/values-ro/values-ro.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 450, + "endColumn": 58, + "endOffset": 504 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 2523, + "endColumn": 73, + "endOffset": 2592 + }, + "from": { + "file": "/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/values-ro/values-ro.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 509, + "endColumn": 73, + "endOffset": 578 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 2597, + "endColumn": 100, + "endOffset": 2693 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ro/values-ro.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2069, + "endColumn": 100, + "endOffset": 2165 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/multi/values-ru.json b/android/build/intermediates/blame/res/debug/multi/values-ru.json new file mode 100644 index 000000000..06cdb897f --- /dev/null +++ b/android/build/intermediates/blame/res/debug/multi/values-ru.json @@ -0,0 +1,539 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ru/values-ru.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 114, + "endOffset": 165 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ru/values-ru.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 114, + "endOffset": 165 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 107, + "endOffset": 273 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ru/values-ru.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 170, + "endColumn": 107, + "endOffset": 273 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 278, + "endColumn": 122, + "endOffset": 396 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ru/values-ru.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 278, + "endColumn": 122, + "endOffset": 396 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 401, + "endColumn": 101, + "endOffset": 498 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ru/values-ru.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 401, + "endColumn": 101, + "endOffset": 498 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 503, + "endColumn": 111, + "endOffset": 610 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ru/values-ru.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 503, + "endColumn": 111, + "endOffset": 610 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 615, + "endColumn": 85, + "endOffset": 696 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ru/values-ru.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 615, + "endColumn": 85, + "endOffset": 696 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 701, + "endColumn": 104, + "endOffset": 801 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ru/values-ru.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 701, + "endColumn": 104, + "endOffset": 801 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 806, + "endColumn": 119, + "endOffset": 921 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ru/values-ru.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 806, + "endColumn": 119, + "endOffset": 921 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 926, + "endColumn": 78, + "endOffset": 1000 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ru/values-ru.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 926, + "endColumn": 78, + "endOffset": 1000 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1005, + "endColumn": 77, + "endOffset": 1078 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ru/values-ru.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1005, + "endColumn": 77, + "endOffset": 1078 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1083, + "endColumn": 79, + "endOffset": 1158 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ru/values-ru.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1083, + "endColumn": 79, + "endOffset": 1158 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1163, + "endColumn": 105, + "endOffset": 1264 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ru/values-ru.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1163, + "endColumn": 105, + "endOffset": 1264 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1269, + "endColumn": 107, + "endOffset": 1372 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ru/values-ru.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1269, + "endColumn": 107, + "endOffset": 1372 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1377, + "endColumn": 97, + "endOffset": 1470 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ru/values-ru.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1377, + "endColumn": 97, + "endOffset": 1470 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1475, + "endColumn": 108, + "endOffset": 1579 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ru/values-ru.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1475, + "endColumn": 108, + "endOffset": 1579 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1584, + "endColumn": 105, + "endOffset": 1685 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ru/values-ru.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1584, + "endColumn": 105, + "endOffset": 1685 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1690, + "endColumn": 107, + "endOffset": 1793 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ru/values-ru.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1690, + "endColumn": 107, + "endOffset": 1793 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1798, + "endColumn": 135, + "endOffset": 1929 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ru/values-ru.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1798, + "endColumn": 135, + "endOffset": 1929 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1934, + "endColumn": 99, + "endOffset": 2029 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ru/values-ru.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1934, + "endColumn": 99, + "endOffset": 2029 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2034, + "endColumn": 53, + "endOffset": 2083 + }, + "from": { + "file": "/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/values-ru/values-ru.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 53, + "endOffset": 104 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2088, + "endColumn": 72, + "endOffset": 2156 + }, + "from": { + "file": "/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/values-ru/values-ru.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 109, + "endColumn": 72, + "endOffset": 177 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2161, + "endColumn": 78, + "endOffset": 2235 + }, + "from": { + "file": "/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/values-ru/values-ru.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 182, + "endColumn": 78, + "endOffset": 256 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2240, + "endColumn": 70, + "endOffset": 2306 + }, + "from": { + "file": "/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/values-ru/values-ru.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 261, + "endColumn": 70, + "endOffset": 327 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2311, + "endColumn": 62, + "endOffset": 2369 + }, + "from": { + "file": "/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/values-ru/values-ru.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 332, + "endColumn": 62, + "endOffset": 390 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2374, + "endColumn": 55, + "endOffset": 2425 + }, + "from": { + "file": "/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/values-ru/values-ru.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 395, + "endColumn": 55, + "endOffset": 446 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 2430, + "endColumn": 58, + "endOffset": 2484 + }, + "from": { + "file": "/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/values-ru/values-ru.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 451, + "endColumn": 58, + "endOffset": 505 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 2489, + "endColumn": 73, + "endOffset": 2558 + }, + "from": { + "file": "/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/values-ru/values-ru.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 510, + "endColumn": 73, + "endOffset": 579 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 2563, + "endColumn": 100, + "endOffset": 2659 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ru/values-ru.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2034, + "endColumn": 100, + "endOffset": 2130 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/multi/values-si-rLK.json b/android/build/intermediates/blame/res/debug/multi/values-si-rLK.json new file mode 100644 index 000000000..56ffea863 --- /dev/null +++ b/android/build/intermediates/blame/res/debug/multi/values-si-rLK.json @@ -0,0 +1,387 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-si-rLK/values-si-rLK.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 109, + "endOffset": 160 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-si-rLK/values-si-rLK.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 109, + "endOffset": 160 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 165, + "endColumn": 107, + "endOffset": 268 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-si-rLK/values-si-rLK.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 165, + "endColumn": 107, + "endOffset": 268 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 273, + "endColumn": 122, + "endOffset": 391 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-si-rLK/values-si-rLK.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 273, + "endColumn": 122, + "endOffset": 391 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 396, + "endColumn": 106, + "endOffset": 498 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-si-rLK/values-si-rLK.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 396, + "endColumn": 106, + "endOffset": 498 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 503, + "endColumn": 106, + "endOffset": 605 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-si-rLK/values-si-rLK.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 503, + "endColumn": 106, + "endOffset": 605 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 610, + "endColumn": 87, + "endOffset": 693 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-si-rLK/values-si-rLK.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 610, + "endColumn": 87, + "endOffset": 693 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 698, + "endColumn": 104, + "endOffset": 798 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-si-rLK/values-si-rLK.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 698, + "endColumn": 104, + "endOffset": 798 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 803, + "endColumn": 115, + "endOffset": 914 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-si-rLK/values-si-rLK.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 803, + "endColumn": 115, + "endOffset": 914 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 919, + "endColumn": 88, + "endOffset": 1003 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-si-rLK/values-si-rLK.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 919, + "endColumn": 88, + "endOffset": 1003 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1008, + "endColumn": 86, + "endOffset": 1090 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-si-rLK/values-si-rLK.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1008, + "endColumn": 86, + "endOffset": 1090 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1095, + "endColumn": 83, + "endOffset": 1174 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-si-rLK/values-si-rLK.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1095, + "endColumn": 83, + "endOffset": 1174 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1179, + "endColumn": 108, + "endOffset": 1283 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-si-rLK/values-si-rLK.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1179, + "endColumn": 108, + "endOffset": 1283 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1288, + "endColumn": 104, + "endOffset": 1388 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-si-rLK/values-si-rLK.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1288, + "endColumn": 104, + "endOffset": 1388 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1393, + "endColumn": 97, + "endOffset": 1486 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-si-rLK/values-si-rLK.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1393, + "endColumn": 97, + "endOffset": 1486 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1491, + "endColumn": 109, + "endOffset": 1596 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-si-rLK/values-si-rLK.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1491, + "endColumn": 109, + "endOffset": 1596 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1601, + "endColumn": 98, + "endOffset": 1695 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-si-rLK/values-si-rLK.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1601, + "endColumn": 98, + "endOffset": 1695 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1700, + "endColumn": 105, + "endOffset": 1801 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-si-rLK/values-si-rLK.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1700, + "endColumn": 105, + "endOffset": 1801 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1806, + "endColumn": 120, + "endOffset": 1922 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-si-rLK/values-si-rLK.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1806, + "endColumn": 120, + "endOffset": 1922 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1927, + "endColumn": 98, + "endOffset": 2021 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-si-rLK/values-si-rLK.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1927, + "endColumn": 98, + "endOffset": 2021 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2026, + "endColumn": 100, + "endOffset": 2122 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-si-rLK/values-si-rLK.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2026, + "endColumn": 100, + "endOffset": 2122 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/multi/values-sk.json b/android/build/intermediates/blame/res/debug/multi/values-sk.json new file mode 100644 index 000000000..c420ba72c --- /dev/null +++ b/android/build/intermediates/blame/res/debug/multi/values-sk.json @@ -0,0 +1,387 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-sk/values-sk.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 106, + "endOffset": 157 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sk/values-sk.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 106, + "endOffset": 157 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 162, + "endColumn": 107, + "endOffset": 265 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sk/values-sk.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 162, + "endColumn": 107, + "endOffset": 265 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 270, + "endColumn": 122, + "endOffset": 388 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sk/values-sk.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 270, + "endColumn": 122, + "endOffset": 388 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 393, + "endColumn": 99, + "endOffset": 488 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sk/values-sk.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 393, + "endColumn": 99, + "endOffset": 488 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 493, + "endColumn": 110, + "endOffset": 599 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sk/values-sk.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 493, + "endColumn": 110, + "endOffset": 599 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 604, + "endColumn": 85, + "endOffset": 685 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sk/values-sk.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 604, + "endColumn": 85, + "endOffset": 685 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 690, + "endColumn": 107, + "endOffset": 793 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sk/values-sk.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 690, + "endColumn": 107, + "endOffset": 793 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 798, + "endColumn": 117, + "endOffset": 911 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sk/values-sk.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 798, + "endColumn": 117, + "endOffset": 911 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 916, + "endColumn": 77, + "endOffset": 989 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sk/values-sk.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 916, + "endColumn": 77, + "endOffset": 989 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 994, + "endColumn": 77, + "endOffset": 1067 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sk/values-sk.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 994, + "endColumn": 77, + "endOffset": 1067 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1072, + "endColumn": 83, + "endOffset": 1151 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sk/values-sk.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1072, + "endColumn": 83, + "endOffset": 1151 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1156, + "endColumn": 104, + "endOffset": 1256 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sk/values-sk.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1156, + "endColumn": 104, + "endOffset": 1256 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1261, + "endColumn": 108, + "endOffset": 1365 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sk/values-sk.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1261, + "endColumn": 108, + "endOffset": 1365 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1370, + "endColumn": 98, + "endOffset": 1464 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sk/values-sk.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1370, + "endColumn": 98, + "endOffset": 1464 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1469, + "endColumn": 105, + "endOffset": 1570 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sk/values-sk.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1469, + "endColumn": 105, + "endOffset": 1570 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1575, + "endColumn": 110, + "endOffset": 1681 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sk/values-sk.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1575, + "endColumn": 110, + "endOffset": 1681 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1686, + "endColumn": 108, + "endOffset": 1790 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sk/values-sk.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1686, + "endColumn": 108, + "endOffset": 1790 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1795, + "endColumn": 123, + "endOffset": 1914 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sk/values-sk.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1795, + "endColumn": 123, + "endOffset": 1914 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1919, + "endColumn": 97, + "endOffset": 2012 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sk/values-sk.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1919, + "endColumn": 97, + "endOffset": 2012 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2017, + "endColumn": 100, + "endOffset": 2113 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sk/values-sk.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2017, + "endColumn": 100, + "endOffset": 2113 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/multi/values-sl.json b/android/build/intermediates/blame/res/debug/multi/values-sl.json new file mode 100644 index 000000000..afdeee6a7 --- /dev/null +++ b/android/build/intermediates/blame/res/debug/multi/values-sl.json @@ -0,0 +1,387 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-sl/values-sl.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 106, + "endOffset": 157 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sl/values-sl.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 106, + "endOffset": 157 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 162, + "endColumn": 107, + "endOffset": 265 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sl/values-sl.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 162, + "endColumn": 107, + "endOffset": 265 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 270, + "endColumn": 122, + "endOffset": 388 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sl/values-sl.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 270, + "endColumn": 122, + "endOffset": 388 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 393, + "endColumn": 106, + "endOffset": 495 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sl/values-sl.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 393, + "endColumn": 106, + "endOffset": 495 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 500, + "endColumn": 107, + "endOffset": 603 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sl/values-sl.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 500, + "endColumn": 107, + "endOffset": 603 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 608, + "endColumn": 86, + "endOffset": 690 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sl/values-sl.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 608, + "endColumn": 86, + "endOffset": 690 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 695, + "endColumn": 102, + "endOffset": 793 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sl/values-sl.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 695, + "endColumn": 102, + "endOffset": 793 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 798, + "endColumn": 118, + "endOffset": 912 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sl/values-sl.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 798, + "endColumn": 118, + "endOffset": 912 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 917, + "endColumn": 84, + "endOffset": 997 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sl/values-sl.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 917, + "endColumn": 84, + "endOffset": 997 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1002, + "endColumn": 83, + "endOffset": 1081 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sl/values-sl.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1002, + "endColumn": 83, + "endOffset": 1081 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1086, + "endColumn": 83, + "endOffset": 1165 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sl/values-sl.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1086, + "endColumn": 83, + "endOffset": 1165 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1170, + "endColumn": 107, + "endOffset": 1273 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sl/values-sl.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1170, + "endColumn": 107, + "endOffset": 1273 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1278, + "endColumn": 108, + "endOffset": 1382 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sl/values-sl.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1278, + "endColumn": 108, + "endOffset": 1382 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1387, + "endColumn": 99, + "endOffset": 1482 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sl/values-sl.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1387, + "endColumn": 99, + "endOffset": 1482 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1487, + "endColumn": 112, + "endOffset": 1595 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sl/values-sl.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1487, + "endColumn": 112, + "endOffset": 1595 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1600, + "endColumn": 106, + "endOffset": 1702 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sl/values-sl.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1600, + "endColumn": 106, + "endOffset": 1702 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1707, + "endColumn": 103, + "endOffset": 1806 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sl/values-sl.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1707, + "endColumn": 103, + "endOffset": 1806 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1811, + "endColumn": 116, + "endOffset": 1923 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sl/values-sl.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1811, + "endColumn": 116, + "endOffset": 1923 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1928, + "endColumn": 96, + "endOffset": 2020 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sl/values-sl.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1928, + "endColumn": 96, + "endOffset": 2020 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2025, + "endColumn": 100, + "endOffset": 2121 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sl/values-sl.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2025, + "endColumn": 100, + "endOffset": 2121 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/multi/values-sq-rAL.json b/android/build/intermediates/blame/res/debug/multi/values-sq-rAL.json new file mode 100644 index 000000000..b9ada7a2f --- /dev/null +++ b/android/build/intermediates/blame/res/debug/multi/values-sq-rAL.json @@ -0,0 +1,387 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-sq-rAL/values-sq-rAL.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 113, + "endOffset": 164 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sq-rAL/values-sq-rAL.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 113, + "endOffset": 164 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 169, + "endColumn": 107, + "endOffset": 272 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sq-rAL/values-sq-rAL.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 169, + "endColumn": 107, + "endOffset": 272 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 277, + "endColumn": 122, + "endOffset": 395 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sq-rAL/values-sq-rAL.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 277, + "endColumn": 122, + "endOffset": 395 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 400, + "endColumn": 99, + "endOffset": 495 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sq-rAL/values-sq-rAL.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 400, + "endColumn": 99, + "endOffset": 495 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 500, + "endColumn": 111, + "endOffset": 607 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sq-rAL/values-sq-rAL.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 500, + "endColumn": 111, + "endOffset": 607 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 612, + "endColumn": 86, + "endOffset": 694 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sq-rAL/values-sq-rAL.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 612, + "endColumn": 86, + "endOffset": 694 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 699, + "endColumn": 109, + "endOffset": 804 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sq-rAL/values-sq-rAL.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 699, + "endColumn": 109, + "endOffset": 804 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 809, + "endColumn": 122, + "endOffset": 927 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sq-rAL/values-sq-rAL.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 809, + "endColumn": 122, + "endOffset": 927 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 932, + "endColumn": 80, + "endOffset": 1008 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sq-rAL/values-sq-rAL.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 932, + "endColumn": 80, + "endOffset": 1008 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1013, + "endColumn": 78, + "endOffset": 1087 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sq-rAL/values-sq-rAL.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1013, + "endColumn": 78, + "endOffset": 1087 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1092, + "endColumn": 82, + "endOffset": 1170 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sq-rAL/values-sq-rAL.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1092, + "endColumn": 82, + "endOffset": 1170 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1175, + "endColumn": 105, + "endOffset": 1276 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sq-rAL/values-sq-rAL.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1175, + "endColumn": 105, + "endOffset": 1276 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1281, + "endColumn": 104, + "endOffset": 1381 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sq-rAL/values-sq-rAL.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1281, + "endColumn": 104, + "endOffset": 1381 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1386, + "endColumn": 97, + "endOffset": 1479 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sq-rAL/values-sq-rAL.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1386, + "endColumn": 97, + "endOffset": 1479 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1484, + "endColumn": 105, + "endOffset": 1585 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sq-rAL/values-sq-rAL.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1484, + "endColumn": 105, + "endOffset": 1585 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1590, + "endColumn": 102, + "endOffset": 1688 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sq-rAL/values-sq-rAL.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1590, + "endColumn": 102, + "endOffset": 1688 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1693, + "endColumn": 115, + "endOffset": 1804 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sq-rAL/values-sq-rAL.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1693, + "endColumn": 115, + "endOffset": 1804 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1809, + "endColumn": 130, + "endOffset": 1935 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sq-rAL/values-sq-rAL.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1809, + "endColumn": 130, + "endOffset": 1935 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1940, + "endColumn": 98, + "endOffset": 2034 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sq-rAL/values-sq-rAL.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1940, + "endColumn": 98, + "endOffset": 2034 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2039, + "endColumn": 100, + "endOffset": 2135 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sq-rAL/values-sq-rAL.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2039, + "endColumn": 100, + "endOffset": 2135 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/multi/values-sr.json b/android/build/intermediates/blame/res/debug/multi/values-sr.json new file mode 100644 index 000000000..699791c32 --- /dev/null +++ b/android/build/intermediates/blame/res/debug/multi/values-sr.json @@ -0,0 +1,387 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-sr/values-sr.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 108, + "endOffset": 159 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sr/values-sr.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 108, + "endOffset": 159 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 164, + "endColumn": 107, + "endOffset": 267 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sr/values-sr.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 164, + "endColumn": 107, + "endOffset": 267 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 272, + "endColumn": 122, + "endOffset": 390 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sr/values-sr.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 272, + "endColumn": 122, + "endOffset": 390 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 395, + "endColumn": 102, + "endOffset": 493 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sr/values-sr.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 395, + "endColumn": 102, + "endOffset": 493 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 498, + "endColumn": 105, + "endOffset": 599 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sr/values-sr.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 498, + "endColumn": 105, + "endOffset": 599 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 604, + "endColumn": 85, + "endOffset": 685 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sr/values-sr.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 604, + "endColumn": 85, + "endOffset": 685 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 690, + "endColumn": 103, + "endOffset": 789 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sr/values-sr.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 690, + "endColumn": 103, + "endOffset": 789 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 794, + "endColumn": 117, + "endOffset": 907 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sr/values-sr.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 794, + "endColumn": 117, + "endOffset": 907 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 912, + "endColumn": 80, + "endOffset": 988 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sr/values-sr.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 912, + "endColumn": 80, + "endOffset": 988 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 993, + "endColumn": 79, + "endOffset": 1068 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sr/values-sr.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 993, + "endColumn": 79, + "endOffset": 1068 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1073, + "endColumn": 87, + "endOffset": 1156 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sr/values-sr.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1073, + "endColumn": 87, + "endOffset": 1156 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1161, + "endColumn": 104, + "endOffset": 1261 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sr/values-sr.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1161, + "endColumn": 104, + "endOffset": 1261 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1266, + "endColumn": 107, + "endOffset": 1369 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sr/values-sr.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1266, + "endColumn": 107, + "endOffset": 1369 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1374, + "endColumn": 100, + "endOffset": 1470 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sr/values-sr.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1374, + "endColumn": 100, + "endOffset": 1470 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1475, + "endColumn": 103, + "endOffset": 1574 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sr/values-sr.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1475, + "endColumn": 103, + "endOffset": 1574 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1579, + "endColumn": 107, + "endOffset": 1682 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sr/values-sr.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1579, + "endColumn": 107, + "endOffset": 1682 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1687, + "endColumn": 100, + "endOffset": 1783 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sr/values-sr.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1687, + "endColumn": 100, + "endOffset": 1783 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1788, + "endColumn": 127, + "endOffset": 1911 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sr/values-sr.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1788, + "endColumn": 127, + "endOffset": 1911 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1916, + "endColumn": 96, + "endOffset": 2008 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sr/values-sr.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1916, + "endColumn": 96, + "endOffset": 2008 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2013, + "endColumn": 100, + "endOffset": 2109 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sr/values-sr.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2013, + "endColumn": 100, + "endOffset": 2109 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/multi/values-sv.json b/android/build/intermediates/blame/res/debug/multi/values-sv.json new file mode 100644 index 000000000..b0532f97a --- /dev/null +++ b/android/build/intermediates/blame/res/debug/multi/values-sv.json @@ -0,0 +1,539 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-sv/values-sv.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 105, + "endOffset": 156 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sv/values-sv.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 105, + "endOffset": 156 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 161, + "endColumn": 107, + "endOffset": 264 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sv/values-sv.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 161, + "endColumn": 107, + "endOffset": 264 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 269, + "endColumn": 122, + "endOffset": 387 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sv/values-sv.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 269, + "endColumn": 122, + "endOffset": 387 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 392, + "endColumn": 102, + "endOffset": 490 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sv/values-sv.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 392, + "endColumn": 102, + "endOffset": 490 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 495, + "endColumn": 110, + "endOffset": 601 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sv/values-sv.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 495, + "endColumn": 110, + "endOffset": 601 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 606, + "endColumn": 84, + "endOffset": 686 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sv/values-sv.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 606, + "endColumn": 84, + "endOffset": 686 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 691, + "endColumn": 101, + "endOffset": 788 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sv/values-sv.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 691, + "endColumn": 101, + "endOffset": 788 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 793, + "endColumn": 112, + "endOffset": 901 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sv/values-sv.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 793, + "endColumn": 112, + "endOffset": 901 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 906, + "endColumn": 75, + "endOffset": 977 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sv/values-sv.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 906, + "endColumn": 75, + "endOffset": 977 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 982, + "endColumn": 75, + "endOffset": 1053 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sv/values-sv.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 982, + "endColumn": 75, + "endOffset": 1053 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1058, + "endColumn": 79, + "endOffset": 1133 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sv/values-sv.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1058, + "endColumn": 79, + "endOffset": 1133 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1138, + "endColumn": 105, + "endOffset": 1239 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sv/values-sv.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1138, + "endColumn": 105, + "endOffset": 1239 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1244, + "endColumn": 99, + "endOffset": 1339 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sv/values-sv.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1244, + "endColumn": 99, + "endOffset": 1339 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1344, + "endColumn": 95, + "endOffset": 1435 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sv/values-sv.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1344, + "endColumn": 95, + "endOffset": 1435 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1440, + "endColumn": 104, + "endOffset": 1540 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sv/values-sv.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1440, + "endColumn": 104, + "endOffset": 1540 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1545, + "endColumn": 101, + "endOffset": 1642 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sv/values-sv.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1545, + "endColumn": 101, + "endOffset": 1642 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1647, + "endColumn": 101, + "endOffset": 1744 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sv/values-sv.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1647, + "endColumn": 101, + "endOffset": 1744 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1749, + "endColumn": 116, + "endOffset": 1861 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sv/values-sv.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1749, + "endColumn": 116, + "endOffset": 1861 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1866, + "endColumn": 101, + "endOffset": 1963 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sv/values-sv.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1866, + "endColumn": 101, + "endOffset": 1963 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1968, + "endColumn": 53, + "endOffset": 2017 + }, + "from": { + "file": "/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/values-sv/values-sv.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 53, + "endOffset": 104 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2022, + "endColumn": 73, + "endOffset": 2091 + }, + "from": { + "file": "/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/values-sv/values-sv.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 109, + "endColumn": 73, + "endOffset": 178 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2096, + "endColumn": 78, + "endOffset": 2170 + }, + "from": { + "file": "/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/values-sv/values-sv.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 183, + "endColumn": 78, + "endOffset": 257 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2175, + "endColumn": 70, + "endOffset": 2241 + }, + "from": { + "file": "/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/values-sv/values-sv.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 262, + "endColumn": 70, + "endOffset": 328 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2246, + "endColumn": 59, + "endOffset": 2301 + }, + "from": { + "file": "/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/values-sv/values-sv.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 333, + "endColumn": 59, + "endOffset": 388 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2306, + "endColumn": 55, + "endOffset": 2357 + }, + "from": { + "file": "/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/values-sv/values-sv.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 393, + "endColumn": 55, + "endOffset": 444 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 2362, + "endColumn": 58, + "endOffset": 2416 + }, + "from": { + "file": "/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/values-sv/values-sv.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 449, + "endColumn": 58, + "endOffset": 503 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 2421, + "endColumn": 73, + "endOffset": 2490 + }, + "from": { + "file": "/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/values-sv/values-sv.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 508, + "endColumn": 73, + "endOffset": 577 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 2495, + "endColumn": 100, + "endOffset": 2591 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sv/values-sv.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1968, + "endColumn": 100, + "endOffset": 2064 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/multi/values-sw.json b/android/build/intermediates/blame/res/debug/multi/values-sw.json new file mode 100644 index 000000000..3fbe0170b --- /dev/null +++ b/android/build/intermediates/blame/res/debug/multi/values-sw.json @@ -0,0 +1,387 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-sw/values-sw.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 102, + "endOffset": 153 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sw/values-sw.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 102, + "endOffset": 153 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 158, + "endColumn": 107, + "endOffset": 261 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sw/values-sw.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 158, + "endColumn": 107, + "endOffset": 261 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 266, + "endColumn": 122, + "endOffset": 384 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sw/values-sw.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 266, + "endColumn": 122, + "endOffset": 384 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 389, + "endColumn": 97, + "endOffset": 482 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sw/values-sw.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 389, + "endColumn": 97, + "endOffset": 482 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 487, + "endColumn": 107, + "endOffset": 590 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sw/values-sw.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 487, + "endColumn": 107, + "endOffset": 590 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 595, + "endColumn": 89, + "endOffset": 680 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sw/values-sw.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 595, + "endColumn": 89, + "endOffset": 680 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 685, + "endColumn": 104, + "endOffset": 785 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sw/values-sw.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 685, + "endColumn": 104, + "endOffset": 785 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 790, + "endColumn": 116, + "endOffset": 902 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sw/values-sw.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 790, + "endColumn": 116, + "endOffset": 902 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 907, + "endColumn": 81, + "endOffset": 984 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sw/values-sw.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 907, + "endColumn": 81, + "endOffset": 984 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 989, + "endColumn": 82, + "endOffset": 1067 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sw/values-sw.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 989, + "endColumn": 82, + "endOffset": 1067 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1072, + "endColumn": 81, + "endOffset": 1149 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sw/values-sw.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1072, + "endColumn": 81, + "endOffset": 1149 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1154, + "endColumn": 100, + "endOffset": 1250 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sw/values-sw.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1154, + "endColumn": 100, + "endOffset": 1250 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1255, + "endColumn": 108, + "endOffset": 1359 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sw/values-sw.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1255, + "endColumn": 108, + "endOffset": 1359 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1364, + "endColumn": 98, + "endOffset": 1458 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sw/values-sw.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1364, + "endColumn": 98, + "endOffset": 1458 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1463, + "endColumn": 106, + "endOffset": 1565 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sw/values-sw.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1463, + "endColumn": 106, + "endOffset": 1565 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1570, + "endColumn": 108, + "endOffset": 1674 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sw/values-sw.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1570, + "endColumn": 108, + "endOffset": 1674 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1679, + "endColumn": 104, + "endOffset": 1779 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sw/values-sw.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1679, + "endColumn": 104, + "endOffset": 1779 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1784, + "endColumn": 118, + "endOffset": 1898 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sw/values-sw.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1784, + "endColumn": 118, + "endOffset": 1898 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1903, + "endColumn": 96, + "endOffset": 1995 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sw/values-sw.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1903, + "endColumn": 96, + "endOffset": 1995 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2000, + "endColumn": 100, + "endOffset": 2096 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sw/values-sw.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2000, + "endColumn": 100, + "endOffset": 2096 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/multi/values-sw600dp-v13.json b/android/build/intermediates/blame/res/debug/multi/values-sw600dp-v13.json new file mode 100644 index 000000000..ba17602a3 --- /dev/null +++ b/android/build/intermediates/blame/res/debug/multi/values-sw600dp-v13.json @@ -0,0 +1,351 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-sw600dp-v13/values-sw600dp-v13.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 68, + "endOffset": 119 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sw600dp-v13/values-sw600dp-v13.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 68, + "endOffset": 119 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 124, + "endColumn": 69, + "endOffset": 189 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sw600dp-v13/values-sw600dp-v13.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 124, + "endColumn": 69, + "endOffset": 189 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 194, + "endColumn": 73, + "endOffset": 263 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sw600dp-v13/values-sw600dp-v13.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 194, + "endColumn": 73, + "endOffset": 263 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 268, + "endColumn": 75, + "endOffset": 339 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sw600dp-v13/values-sw600dp-v13.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 268, + "endColumn": 75, + "endOffset": 339 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 344, + "endColumn": 58, + "endOffset": 398 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sw600dp-v13/values-sw600dp-v13.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 344, + "endColumn": 58, + "endOffset": 398 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 403, + "endColumn": 70, + "endOffset": 469 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sw600dp-v13/values-sw600dp-v13.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 403, + "endColumn": 70, + "endOffset": 469 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 474, + "endColumn": 67, + "endOffset": 537 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sw600dp-v13/values-sw600dp-v13.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 474, + "endColumn": 67, + "endOffset": 537 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 542, + "endColumn": 59, + "endOffset": 597 + }, + "from": { + "file": "/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/values-sw600dp-v13/values-sw600dp-v13.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 59, + "endOffset": 110 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 602, + "endColumn": 69, + "endOffset": 667 + }, + "from": { + "file": "/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/values-sw600dp-v13/values-sw600dp-v13.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 115, + "endColumn": 69, + "endOffset": 180 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 672, + "endColumn": 70, + "endOffset": 738 + }, + "from": { + "file": "/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/values-sw600dp-v13/values-sw600dp-v13.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 185, + "endColumn": 70, + "endOffset": 251 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 743, + "endColumn": 71, + "endOffset": 810 + }, + "from": { + "file": "/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/values-sw600dp-v13/values-sw600dp-v13.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 256, + "endColumn": 71, + "endOffset": 323 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 815, + "endColumn": 57, + "endOffset": 868 + }, + "from": { + "file": "/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/values-sw600dp-v13/values-sw600dp-v13.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 328, + "endColumn": 57, + "endOffset": 381 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 873, + "endColumn": 57, + "endOffset": 926 + }, + "from": { + "file": "/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/values-sw600dp-v13/values-sw600dp-v13.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 386, + "endColumn": 57, + "endOffset": 439 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 931, + "endColumn": 105, + "endOffset": 1032 + }, + "from": { + "file": "/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/values-sw600dp-v13/values-sw600dp-v13.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 444, + "endColumn": 105, + "endOffset": 545 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1037, + "endColumn": 63, + "endOffset": 1096 + }, + "from": { + "file": "/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/values-sw600dp-v13/values-sw600dp-v13.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 550, + "endColumn": 63, + "endOffset": 609 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1101, + "endColumn": 54, + "endOffset": 1151 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-sw600dp-v13/values-sw600dp-v13.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 542, + "endColumn": 54, + "endOffset": 592 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1156, + "endColumn": 62, + "endOffset": 1214 + }, + "from": { + "file": "/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/values-sw600dp-v13/values-sw600dp-v13.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 614, + "endColumn": 62, + "endOffset": 672 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1219, + "endLine": 22, + "endColumn": 12, + "endOffset": 1396 + }, + "from": { + "file": "/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/values-sw600dp-v13/values-sw600dp-v13.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 677, + "endLine": 14, + "endColumn": 12, + "endOffset": 854 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/multi/values-ta-rIN.json b/android/build/intermediates/blame/res/debug/multi/values-ta-rIN.json new file mode 100644 index 000000000..2ad60854e --- /dev/null +++ b/android/build/intermediates/blame/res/debug/multi/values-ta-rIN.json @@ -0,0 +1,387 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ta-rIN/values-ta-rIN.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 113, + "endOffset": 164 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ta-rIN/values-ta-rIN.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 113, + "endOffset": 164 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 169, + "endColumn": 107, + "endOffset": 272 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ta-rIN/values-ta-rIN.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 169, + "endColumn": 107, + "endOffset": 272 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 277, + "endColumn": 122, + "endOffset": 395 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ta-rIN/values-ta-rIN.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 277, + "endColumn": 122, + "endOffset": 395 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 400, + "endColumn": 104, + "endOffset": 500 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ta-rIN/values-ta-rIN.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 400, + "endColumn": 104, + "endOffset": 500 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 505, + "endColumn": 114, + "endOffset": 615 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ta-rIN/values-ta-rIN.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 505, + "endColumn": 114, + "endOffset": 615 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 620, + "endColumn": 88, + "endOffset": 704 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ta-rIN/values-ta-rIN.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 620, + "endColumn": 88, + "endOffset": 704 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 709, + "endColumn": 106, + "endOffset": 811 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ta-rIN/values-ta-rIN.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 709, + "endColumn": 106, + "endOffset": 811 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 816, + "endColumn": 125, + "endOffset": 937 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ta-rIN/values-ta-rIN.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 816, + "endColumn": 125, + "endOffset": 937 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 942, + "endColumn": 80, + "endOffset": 1018 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ta-rIN/values-ta-rIN.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 942, + "endColumn": 80, + "endOffset": 1018 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1023, + "endColumn": 79, + "endOffset": 1098 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ta-rIN/values-ta-rIN.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1023, + "endColumn": 79, + "endOffset": 1098 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1103, + "endColumn": 81, + "endOffset": 1180 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ta-rIN/values-ta-rIN.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1103, + "endColumn": 81, + "endOffset": 1180 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1185, + "endColumn": 101, + "endOffset": 1282 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ta-rIN/values-ta-rIN.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1185, + "endColumn": 101, + "endOffset": 1282 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1287, + "endColumn": 103, + "endOffset": 1386 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ta-rIN/values-ta-rIN.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1287, + "endColumn": 103, + "endOffset": 1386 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1391, + "endColumn": 96, + "endOffset": 1483 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ta-rIN/values-ta-rIN.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1391, + "endColumn": 96, + "endOffset": 1483 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1488, + "endColumn": 109, + "endOffset": 1593 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ta-rIN/values-ta-rIN.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1488, + "endColumn": 109, + "endOffset": 1593 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1598, + "endColumn": 101, + "endOffset": 1695 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ta-rIN/values-ta-rIN.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1598, + "endColumn": 101, + "endOffset": 1695 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1700, + "endColumn": 106, + "endOffset": 1802 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ta-rIN/values-ta-rIN.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1700, + "endColumn": 106, + "endOffset": 1802 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1807, + "endColumn": 118, + "endOffset": 1921 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ta-rIN/values-ta-rIN.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1807, + "endColumn": 118, + "endOffset": 1921 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1926, + "endColumn": 99, + "endOffset": 2021 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ta-rIN/values-ta-rIN.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1926, + "endColumn": 99, + "endOffset": 2021 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2026, + "endColumn": 100, + "endOffset": 2122 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ta-rIN/values-ta-rIN.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2026, + "endColumn": 100, + "endOffset": 2122 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/multi/values-te-rIN.json b/android/build/intermediates/blame/res/debug/multi/values-te-rIN.json new file mode 100644 index 000000000..f8541817c --- /dev/null +++ b/android/build/intermediates/blame/res/debug/multi/values-te-rIN.json @@ -0,0 +1,387 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-te-rIN/values-te-rIN.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 113, + "endOffset": 164 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-te-rIN/values-te-rIN.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 113, + "endOffset": 164 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 169, + "endColumn": 107, + "endOffset": 272 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-te-rIN/values-te-rIN.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 169, + "endColumn": 107, + "endOffset": 272 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 277, + "endColumn": 122, + "endOffset": 395 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-te-rIN/values-te-rIN.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 277, + "endColumn": 122, + "endOffset": 395 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 400, + "endColumn": 108, + "endOffset": 504 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-te-rIN/values-te-rIN.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 400, + "endColumn": 108, + "endOffset": 504 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 509, + "endColumn": 110, + "endOffset": 615 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-te-rIN/values-te-rIN.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 509, + "endColumn": 110, + "endOffset": 615 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 620, + "endColumn": 89, + "endOffset": 705 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-te-rIN/values-te-rIN.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 620, + "endColumn": 89, + "endOffset": 705 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 710, + "endColumn": 104, + "endOffset": 810 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-te-rIN/values-te-rIN.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 710, + "endColumn": 104, + "endOffset": 810 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 815, + "endColumn": 124, + "endOffset": 935 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-te-rIN/values-te-rIN.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 815, + "endColumn": 124, + "endOffset": 935 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 940, + "endColumn": 81, + "endOffset": 1017 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-te-rIN/values-te-rIN.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 940, + "endColumn": 81, + "endOffset": 1017 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1022, + "endColumn": 81, + "endOffset": 1099 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-te-rIN/values-te-rIN.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1022, + "endColumn": 81, + "endOffset": 1099 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1104, + "endColumn": 84, + "endOffset": 1184 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-te-rIN/values-te-rIN.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1104, + "endColumn": 84, + "endOffset": 1184 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1189, + "endColumn": 112, + "endOffset": 1297 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-te-rIN/values-te-rIN.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1189, + "endColumn": 112, + "endOffset": 1297 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1302, + "endColumn": 107, + "endOffset": 1405 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-te-rIN/values-te-rIN.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1302, + "endColumn": 107, + "endOffset": 1405 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1410, + "endColumn": 99, + "endOffset": 1505 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-te-rIN/values-te-rIN.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1410, + "endColumn": 99, + "endOffset": 1505 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1510, + "endColumn": 110, + "endOffset": 1616 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-te-rIN/values-te-rIN.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1510, + "endColumn": 110, + "endOffset": 1616 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1621, + "endColumn": 101, + "endOffset": 1718 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-te-rIN/values-te-rIN.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1621, + "endColumn": 101, + "endOffset": 1718 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1723, + "endColumn": 116, + "endOffset": 1835 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-te-rIN/values-te-rIN.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1723, + "endColumn": 116, + "endOffset": 1835 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1840, + "endColumn": 126, + "endOffset": 1962 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-te-rIN/values-te-rIN.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1840, + "endColumn": 126, + "endOffset": 1962 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1967, + "endColumn": 100, + "endOffset": 2063 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-te-rIN/values-te-rIN.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1967, + "endColumn": 100, + "endOffset": 2063 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2068, + "endColumn": 100, + "endOffset": 2164 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-te-rIN/values-te-rIN.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2068, + "endColumn": 100, + "endOffset": 2164 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/multi/values-th.json b/android/build/intermediates/blame/res/debug/multi/values-th.json new file mode 100644 index 000000000..169426a91 --- /dev/null +++ b/android/build/intermediates/blame/res/debug/multi/values-th.json @@ -0,0 +1,539 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-th/values-th.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 104, + "endOffset": 155 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-th/values-th.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 104, + "endOffset": 155 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 160, + "endColumn": 107, + "endOffset": 263 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-th/values-th.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 160, + "endColumn": 107, + "endOffset": 263 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 268, + "endColumn": 122, + "endOffset": 386 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-th/values-th.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 268, + "endColumn": 122, + "endOffset": 386 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 391, + "endColumn": 97, + "endOffset": 484 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-th/values-th.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 391, + "endColumn": 97, + "endOffset": 484 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 489, + "endColumn": 107, + "endOffset": 592 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-th/values-th.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 489, + "endColumn": 107, + "endOffset": 592 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 597, + "endColumn": 88, + "endOffset": 681 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-th/values-th.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 597, + "endColumn": 88, + "endOffset": 681 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 686, + "endColumn": 101, + "endOffset": 783 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-th/values-th.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 686, + "endColumn": 101, + "endOffset": 783 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 788, + "endColumn": 109, + "endOffset": 893 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-th/values-th.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 788, + "endColumn": 109, + "endOffset": 893 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 898, + "endColumn": 76, + "endOffset": 970 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-th/values-th.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 898, + "endColumn": 76, + "endOffset": 970 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 975, + "endColumn": 77, + "endOffset": 1048 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-th/values-th.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 975, + "endColumn": 77, + "endOffset": 1048 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1053, + "endColumn": 80, + "endOffset": 1129 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-th/values-th.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1053, + "endColumn": 80, + "endOffset": 1129 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1134, + "endColumn": 107, + "endOffset": 1237 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-th/values-th.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1134, + "endColumn": 107, + "endOffset": 1237 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1242, + "endColumn": 103, + "endOffset": 1341 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-th/values-th.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1242, + "endColumn": 103, + "endOffset": 1341 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1346, + "endColumn": 97, + "endOffset": 1439 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-th/values-th.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1346, + "endColumn": 97, + "endOffset": 1439 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1444, + "endColumn": 107, + "endOffset": 1547 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-th/values-th.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1444, + "endColumn": 107, + "endOffset": 1547 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1552, + "endColumn": 104, + "endOffset": 1652 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-th/values-th.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1552, + "endColumn": 104, + "endOffset": 1652 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1657, + "endColumn": 100, + "endOffset": 1753 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-th/values-th.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1657, + "endColumn": 100, + "endOffset": 1753 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1758, + "endColumn": 115, + "endOffset": 1869 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-th/values-th.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1758, + "endColumn": 115, + "endOffset": 1869 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1874, + "endColumn": 94, + "endOffset": 1964 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-th/values-th.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1874, + "endColumn": 94, + "endOffset": 1964 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1969, + "endColumn": 53, + "endOffset": 2018 + }, + "from": { + "file": "/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/values-th/values-th.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 53, + "endOffset": 104 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2023, + "endColumn": 71, + "endOffset": 2090 + }, + "from": { + "file": "/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/values-th/values-th.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 109, + "endColumn": 71, + "endOffset": 176 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2095, + "endColumn": 78, + "endOffset": 2169 + }, + "from": { + "file": "/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/values-th/values-th.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 181, + "endColumn": 78, + "endOffset": 255 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2174, + "endColumn": 70, + "endOffset": 2240 + }, + "from": { + "file": "/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/values-th/values-th.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 260, + "endColumn": 70, + "endOffset": 326 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2245, + "endColumn": 59, + "endOffset": 2300 + }, + "from": { + "file": "/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/values-th/values-th.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 331, + "endColumn": 59, + "endOffset": 386 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2305, + "endColumn": 55, + "endOffset": 2356 + }, + "from": { + "file": "/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/values-th/values-th.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 391, + "endColumn": 55, + "endOffset": 442 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 2361, + "endColumn": 58, + "endOffset": 2415 + }, + "from": { + "file": "/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/values-th/values-th.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 447, + "endColumn": 58, + "endOffset": 501 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 2420, + "endColumn": 73, + "endOffset": 2489 + }, + "from": { + "file": "/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/values-th/values-th.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 506, + "endColumn": 73, + "endOffset": 575 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 2494, + "endColumn": 100, + "endOffset": 2590 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-th/values-th.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1969, + "endColumn": 100, + "endOffset": 2065 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/multi/values-tl.json b/android/build/intermediates/blame/res/debug/multi/values-tl.json new file mode 100644 index 000000000..f9804aeb1 --- /dev/null +++ b/android/build/intermediates/blame/res/debug/multi/values-tl.json @@ -0,0 +1,387 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-tl/values-tl.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 118, + "endOffset": 169 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-tl/values-tl.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 118, + "endOffset": 169 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 174, + "endColumn": 107, + "endOffset": 277 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-tl/values-tl.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 174, + "endColumn": 107, + "endOffset": 277 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 282, + "endColumn": 122, + "endOffset": 400 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-tl/values-tl.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 282, + "endColumn": 122, + "endOffset": 400 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 405, + "endColumn": 107, + "endOffset": 508 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-tl/values-tl.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 405, + "endColumn": 107, + "endOffset": 508 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 513, + "endColumn": 116, + "endOffset": 625 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-tl/values-tl.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 513, + "endColumn": 116, + "endOffset": 625 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 630, + "endColumn": 87, + "endOffset": 713 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-tl/values-tl.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 630, + "endColumn": 87, + "endOffset": 713 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 718, + "endColumn": 105, + "endOffset": 819 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-tl/values-tl.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 718, + "endColumn": 105, + "endOffset": 819 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 824, + "endColumn": 120, + "endOffset": 940 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-tl/values-tl.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 824, + "endColumn": 120, + "endOffset": 940 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 945, + "endColumn": 78, + "endOffset": 1019 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-tl/values-tl.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 945, + "endColumn": 78, + "endOffset": 1019 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1024, + "endColumn": 77, + "endOffset": 1097 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-tl/values-tl.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1024, + "endColumn": 77, + "endOffset": 1097 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1102, + "endColumn": 83, + "endOffset": 1181 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-tl/values-tl.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1102, + "endColumn": 83, + "endOffset": 1181 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1186, + "endColumn": 108, + "endOffset": 1290 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-tl/values-tl.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1186, + "endColumn": 108, + "endOffset": 1290 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1295, + "endColumn": 110, + "endOffset": 1401 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-tl/values-tl.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1295, + "endColumn": 110, + "endOffset": 1401 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1406, + "endColumn": 100, + "endOffset": 1502 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-tl/values-tl.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1406, + "endColumn": 100, + "endOffset": 1502 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1507, + "endColumn": 109, + "endOffset": 1612 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-tl/values-tl.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1507, + "endColumn": 109, + "endOffset": 1612 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1617, + "endColumn": 116, + "endOffset": 1729 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-tl/values-tl.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1617, + "endColumn": 116, + "endOffset": 1729 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1734, + "endColumn": 107, + "endOffset": 1837 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-tl/values-tl.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1734, + "endColumn": 107, + "endOffset": 1837 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1842, + "endColumn": 122, + "endOffset": 1960 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-tl/values-tl.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1842, + "endColumn": 122, + "endOffset": 1960 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1965, + "endColumn": 101, + "endOffset": 2062 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-tl/values-tl.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1965, + "endColumn": 101, + "endOffset": 2062 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2067, + "endColumn": 100, + "endOffset": 2163 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-tl/values-tl.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2067, + "endColumn": 100, + "endOffset": 2163 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/multi/values-tr.json b/android/build/intermediates/blame/res/debug/multi/values-tr.json new file mode 100644 index 000000000..0bc2b4659 --- /dev/null +++ b/android/build/intermediates/blame/res/debug/multi/values-tr.json @@ -0,0 +1,539 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-tr/values-tr.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 104, + "endOffset": 155 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-tr/values-tr.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 104, + "endOffset": 155 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 160, + "endColumn": 107, + "endOffset": 263 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-tr/values-tr.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 160, + "endColumn": 107, + "endOffset": 263 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 268, + "endColumn": 122, + "endOffset": 386 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-tr/values-tr.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 268, + "endColumn": 122, + "endOffset": 386 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 391, + "endColumn": 98, + "endOffset": 485 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-tr/values-tr.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 391, + "endColumn": 98, + "endOffset": 485 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 490, + "endColumn": 111, + "endOffset": 597 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-tr/values-tr.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 490, + "endColumn": 111, + "endOffset": 597 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 602, + "endColumn": 89, + "endOffset": 687 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-tr/values-tr.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 602, + "endColumn": 89, + "endOffset": 687 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 692, + "endColumn": 105, + "endOffset": 793 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-tr/values-tr.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 692, + "endColumn": 105, + "endOffset": 793 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 798, + "endColumn": 119, + "endOffset": 913 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-tr/values-tr.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 798, + "endColumn": 119, + "endOffset": 913 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 918, + "endColumn": 78, + "endOffset": 992 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-tr/values-tr.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 918, + "endColumn": 78, + "endOffset": 992 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 997, + "endColumn": 75, + "endOffset": 1068 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-tr/values-tr.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 997, + "endColumn": 75, + "endOffset": 1068 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1073, + "endColumn": 78, + "endOffset": 1147 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-tr/values-tr.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1073, + "endColumn": 78, + "endOffset": 1147 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1152, + "endColumn": 106, + "endOffset": 1254 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-tr/values-tr.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1152, + "endColumn": 106, + "endOffset": 1254 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1259, + "endColumn": 104, + "endOffset": 1359 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-tr/values-tr.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1259, + "endColumn": 104, + "endOffset": 1359 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1364, + "endColumn": 95, + "endOffset": 1455 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-tr/values-tr.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1364, + "endColumn": 95, + "endOffset": 1455 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1460, + "endColumn": 106, + "endOffset": 1562 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-tr/values-tr.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1460, + "endColumn": 106, + "endOffset": 1562 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1567, + "endColumn": 101, + "endOffset": 1664 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-tr/values-tr.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1567, + "endColumn": 101, + "endOffset": 1664 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1669, + "endColumn": 107, + "endOffset": 1772 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-tr/values-tr.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1669, + "endColumn": 107, + "endOffset": 1772 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1777, + "endColumn": 118, + "endOffset": 1891 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-tr/values-tr.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1777, + "endColumn": 118, + "endOffset": 1891 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1896, + "endColumn": 97, + "endOffset": 1989 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-tr/values-tr.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1896, + "endColumn": 97, + "endOffset": 1989 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1994, + "endColumn": 53, + "endOffset": 2043 + }, + "from": { + "file": "/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/values-tr/values-tr.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 53, + "endOffset": 104 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2048, + "endColumn": 68, + "endOffset": 2112 + }, + "from": { + "file": "/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/values-tr/values-tr.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 109, + "endColumn": 68, + "endOffset": 173 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2117, + "endColumn": 78, + "endOffset": 2191 + }, + "from": { + "file": "/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/values-tr/values-tr.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 178, + "endColumn": 78, + "endOffset": 252 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2196, + "endColumn": 70, + "endOffset": 2262 + }, + "from": { + "file": "/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/values-tr/values-tr.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 257, + "endColumn": 70, + "endOffset": 323 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2267, + "endColumn": 68, + "endOffset": 2331 + }, + "from": { + "file": "/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/values-tr/values-tr.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 328, + "endColumn": 68, + "endOffset": 392 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2336, + "endColumn": 55, + "endOffset": 2387 + }, + "from": { + "file": "/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/values-tr/values-tr.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 397, + "endColumn": 55, + "endOffset": 448 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 2392, + "endColumn": 58, + "endOffset": 2446 + }, + "from": { + "file": "/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/values-tr/values-tr.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 453, + "endColumn": 58, + "endOffset": 507 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 2451, + "endColumn": 73, + "endOffset": 2520 + }, + "from": { + "file": "/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/values-tr/values-tr.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 512, + "endColumn": 73, + "endOffset": 581 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 2525, + "endColumn": 100, + "endOffset": 2621 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-tr/values-tr.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1994, + "endColumn": 100, + "endOffset": 2090 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/multi/values-uk.json b/android/build/intermediates/blame/res/debug/multi/values-uk.json new file mode 100644 index 000000000..ec9d79abb --- /dev/null +++ b/android/build/intermediates/blame/res/debug/multi/values-uk.json @@ -0,0 +1,387 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-uk/values-uk.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 109, + "endOffset": 160 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-uk/values-uk.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 109, + "endOffset": 160 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 165, + "endColumn": 107, + "endOffset": 268 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-uk/values-uk.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 165, + "endColumn": 107, + "endOffset": 268 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 273, + "endColumn": 122, + "endOffset": 391 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-uk/values-uk.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 273, + "endColumn": 122, + "endOffset": 391 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 396, + "endColumn": 101, + "endOffset": 493 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-uk/values-uk.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 396, + "endColumn": 101, + "endOffset": 493 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 498, + "endColumn": 105, + "endOffset": 599 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-uk/values-uk.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 498, + "endColumn": 105, + "endOffset": 599 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 604, + "endColumn": 85, + "endOffset": 685 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-uk/values-uk.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 604, + "endColumn": 85, + "endOffset": 685 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 690, + "endColumn": 107, + "endOffset": 793 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-uk/values-uk.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 690, + "endColumn": 107, + "endOffset": 793 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 798, + "endColumn": 117, + "endOffset": 911 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-uk/values-uk.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 798, + "endColumn": 117, + "endOffset": 911 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 916, + "endColumn": 78, + "endOffset": 990 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-uk/values-uk.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 916, + "endColumn": 78, + "endOffset": 990 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 995, + "endColumn": 79, + "endOffset": 1070 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-uk/values-uk.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 995, + "endColumn": 79, + "endOffset": 1070 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1075, + "endColumn": 80, + "endOffset": 1151 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-uk/values-uk.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1075, + "endColumn": 80, + "endOffset": 1151 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1156, + "endColumn": 105, + "endOffset": 1257 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-uk/values-uk.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1156, + "endColumn": 105, + "endOffset": 1257 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1262, + "endColumn": 106, + "endOffset": 1364 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-uk/values-uk.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1262, + "endColumn": 106, + "endOffset": 1364 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1369, + "endColumn": 97, + "endOffset": 1462 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-uk/values-uk.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1369, + "endColumn": 97, + "endOffset": 1462 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1467, + "endColumn": 107, + "endOffset": 1570 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-uk/values-uk.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1467, + "endColumn": 107, + "endOffset": 1570 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1575, + "endColumn": 105, + "endOffset": 1676 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-uk/values-uk.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1575, + "endColumn": 105, + "endOffset": 1676 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1681, + "endColumn": 108, + "endOffset": 1785 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-uk/values-uk.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1681, + "endColumn": 108, + "endOffset": 1785 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1790, + "endColumn": 123, + "endOffset": 1909 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-uk/values-uk.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1790, + "endColumn": 123, + "endOffset": 1909 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1914, + "endColumn": 99, + "endOffset": 2009 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-uk/values-uk.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1914, + "endColumn": 99, + "endOffset": 2009 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2014, + "endColumn": 100, + "endOffset": 2110 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-uk/values-uk.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2014, + "endColumn": 100, + "endOffset": 2110 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/multi/values-ur-rPK.json b/android/build/intermediates/blame/res/debug/multi/values-ur-rPK.json new file mode 100644 index 000000000..8df57e08f --- /dev/null +++ b/android/build/intermediates/blame/res/debug/multi/values-ur-rPK.json @@ -0,0 +1,387 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ur-rPK/values-ur-rPK.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 109, + "endOffset": 160 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ur-rPK/values-ur-rPK.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 109, + "endOffset": 160 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 165, + "endColumn": 107, + "endOffset": 268 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ur-rPK/values-ur-rPK.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 165, + "endColumn": 107, + "endOffset": 268 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 273, + "endColumn": 122, + "endOffset": 391 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ur-rPK/values-ur-rPK.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 273, + "endColumn": 122, + "endOffset": 391 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 396, + "endColumn": 105, + "endOffset": 497 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ur-rPK/values-ur-rPK.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 396, + "endColumn": 105, + "endOffset": 497 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 502, + "endColumn": 108, + "endOffset": 606 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ur-rPK/values-ur-rPK.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 502, + "endColumn": 108, + "endOffset": 606 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 611, + "endColumn": 85, + "endOffset": 692 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ur-rPK/values-ur-rPK.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 611, + "endColumn": 85, + "endOffset": 692 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 697, + "endColumn": 103, + "endOffset": 796 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ur-rPK/values-ur-rPK.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 697, + "endColumn": 103, + "endOffset": 796 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 801, + "endColumn": 119, + "endOffset": 916 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ur-rPK/values-ur-rPK.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 801, + "endColumn": 119, + "endOffset": 916 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 921, + "endColumn": 75, + "endOffset": 992 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ur-rPK/values-ur-rPK.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 921, + "endColumn": 75, + "endOffset": 992 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 997, + "endColumn": 75, + "endOffset": 1068 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ur-rPK/values-ur-rPK.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 997, + "endColumn": 75, + "endOffset": 1068 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1073, + "endColumn": 84, + "endOffset": 1153 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ur-rPK/values-ur-rPK.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1073, + "endColumn": 84, + "endOffset": 1153 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1158, + "endColumn": 107, + "endOffset": 1261 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ur-rPK/values-ur-rPK.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1158, + "endColumn": 107, + "endOffset": 1261 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1266, + "endColumn": 108, + "endOffset": 1370 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ur-rPK/values-ur-rPK.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1266, + "endColumn": 108, + "endOffset": 1370 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1375, + "endColumn": 101, + "endOffset": 1472 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ur-rPK/values-ur-rPK.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1375, + "endColumn": 101, + "endOffset": 1472 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1477, + "endColumn": 110, + "endOffset": 1583 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ur-rPK/values-ur-rPK.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1477, + "endColumn": 110, + "endOffset": 1583 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1588, + "endColumn": 99, + "endOffset": 1683 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ur-rPK/values-ur-rPK.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1588, + "endColumn": 99, + "endOffset": 1683 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1688, + "endColumn": 107, + "endOffset": 1791 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ur-rPK/values-ur-rPK.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1688, + "endColumn": 107, + "endOffset": 1791 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1796, + "endColumn": 128, + "endOffset": 1920 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ur-rPK/values-ur-rPK.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1796, + "endColumn": 128, + "endOffset": 1920 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1925, + "endColumn": 97, + "endOffset": 2018 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ur-rPK/values-ur-rPK.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1925, + "endColumn": 97, + "endOffset": 2018 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2023, + "endColumn": 102, + "endOffset": 2121 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-ur-rPK/values-ur-rPK.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2023, + "endColumn": 102, + "endOffset": 2121 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/multi/values-uz-rUZ.json b/android/build/intermediates/blame/res/debug/multi/values-uz-rUZ.json new file mode 100644 index 000000000..c566a38f7 --- /dev/null +++ b/android/build/intermediates/blame/res/debug/multi/values-uz-rUZ.json @@ -0,0 +1,368 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-uz-rUZ/values-uz-rUZ.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 104, + "endOffset": 155 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-uz-rUZ/values-uz-rUZ.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 104, + "endOffset": 155 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 160, + "endColumn": 107, + "endOffset": 263 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-uz-rUZ/values-uz-rUZ.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 160, + "endColumn": 107, + "endOffset": 263 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 268, + "endColumn": 122, + "endOffset": 386 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-uz-rUZ/values-uz-rUZ.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 268, + "endColumn": 122, + "endOffset": 386 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 391, + "endColumn": 103, + "endOffset": 490 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-uz-rUZ/values-uz-rUZ.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 391, + "endColumn": 103, + "endOffset": 490 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 495, + "endColumn": 116, + "endOffset": 607 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-uz-rUZ/values-uz-rUZ.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 495, + "endColumn": 116, + "endOffset": 607 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 612, + "endColumn": 85, + "endOffset": 693 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-uz-rUZ/values-uz-rUZ.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 612, + "endColumn": 85, + "endOffset": 693 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 698, + "endColumn": 110, + "endOffset": 804 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-uz-rUZ/values-uz-rUZ.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 698, + "endColumn": 110, + "endOffset": 804 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 809, + "endColumn": 115, + "endOffset": 920 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-uz-rUZ/values-uz-rUZ.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 809, + "endColumn": 115, + "endOffset": 920 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 925, + "endColumn": 79, + "endOffset": 1000 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-uz-rUZ/values-uz-rUZ.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 925, + "endColumn": 79, + "endOffset": 1000 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1005, + "endColumn": 78, + "endOffset": 1079 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-uz-rUZ/values-uz-rUZ.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1005, + "endColumn": 78, + "endOffset": 1079 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1084, + "endColumn": 83, + "endOffset": 1163 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-uz-rUZ/values-uz-rUZ.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1084, + "endColumn": 83, + "endOffset": 1163 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1168, + "endColumn": 108, + "endOffset": 1272 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-uz-rUZ/values-uz-rUZ.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1168, + "endColumn": 108, + "endOffset": 1272 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1277, + "endColumn": 106, + "endOffset": 1379 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-uz-rUZ/values-uz-rUZ.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1277, + "endColumn": 106, + "endOffset": 1379 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1384, + "endColumn": 100, + "endOffset": 1480 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-uz-rUZ/values-uz-rUZ.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1384, + "endColumn": 100, + "endOffset": 1480 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1485, + "endColumn": 107, + "endOffset": 1588 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-uz-rUZ/values-uz-rUZ.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1485, + "endColumn": 107, + "endOffset": 1588 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1593, + "endColumn": 104, + "endOffset": 1693 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-uz-rUZ/values-uz-rUZ.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1593, + "endColumn": 104, + "endOffset": 1693 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1698, + "endColumn": 104, + "endOffset": 1798 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-uz-rUZ/values-uz-rUZ.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1698, + "endColumn": 104, + "endOffset": 1798 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1803, + "endColumn": 98, + "endOffset": 1897 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-uz-rUZ/values-uz-rUZ.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1803, + "endColumn": 98, + "endOffset": 1897 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1902, + "endColumn": 100, + "endOffset": 1998 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-uz-rUZ/values-uz-rUZ.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1902, + "endColumn": 100, + "endOffset": 1998 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/multi/values-v11.json b/android/build/intermediates/blame/res/debug/multi/values-v11.json new file mode 100644 index 000000000..921eaf729 --- /dev/null +++ b/android/build/intermediates/blame/res/debug/multi/values-v11.json @@ -0,0 +1,354 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v11/values-v11.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endLine": 7, + "endColumn": 12, + "endOffset": 469 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v11/values-v11.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endLine": 7, + "endColumn": 12, + "endOffset": 469 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 474, + "endLine": 13, + "endColumn": 12, + "endOffset": 894 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v11/values-v11.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 474, + "endLine": 13, + "endColumn": 12, + "endOffset": 894 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 899, + "endLine": 19, + "endColumn": 12, + "endOffset": 1322 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v11/values-v11.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 899, + "endLine": 19, + "endColumn": 12, + "endOffset": 1322 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1327, + "endLine": 25, + "endColumn": 12, + "endOffset": 1748 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v11/values-v11.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1327, + "endLine": 25, + "endColumn": 12, + "endOffset": 1748 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 1753, + "endLine": 31, + "endColumn": 12, + "endOffset": 2175 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v11/values-v11.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 1753, + "endLine": 31, + "endColumn": 12, + "endOffset": 2175 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 2180, + "endLine": 37, + "endColumn": 12, + "endOffset": 2600 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v11/values-v11.xml", + "position": { + "startLine": 32, + "startColumn": 4, + "startOffset": 2180, + "endLine": 37, + "endColumn": 12, + "endOffset": 2600 + } + } + }, + { + "to": { + "startLine": 38, + "startColumn": 4, + "startOffset": 2605, + "endColumn": 88, + "endOffset": 2689 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v11/values-v11.xml", + "position": { + "startLine": 38, + "startColumn": 4, + "startOffset": 2605, + "endColumn": 88, + "endOffset": 2689 + } + } + }, + { + "to": { + "startLine": 39, + "startColumn": 4, + "startOffset": 2694, + "endColumn": 100, + "endOffset": 2790 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v11/values-v11.xml", + "position": { + "startLine": 39, + "startColumn": 4, + "startOffset": 2694, + "endColumn": 100, + "endOffset": 2790 + } + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 2795, + "endLine": 44, + "endColumn": 12, + "endOffset": 3198 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v11/values-v11.xml", + "position": { + "startLine": 40, + "startColumn": 4, + "startOffset": 2795, + "endLine": 44, + "endColumn": 12, + "endOffset": 3198 + } + } + }, + { + "to": { + "startLine": 45, + "startColumn": 4, + "startOffset": 3203, + "endLine": 49, + "endColumn": 12, + "endOffset": 3618 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v11/values-v11.xml", + "position": { + "startLine": 45, + "startColumn": 4, + "startOffset": 3203, + "endLine": 49, + "endColumn": 12, + "endOffset": 3618 + } + } + }, + { + "to": { + "startLine": 50, + "startColumn": 4, + "startOffset": 3623, + "endLine": 51, + "endColumn": 12, + "endOffset": 3725 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v11/values-v11.xml", + "position": { + "startLine": 50, + "startColumn": 4, + "startOffset": 3623, + "endLine": 51, + "endColumn": 12, + "endOffset": 3725 + } + } + }, + { + "to": { + "startLine": 52, + "startColumn": 4, + "startOffset": 3730, + "endLine": 53, + "endColumn": 12, + "endOffset": 3854 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v11/values-v11.xml", + "position": { + "startLine": 52, + "startColumn": 4, + "startOffset": 3730, + "endLine": 53, + "endColumn": 12, + "endOffset": 3854 + } + } + }, + { + "to": { + "startLine": 54, + "startColumn": 4, + "startOffset": 3859, + "endColumn": 70, + "endOffset": 3925 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v11/values-v11.xml", + "position": { + "startLine": 54, + "startColumn": 4, + "startOffset": 3859, + "endColumn": 70, + "endOffset": 3925 + } + } + }, + { + "to": { + "startLine": 55, + "startColumn": 4, + "startOffset": 3930, + "endColumn": 82, + "endOffset": 4008 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v11/values-v11.xml", + "position": { + "startLine": 55, + "startColumn": 4, + "startOffset": 3930, + "endColumn": 82, + "endOffset": 4008 + } + } + }, + { + "to": { + "startLine": 56, + "startColumn": 4, + "startOffset": 4013, + "endLine": 106, + "endColumn": 12, + "endOffset": 7716 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v11/values-v11.xml", + "position": { + "startLine": 56, + "startColumn": 4, + "startOffset": 4013, + "endLine": 106, + "endColumn": 12, + "endOffset": 7716 + } + } + }, + { + "to": { + "startLine": 107, + "startColumn": 4, + "startOffset": 7721, + "endLine": 158, + "endColumn": 12, + "endOffset": 11564 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v11/values-v11.xml", + "position": { + "startLine": 107, + "startColumn": 4, + "startOffset": 7721, + "endLine": 158, + "endColumn": 12, + "endOffset": 11564 + } + } + }, + { + "to": { + "startLine": 159, + "startColumn": 4, + "startOffset": 11569, + "endColumn": 90, + "endOffset": 11655 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v11/values-v11.xml", + "position": { + "startLine": 159, + "startColumn": 4, + "startOffset": 11569, + "endColumn": 90, + "endOffset": 11655 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/multi/values-v12.json b/android/build/intermediates/blame/res/debug/multi/values-v12.json new file mode 100644 index 000000000..d43d0e364 --- /dev/null +++ b/android/build/intermediates/blame/res/debug/multi/values-v12.json @@ -0,0 +1,87 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v12/values-v12.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endLine": 4, + "endColumn": 12, + "endOffset": 274 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v12/values-v12.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endLine": 4, + "endColumn": 12, + "endOffset": 274 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 279, + "endLine": 7, + "endColumn": 12, + "endOffset": 474 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v12/values-v12.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 279, + "endLine": 7, + "endColumn": 12, + "endOffset": 474 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 479, + "endColumn": 118, + "endOffset": 593 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v12/values-v12.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 479, + "endColumn": 118, + "endOffset": 593 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 598, + "endColumn": 94, + "endOffset": 688 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v12/values-v12.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 598, + "endColumn": 94, + "endOffset": 688 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/multi/values-v13.json b/android/build/intermediates/blame/res/debug/multi/values-v13.json new file mode 100644 index 000000000..934e2b11d --- /dev/null +++ b/android/build/intermediates/blame/res/debug/multi/values-v13.json @@ -0,0 +1,26 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v13/values-v13.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 58, + "endOffset": 109 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v13/values-v13.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 58, + "endOffset": 109 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/multi/values-v14.json b/android/build/intermediates/blame/res/debug/multi/values-v14.json new file mode 100644 index 000000000..17406d803 --- /dev/null +++ b/android/build/intermediates/blame/res/debug/multi/values-v14.json @@ -0,0 +1,205 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v14/values-v14.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endLine": 6, + "endColumn": 12, + "endOffset": 326 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v14/values-v14.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endLine": 6, + "endColumn": 12, + "endOffset": 326 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 331, + "endColumn": 70, + "endOffset": 397 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v14/values-v14.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 331, + "endColumn": 70, + "endOffset": 397 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 402, + "endColumn": 82, + "endOffset": 480 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v14/values-v14.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 402, + "endColumn": 82, + "endOffset": 480 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 485, + "endLine": 14, + "endColumn": 12, + "endOffset": 890 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v14/values-v14.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 485, + "endLine": 14, + "endColumn": 12, + "endOffset": 890 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 895, + "endLine": 20, + "endColumn": 12, + "endOffset": 1312 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v14/values-v14.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 895, + "endLine": 20, + "endColumn": 12, + "endOffset": 1312 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1317, + "endColumn": 119, + "endOffset": 1432 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v14/values-v14.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1317, + "endColumn": 119, + "endOffset": 1432 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 1437, + "endColumn": 62, + "endOffset": 1495 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v14/values-v14.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 1437, + "endColumn": 62, + "endOffset": 1495 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 1500, + "endLine": 25, + "endColumn": 12, + "endOffset": 1649 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v14/values-v14.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 1500, + "endLine": 25, + "endColumn": 12, + "endOffset": 1649 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 1654, + "endColumn": 62, + "endOffset": 1712 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v14/values-v14.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 1654, + "endColumn": 62, + "endOffset": 1712 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 1717, + "endColumn": 131, + "endOffset": 1844 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v14/values-v14.xml", + "position": { + "startLine": 27, + "startColumn": 4, + "startOffset": 1717, + "endColumn": 131, + "endOffset": 1844 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/multi/values-v17.json b/android/build/intermediates/blame/res/debug/multi/values-v17.json new file mode 100644 index 000000000..35357bba1 --- /dev/null +++ b/android/build/intermediates/blame/res/debug/multi/values-v17.json @@ -0,0 +1,301 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v17/values-v17.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endLine": 4, + "endColumn": 12, + "endOffset": 223 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v17/values-v17.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endLine": 4, + "endColumn": 12, + "endOffset": 223 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 228, + "endLine": 8, + "endColumn": 12, + "endOffset": 451 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v17/values-v17.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 228, + "endLine": 8, + "endColumn": 12, + "endOffset": 451 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 456, + "endLine": 11, + "endColumn": 12, + "endOffset": 609 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v17/values-v17.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 456, + "endLine": 11, + "endColumn": 12, + "endOffset": 609 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 614, + "endLine": 14, + "endColumn": 12, + "endOffset": 759 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v17/values-v17.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 614, + "endLine": 14, + "endColumn": 12, + "endOffset": 759 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 764, + "endLine": 17, + "endColumn": 12, + "endOffset": 931 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v17/values-v17.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 764, + "endLine": 17, + "endColumn": 12, + "endOffset": 931 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 936, + "endLine": 21, + "endColumn": 12, + "endOffset": 1159 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v17/values-v17.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 936, + "endLine": 21, + "endColumn": 12, + "endOffset": 1159 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 1164, + "endLine": 25, + "endColumn": 12, + "endOffset": 1401 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v17/values-v17.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 1164, + "endLine": 25, + "endColumn": 12, + "endOffset": 1401 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 1406, + "endLine": 28, + "endColumn": 12, + "endOffset": 1572 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v17/values-v17.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 1406, + "endLine": 28, + "endColumn": 12, + "endOffset": 1572 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 1577, + "endLine": 31, + "endColumn": 12, + "endOffset": 1746 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v17/values-v17.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 1577, + "endLine": 31, + "endColumn": 12, + "endOffset": 1746 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 1751, + "endLine": 34, + "endColumn": 12, + "endOffset": 1915 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v17/values-v17.xml", + "position": { + "startLine": 32, + "startColumn": 4, + "startOffset": 1751, + "endLine": 34, + "endColumn": 12, + "endOffset": 1915 + } + } + }, + { + "to": { + "startLine": 35, + "startColumn": 4, + "startOffset": 1920, + "endLine": 38, + "endColumn": 12, + "endOffset": 2188 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v17/values-v17.xml", + "position": { + "startLine": 35, + "startColumn": 4, + "startOffset": 1920, + "endLine": 38, + "endColumn": 12, + "endOffset": 2188 + } + } + }, + { + "to": { + "startLine": 39, + "startColumn": 4, + "startOffset": 2193, + "endLine": 41, + "endColumn": 12, + "endOffset": 2388 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v17/values-v17.xml", + "position": { + "startLine": 39, + "startColumn": 4, + "startOffset": 2193, + "endLine": 41, + "endColumn": 12, + "endOffset": 2388 + } + } + }, + { + "to": { + "startLine": 42, + "startColumn": 4, + "startOffset": 2393, + "endLine": 45, + "endColumn": 12, + "endOffset": 2592 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v17/values-v17.xml", + "position": { + "startLine": 42, + "startColumn": 4, + "startOffset": 2393, + "endLine": 45, + "endColumn": 12, + "endOffset": 2592 + } + } + }, + { + "to": { + "startLine": 46, + "startColumn": 4, + "startOffset": 2597, + "endLine": 49, + "endColumn": 12, + "endOffset": 2921 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v17/values-v17.xml", + "position": { + "startLine": 46, + "startColumn": 4, + "startOffset": 2597, + "endLine": 49, + "endColumn": 12, + "endOffset": 2921 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/multi/values-v18.json b/android/build/intermediates/blame/res/debug/multi/values-v18.json new file mode 100644 index 000000000..80bbf7554 --- /dev/null +++ b/android/build/intermediates/blame/res/debug/multi/values-v18.json @@ -0,0 +1,26 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v18/values-v18.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 48, + "endOffset": 99 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v18/values-v18.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 48, + "endOffset": 99 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/multi/values-v21.json b/android/build/intermediates/blame/res/debug/multi/values-v21.json new file mode 100644 index 000000000..ba5acbb0a --- /dev/null +++ b/android/build/intermediates/blame/res/debug/multi/values-v21.json @@ -0,0 +1,1702 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v21/values-v21.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endLine": 7, + "endColumn": 12, + "endOffset": 351 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-v21/styles.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 18, + "endLine": 7, + "endColumn": 12, + "endOffset": 314 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 356, + "endColumn": 90, + "endOffset": 442 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 90, + "endOffset": 141 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 447, + "endColumn": 102, + "endOffset": 545 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 146, + "endColumn": 102, + "endOffset": 244 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 550, + "endColumn": 102, + "endOffset": 648 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 249, + "endColumn": 102, + "endOffset": 347 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 653, + "endColumn": 104, + "endOffset": 753 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 352, + "endColumn": 104, + "endOffset": 452 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 758, + "endColumn": 106, + "endOffset": 860 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 457, + "endColumn": 106, + "endOffset": 559 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 865, + "endColumn": 108, + "endOffset": 969 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 564, + "endColumn": 108, + "endOffset": 668 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 974, + "endColumn": 108, + "endOffset": 1078 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 673, + "endColumn": 108, + "endOffset": 777 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1083, + "endColumn": 108, + "endOffset": 1187 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 782, + "endColumn": 108, + "endOffset": 886 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1192, + "endColumn": 108, + "endOffset": 1296 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 891, + "endColumn": 108, + "endOffset": 995 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1301, + "endColumn": 108, + "endOffset": 1405 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1000, + "endColumn": 108, + "endOffset": 1104 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1410, + "endColumn": 106, + "endOffset": 1512 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1109, + "endColumn": 106, + "endOffset": 1211 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1517, + "endColumn": 102, + "endOffset": 1615 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1216, + "endColumn": 102, + "endOffset": 1314 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1620, + "endColumn": 118, + "endOffset": 1734 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1319, + "endColumn": 118, + "endOffset": 1433 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1739, + "endLine": 22, + "endColumn": 12, + "endOffset": 1889 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1438, + "endLine": 16, + "endColumn": 12, + "endOffset": 1588 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 1894, + "endLine": 24, + "endColumn": 12, + "endOffset": 2044 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1593, + "endLine": 18, + "endColumn": 12, + "endOffset": 1743 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2049, + "endColumn": 104, + "endOffset": 2149 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1748, + "endColumn": 104, + "endOffset": 1848 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2154, + "endColumn": 120, + "endOffset": 2270 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1853, + "endColumn": 120, + "endOffset": 1969 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 2275, + "endColumn": 100, + "endOffset": 2371 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1974, + "endColumn": 100, + "endOffset": 2070 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 2376, + "endLine": 29, + "endColumn": 12, + "endOffset": 2518 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2075, + "endLine": 23, + "endColumn": 12, + "endOffset": 2217 + } + } + }, + { + "to": { + "startLine": 30, + "startColumn": 4, + "startOffset": 2523, + "endLine": 31, + "endColumn": 12, + "endOffset": 2659 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2222, + "endLine": 25, + "endColumn": 12, + "endOffset": 2358 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 2664, + "endColumn": 102, + "endOffset": 2762 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2363, + "endColumn": 102, + "endOffset": 2461 + } + } + }, + { + "to": { + "startLine": 33, + "startColumn": 4, + "startOffset": 2767, + "endColumn": 118, + "endOffset": 2881 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 27, + "startColumn": 4, + "startOffset": 2466, + "endColumn": 118, + "endOffset": 2580 + } + } + }, + { + "to": { + "startLine": 34, + "startColumn": 4, + "startOffset": 2886, + "endColumn": 106, + "endOffset": 2988 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 28, + "startColumn": 4, + "startOffset": 2585, + "endColumn": 106, + "endOffset": 2687 + } + } + }, + { + "to": { + "startLine": 35, + "startColumn": 4, + "startOffset": 2993, + "endColumn": 102, + "endOffset": 3091 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 2692, + "endColumn": 102, + "endOffset": 2790 + } + } + }, + { + "to": { + "startLine": 36, + "startColumn": 4, + "startOffset": 3096, + "endLine": 37, + "endColumn": 12, + "endOffset": 3246 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 30, + "startColumn": 4, + "startOffset": 2795, + "endLine": 31, + "endColumn": 12, + "endOffset": 2945 + } + } + }, + { + "to": { + "startLine": 38, + "startColumn": 4, + "startOffset": 3251, + "endLine": 39, + "endColumn": 12, + "endOffset": 3417 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 32, + "startColumn": 4, + "startOffset": 2950, + "endLine": 33, + "endColumn": 12, + "endOffset": 3116 + } + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 3422, + "endLine": 41, + "endColumn": 12, + "endOffset": 3566 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 34, + "startColumn": 4, + "startOffset": 3121, + "endLine": 35, + "endColumn": 12, + "endOffset": 3265 + } + } + }, + { + "to": { + "startLine": 42, + "startColumn": 4, + "startOffset": 3571, + "endLine": 43, + "endColumn": 12, + "endOffset": 3731 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 36, + "startColumn": 4, + "startOffset": 3270, + "endLine": 37, + "endColumn": 12, + "endOffset": 3430 + } + } + }, + { + "to": { + "startLine": 44, + "startColumn": 4, + "startOffset": 3736, + "endLine": 45, + "endColumn": 12, + "endOffset": 3888 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 38, + "startColumn": 4, + "startOffset": 3435, + "endLine": 39, + "endColumn": 12, + "endOffset": 3587 + } + } + }, + { + "to": { + "startLine": 46, + "startColumn": 4, + "startOffset": 3893, + "endLine": 47, + "endColumn": 12, + "endOffset": 4039 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 40, + "startColumn": 4, + "startOffset": 3592, + "endLine": 41, + "endColumn": 12, + "endOffset": 3738 + } + } + }, + { + "to": { + "startLine": 48, + "startColumn": 4, + "startOffset": 4044, + "endColumn": 118, + "endOffset": 4158 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 42, + "startColumn": 4, + "startOffset": 3743, + "endColumn": 118, + "endOffset": 3857 + } + } + }, + { + "to": { + "startLine": 49, + "startColumn": 4, + "startOffset": 4163, + "endLine": 50, + "endColumn": 12, + "endOffset": 4307 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 43, + "startColumn": 4, + "startOffset": 3862, + "endLine": 44, + "endColumn": 12, + "endOffset": 4006 + } + } + }, + { + "to": { + "startLine": 51, + "startColumn": 4, + "startOffset": 4312, + "endLine": 52, + "endColumn": 12, + "endOffset": 4456 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 45, + "startColumn": 4, + "startOffset": 4011, + "endLine": 46, + "endColumn": 12, + "endOffset": 4155 + } + } + }, + { + "to": { + "startLine": 53, + "startColumn": 4, + "startOffset": 4461, + "endColumn": 111, + "endOffset": 4568 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 47, + "startColumn": 4, + "startOffset": 4160, + "endColumn": 111, + "endOffset": 4267 + } + } + }, + { + "to": { + "startLine": 54, + "startColumn": 4, + "startOffset": 4573, + "endColumn": 146, + "endOffset": 4715 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 48, + "startColumn": 4, + "startOffset": 4272, + "endColumn": 146, + "endOffset": 4414 + } + } + }, + { + "to": { + "startLine": 55, + "startColumn": 4, + "startOffset": 4720, + "endLine": 56, + "endColumn": 12, + "endOffset": 4868 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 49, + "startColumn": 4, + "startOffset": 4419, + "endLine": 50, + "endColumn": 12, + "endOffset": 4567 + } + } + }, + { + "to": { + "startLine": 57, + "startColumn": 4, + "startOffset": 4873, + "endLine": 58, + "endColumn": 12, + "endOffset": 5015 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 51, + "startColumn": 4, + "startOffset": 4572, + "endLine": 52, + "endColumn": 12, + "endOffset": 4714 + } + } + }, + { + "to": { + "startLine": 59, + "startColumn": 4, + "startOffset": 5020, + "endColumn": 74, + "endOffset": 5090 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 53, + "startColumn": 4, + "startOffset": 4719, + "endColumn": 74, + "endOffset": 4789 + } + } + }, + { + "to": { + "startLine": 60, + "startColumn": 4, + "startOffset": 5095, + "endColumn": 88, + "endOffset": 5179 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 54, + "startColumn": 4, + "startOffset": 4794, + "endColumn": 88, + "endOffset": 4878 + } + } + }, + { + "to": { + "startLine": 61, + "startColumn": 4, + "startOffset": 5184, + "endColumn": 86, + "endOffset": 5266 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 55, + "startColumn": 4, + "startOffset": 4883, + "endColumn": 86, + "endOffset": 4965 + } + } + }, + { + "to": { + "startLine": 62, + "startColumn": 4, + "startOffset": 5271, + "endColumn": 100, + "endOffset": 5367 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 56, + "startColumn": 4, + "startOffset": 4970, + "endColumn": 100, + "endOffset": 5066 + } + } + }, + { + "to": { + "startLine": 63, + "startColumn": 4, + "startOffset": 5372, + "endLine": 106, + "endColumn": 12, + "endOffset": 8435 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 57, + "startColumn": 4, + "startOffset": 5071, + "endLine": 100, + "endColumn": 12, + "endOffset": 8134 + } + } + }, + { + "to": { + "startLine": 107, + "startColumn": 4, + "startOffset": 8440, + "endLine": 109, + "endColumn": 12, + "endOffset": 8621 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 101, + "startColumn": 4, + "startOffset": 8139, + "endLine": 103, + "endColumn": 12, + "endOffset": 8320 + } + } + }, + { + "to": { + "startLine": 110, + "startColumn": 4, + "startOffset": 8626, + "endLine": 153, + "endColumn": 12, + "endOffset": 11701 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 104, + "startColumn": 4, + "startOffset": 8325, + "endLine": 147, + "endColumn": 12, + "endOffset": 11400 + } + } + }, + { + "to": { + "startLine": 154, + "startColumn": 4, + "startOffset": 11706, + "endLine": 156, + "endColumn": 12, + "endOffset": 11899 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 148, + "startColumn": 4, + "startOffset": 11405, + "endLine": 150, + "endColumn": 12, + "endOffset": 11598 + } + } + }, + { + "to": { + "startLine": 157, + "startColumn": 4, + "startOffset": 11904, + "endLine": 158, + "endColumn": 12, + "endOffset": 12022 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 151, + "startColumn": 4, + "startOffset": 11603, + "endLine": 152, + "endColumn": 12, + "endOffset": 11721 + } + } + }, + { + "to": { + "startLine": 159, + "startColumn": 4, + "startOffset": 12027, + "endLine": 160, + "endColumn": 12, + "endOffset": 12145 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 153, + "startColumn": 4, + "startOffset": 11726, + "endLine": 154, + "endColumn": 12, + "endOffset": 11844 + } + } + }, + { + "to": { + "startLine": 161, + "startColumn": 4, + "startOffset": 12150, + "endLine": 162, + "endColumn": 12, + "endOffset": 12258 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 155, + "startColumn": 4, + "startOffset": 11849, + "endLine": 156, + "endColumn": 12, + "endOffset": 11957 + } + } + }, + { + "to": { + "startLine": 163, + "startColumn": 4, + "startOffset": 12263, + "endLine": 165, + "endColumn": 12, + "endOffset": 12441 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 157, + "startColumn": 4, + "startOffset": 11962, + "endLine": 159, + "endColumn": 12, + "endOffset": 12140 + } + } + }, + { + "to": { + "startLine": 166, + "startColumn": 4, + "startOffset": 12446, + "endLine": 167, + "endColumn": 12, + "endOffset": 12572 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 160, + "startColumn": 4, + "startOffset": 12145, + "endLine": 161, + "endColumn": 12, + "endOffset": 12271 + } + } + }, + { + "to": { + "startLine": 168, + "startColumn": 4, + "startOffset": 12577, + "endLine": 170, + "endColumn": 12, + "endOffset": 12773 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 162, + "startColumn": 4, + "startOffset": 12276, + "endLine": 164, + "endColumn": 12, + "endOffset": 12472 + } + } + }, + { + "to": { + "startLine": 171, + "startColumn": 4, + "startOffset": 12778, + "endColumn": 88, + "endOffset": 12862 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 165, + "startColumn": 4, + "startOffset": 12477, + "endColumn": 88, + "endOffset": 12561 + } + } + }, + { + "to": { + "startLine": 172, + "startColumn": 4, + "startOffset": 12867, + "endColumn": 110, + "endOffset": 12973 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 166, + "startColumn": 4, + "startOffset": 12566, + "endColumn": 110, + "endOffset": 12672 + } + } + }, + { + "to": { + "startLine": 173, + "startColumn": 4, + "startOffset": 12978, + "endColumn": 126, + "endOffset": 13100 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 167, + "startColumn": 4, + "startOffset": 12677, + "endColumn": 126, + "endOffset": 12799 + } + } + }, + { + "to": { + "startLine": 174, + "startColumn": 4, + "startOffset": 13105, + "endColumn": 100, + "endOffset": 13201 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 168, + "startColumn": 4, + "startOffset": 12804, + "endColumn": 100, + "endOffset": 12900 + } + } + }, + { + "to": { + "startLine": 175, + "startColumn": 4, + "startOffset": 13206, + "endColumn": 94, + "endOffset": 13296 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 169, + "startColumn": 4, + "startOffset": 12905, + "endColumn": 94, + "endOffset": 12995 + } + } + }, + { + "to": { + "startLine": 176, + "startColumn": 4, + "startOffset": 13301, + "endColumn": 122, + "endOffset": 13419 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 170, + "startColumn": 4, + "startOffset": 13000, + "endColumn": 122, + "endOffset": 13118 + } + } + }, + { + "to": { + "startLine": 177, + "startColumn": 4, + "startOffset": 13424, + "endColumn": 128, + "endOffset": 13548 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 171, + "startColumn": 4, + "startOffset": 13123, + "endColumn": 128, + "endOffset": 13247 + } + } + }, + { + "to": { + "startLine": 178, + "startColumn": 4, + "startOffset": 13553, + "endColumn": 116, + "endOffset": 13665 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 172, + "startColumn": 4, + "startOffset": 13252, + "endColumn": 116, + "endOffset": 13364 + } + } + }, + { + "to": { + "startLine": 179, + "startColumn": 4, + "startOffset": 13670, + "endLine": 181, + "endColumn": 12, + "endOffset": 13842 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 173, + "startColumn": 4, + "startOffset": 13369, + "endLine": 175, + "endColumn": 12, + "endOffset": 13541 + } + } + }, + { + "to": { + "startLine": 182, + "startColumn": 4, + "startOffset": 13847, + "endColumn": 98, + "endOffset": 13941 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 176, + "startColumn": 4, + "startOffset": 13546, + "endColumn": 98, + "endOffset": 13640 + } + } + }, + { + "to": { + "startLine": 183, + "startColumn": 4, + "startOffset": 13946, + "endLine": 184, + "endColumn": 12, + "endOffset": 14076 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 177, + "startColumn": 4, + "startOffset": 13645, + "endLine": 178, + "endColumn": 12, + "endOffset": 13775 + } + } + }, + { + "to": { + "startLine": 185, + "startColumn": 4, + "startOffset": 14081, + "endLine": 186, + "endColumn": 12, + "endOffset": 14219 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 179, + "startColumn": 4, + "startOffset": 13780, + "endLine": 180, + "endColumn": 12, + "endOffset": 13918 + } + } + }, + { + "to": { + "startLine": 187, + "startColumn": 4, + "startOffset": 14224, + "endLine": 188, + "endColumn": 12, + "endOffset": 14354 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 181, + "startColumn": 4, + "startOffset": 13923, + "endLine": 182, + "endColumn": 12, + "endOffset": 14053 + } + } + }, + { + "to": { + "startLine": 189, + "startColumn": 4, + "startOffset": 14359, + "endLine": 190, + "endColumn": 12, + "endOffset": 14473 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 183, + "startColumn": 4, + "startOffset": 14058, + "endLine": 184, + "endColumn": 12, + "endOffset": 14172 + } + } + }, + { + "to": { + "startLine": 191, + "startColumn": 4, + "startOffset": 14478, + "endLine": 194, + "endColumn": 12, + "endOffset": 14674 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 185, + "startColumn": 4, + "startOffset": 14177, + "endLine": 188, + "endColumn": 12, + "endOffset": 14373 + } + } + }, + { + "to": { + "startLine": 195, + "startColumn": 4, + "startOffset": 14679, + "endLine": 196, + "endColumn": 12, + "endOffset": 14793 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 189, + "startColumn": 4, + "startOffset": 14378, + "endLine": 190, + "endColumn": 12, + "endOffset": 14492 + } + } + }, + { + "to": { + "startLine": 197, + "startColumn": 4, + "startOffset": 14798, + "endColumn": 92, + "endOffset": 14886 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 191, + "startColumn": 4, + "startOffset": 14497, + "endColumn": 92, + "endOffset": 14585 + } + } + }, + { + "to": { + "startLine": 198, + "startColumn": 4, + "startOffset": 14891, + "endColumn": 110, + "endOffset": 14997 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 192, + "startColumn": 4, + "startOffset": 14590, + "endColumn": 110, + "endOffset": 14696 + } + } + }, + { + "to": { + "startLine": 199, + "startColumn": 4, + "startOffset": 15002, + "endColumn": 55, + "endOffset": 15053 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 193, + "startColumn": 4, + "startOffset": 14701, + "endColumn": 55, + "endOffset": 14752 + } + } + }, + { + "to": { + "startLine": 200, + "startColumn": 4, + "startOffset": 15058, + "endLine": 201, + "endColumn": 12, + "endOffset": 15160 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 194, + "startColumn": 4, + "startOffset": 14757, + "endLine": 195, + "endColumn": 12, + "endOffset": 14859 + } + } + }, + { + "to": { + "startLine": 202, + "startColumn": 4, + "startOffset": 15165, + "endLine": 205, + "endColumn": 12, + "endOffset": 15355 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 196, + "startColumn": 4, + "startOffset": 14864, + "endLine": 199, + "endColumn": 12, + "endOffset": 15054 + } + } + }, + { + "to": { + "startLine": 206, + "startColumn": 4, + "startOffset": 15360, + "endLine": 207, + "endColumn": 12, + "endOffset": 15466 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 200, + "startColumn": 4, + "startOffset": 15059, + "endLine": 201, + "endColumn": 12, + "endOffset": 15165 + } + } + }, + { + "to": { + "startLine": 208, + "startColumn": 4, + "startOffset": 15471, + "endLine": 209, + "endColumn": 12, + "endOffset": 15599 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 202, + "startColumn": 4, + "startOffset": 15170, + "endLine": 203, + "endColumn": 12, + "endOffset": 15298 + } + } + }, + { + "to": { + "startLine": 210, + "startColumn": 4, + "startOffset": 15604, + "endColumn": 94, + "endOffset": 15694 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 204, + "startColumn": 4, + "startOffset": 15303, + "endColumn": 94, + "endOffset": 15393 + } + } + }, + { + "to": { + "startLine": 211, + "startColumn": 4, + "startOffset": 15699, + "endColumn": 90, + "endOffset": 15785 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 205, + "startColumn": 4, + "startOffset": 15398, + "endColumn": 90, + "endOffset": 15484 + } + } + }, + { + "to": { + "startLine": 212, + "startColumn": 4, + "startOffset": 15790, + "endColumn": 90, + "endOffset": 15876 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 206, + "startColumn": 4, + "startOffset": 15489, + "endColumn": 90, + "endOffset": 15575 + } + } + }, + { + "to": { + "startLine": 213, + "startColumn": 4, + "startOffset": 15881, + "endColumn": 116, + "endOffset": 15993 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 207, + "startColumn": 4, + "startOffset": 15580, + "endColumn": 116, + "endOffset": 15692 + } + } + }, + { + "to": { + "startLine": 214, + "startColumn": 4, + "startOffset": 15998, + "endLine": 215, + "endColumn": 12, + "endOffset": 16132 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 208, + "startColumn": 4, + "startOffset": 15697, + "endLine": 209, + "endColumn": 12, + "endOffset": 15831 + } + } + }, + { + "to": { + "startLine": 216, + "startColumn": 4, + "startOffset": 16137, + "endLine": 225, + "endColumn": 12, + "endOffset": 16645 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 210, + "startColumn": 4, + "startOffset": 15836, + "endLine": 219, + "endColumn": 12, + "endOffset": 16344 + } + } + }, + { + "to": { + "startLine": 226, + "startColumn": 4, + "startOffset": 16650, + "endLine": 235, + "endColumn": 12, + "endOffset": 17170 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 220, + "startColumn": 4, + "startOffset": 16349, + "endLine": 229, + "endColumn": 12, + "endOffset": 16869 + } + } + }, + { + "to": { + "startLine": 236, + "startColumn": 4, + "startOffset": 17175, + "endLine": 245, + "endColumn": 12, + "endOffset": 17850 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 230, + "startColumn": 4, + "startOffset": 16874, + "endLine": 239, + "endColumn": 12, + "endOffset": 17549 + } + } + }, + { + "to": { + "startLine": 246, + "startColumn": 4, + "startOffset": 17855, + "endColumn": 56, + "endOffset": 17907 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 240, + "startColumn": 4, + "startOffset": 17554, + "endColumn": 56, + "endOffset": 17606 + } + } + }, + { + "to": { + "startLine": 247, + "startColumn": 4, + "startOffset": 17912, + "endColumn": 57, + "endOffset": 17965 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v21/values-v21.xml", + "position": { + "startLine": 241, + "startColumn": 4, + "startOffset": 17611, + "endColumn": 57, + "endOffset": 17664 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/multi/values-v22.json b/android/build/intermediates/blame/res/debug/multi/values-v22.json new file mode 100644 index 000000000..cc02be728 --- /dev/null +++ b/android/build/intermediates/blame/res/debug/multi/values-v22.json @@ -0,0 +1,87 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v22/values-v22.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 74, + "endOffset": 125 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v22/values-v22.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 74, + "endOffset": 125 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 130, + "endColumn": 86, + "endOffset": 212 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v22/values-v22.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 130, + "endColumn": 86, + "endOffset": 212 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 217, + "endLine": 8, + "endColumn": 12, + "endOffset": 548 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v22/values-v22.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 217, + "endLine": 8, + "endColumn": 12, + "endOffset": 548 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 553, + "endLine": 13, + "endColumn": 12, + "endOffset": 896 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v22/values-v22.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 553, + "endLine": 13, + "endColumn": 12, + "endOffset": 896 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/multi/values-v23.json b/android/build/intermediates/blame/res/debug/multi/values-v23.json new file mode 100644 index 000000000..3e8a4213e --- /dev/null +++ b/android/build/intermediates/blame/res/debug/multi/values-v23.json @@ -0,0 +1,201 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v23/values-v23.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 134, + "endOffset": 185 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v23/values-v23.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 134, + "endOffset": 185 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 190, + "endColumn": 134, + "endOffset": 320 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v23/values-v23.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 190, + "endColumn": 134, + "endOffset": 320 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 325, + "endColumn": 74, + "endOffset": 395 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v23/values-v23.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 325, + "endColumn": 74, + "endOffset": 395 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 400, + "endColumn": 86, + "endOffset": 482 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v23/values-v23.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 400, + "endColumn": 86, + "endOffset": 482 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 487, + "endLine": 18, + "endColumn": 12, + "endOffset": 1272 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v23/values-v23.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 487, + "endLine": 18, + "endColumn": 12, + "endOffset": 1272 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1277, + "endLine": 31, + "endColumn": 12, + "endOffset": 2074 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v23/values-v23.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1277, + "endLine": 31, + "endColumn": 12, + "endOffset": 2074 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 2079, + "endColumn": 104, + "endOffset": 2179 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v23/values-v23.xml", + "position": { + "startLine": 32, + "startColumn": 4, + "startOffset": 2079, + "endColumn": 104, + "endOffset": 2179 + } + } + }, + { + "to": { + "startLine": 33, + "startColumn": 4, + "startOffset": 2184, + "endColumn": 114, + "endOffset": 2294 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v23/values-v23.xml", + "position": { + "startLine": 33, + "startColumn": 4, + "startOffset": 2184, + "endColumn": 114, + "endOffset": 2294 + } + } + }, + { + "to": { + "startLine": 34, + "startColumn": 4, + "startOffset": 2299, + "endColumn": 106, + "endOffset": 2401 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v23/values-v23.xml", + "position": { + "startLine": 34, + "startColumn": 4, + "startOffset": 2299, + "endColumn": 106, + "endOffset": 2401 + } + } + }, + { + "to": { + "startLine": 35, + "startColumn": 4, + "startOffset": 2406, + "endColumn": 112, + "endOffset": 2514 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v23/values-v23.xml", + "position": { + "startLine": 35, + "startColumn": 4, + "startOffset": 2406, + "endColumn": 112, + "endOffset": 2514 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/multi/values-vi.json b/android/build/intermediates/blame/res/debug/multi/values-vi.json new file mode 100644 index 000000000..b7233f052 --- /dev/null +++ b/android/build/intermediates/blame/res/debug/multi/values-vi.json @@ -0,0 +1,539 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-vi/values-vi.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 113, + "endOffset": 164 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-vi/values-vi.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 113, + "endOffset": 164 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 169, + "endColumn": 107, + "endOffset": 272 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-vi/values-vi.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 169, + "endColumn": 107, + "endOffset": 272 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 277, + "endColumn": 122, + "endOffset": 395 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-vi/values-vi.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 277, + "endColumn": 122, + "endOffset": 395 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 400, + "endColumn": 107, + "endOffset": 503 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-vi/values-vi.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 400, + "endColumn": 107, + "endOffset": 503 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 508, + "endColumn": 108, + "endOffset": 612 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-vi/values-vi.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 508, + "endColumn": 108, + "endOffset": 612 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 617, + "endColumn": 83, + "endOffset": 696 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-vi/values-vi.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 617, + "endColumn": 83, + "endOffset": 696 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 701, + "endColumn": 102, + "endOffset": 799 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-vi/values-vi.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 701, + "endColumn": 102, + "endOffset": 799 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 804, + "endColumn": 118, + "endOffset": 918 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-vi/values-vi.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 804, + "endColumn": 118, + "endOffset": 918 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 923, + "endColumn": 76, + "endOffset": 995 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-vi/values-vi.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 923, + "endColumn": 76, + "endOffset": 995 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1000, + "endColumn": 76, + "endOffset": 1072 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-vi/values-vi.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1000, + "endColumn": 76, + "endOffset": 1072 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1077, + "endColumn": 83, + "endOffset": 1156 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-vi/values-vi.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1077, + "endColumn": 83, + "endOffset": 1156 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1161, + "endColumn": 103, + "endOffset": 1260 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-vi/values-vi.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1161, + "endColumn": 103, + "endOffset": 1260 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1265, + "endColumn": 108, + "endOffset": 1369 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-vi/values-vi.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1265, + "endColumn": 108, + "endOffset": 1369 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1374, + "endColumn": 100, + "endOffset": 1470 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-vi/values-vi.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1374, + "endColumn": 100, + "endOffset": 1470 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1475, + "endColumn": 104, + "endOffset": 1575 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-vi/values-vi.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1475, + "endColumn": 104, + "endOffset": 1575 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1580, + "endColumn": 113, + "endOffset": 1689 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-vi/values-vi.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1580, + "endColumn": 113, + "endOffset": 1689 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1694, + "endColumn": 104, + "endOffset": 1794 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-vi/values-vi.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1694, + "endColumn": 104, + "endOffset": 1794 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1799, + "endColumn": 119, + "endOffset": 1914 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-vi/values-vi.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1799, + "endColumn": 119, + "endOffset": 1914 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1919, + "endColumn": 98, + "endOffset": 2013 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-vi/values-vi.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1919, + "endColumn": 98, + "endOffset": 2013 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2018, + "endColumn": 53, + "endOffset": 2067 + }, + "from": { + "file": "/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/values-vi/values-vi.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 53, + "endOffset": 104 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2072, + "endColumn": 71, + "endOffset": 2139 + }, + "from": { + "file": "/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/values-vi/values-vi.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 109, + "endColumn": 71, + "endOffset": 176 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2144, + "endColumn": 78, + "endOffset": 2218 + }, + "from": { + "file": "/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/values-vi/values-vi.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 181, + "endColumn": 78, + "endOffset": 255 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2223, + "endColumn": 70, + "endOffset": 2289 + }, + "from": { + "file": "/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/values-vi/values-vi.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 260, + "endColumn": 70, + "endOffset": 326 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2294, + "endColumn": 65, + "endOffset": 2355 + }, + "from": { + "file": "/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/values-vi/values-vi.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 331, + "endColumn": 65, + "endOffset": 392 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2360, + "endColumn": 55, + "endOffset": 2411 + }, + "from": { + "file": "/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/values-vi/values-vi.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 397, + "endColumn": 55, + "endOffset": 448 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 2416, + "endColumn": 58, + "endOffset": 2470 + }, + "from": { + "file": "/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/values-vi/values-vi.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 453, + "endColumn": 58, + "endOffset": 507 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 2475, + "endColumn": 73, + "endOffset": 2544 + }, + "from": { + "file": "/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/values-vi/values-vi.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 512, + "endColumn": 73, + "endOffset": 581 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 2549, + "endColumn": 100, + "endOffset": 2645 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-vi/values-vi.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2018, + "endColumn": 100, + "endOffset": 2114 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/multi/values-w360dp-v13.json b/android/build/intermediates/blame/res/debug/multi/values-w360dp-v13.json new file mode 100644 index 000000000..35de642f6 --- /dev/null +++ b/android/build/intermediates/blame/res/debug/multi/values-w360dp-v13.json @@ -0,0 +1,26 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-w360dp-v13/values-w360dp-v13.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 54, + "endOffset": 105 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-w360dp-v13/values-w360dp-v13.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 54, + "endOffset": 105 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/multi/values-w480dp-v13.json b/android/build/intermediates/blame/res/debug/multi/values-w480dp-v13.json new file mode 100644 index 000000000..22c108d4c --- /dev/null +++ b/android/build/intermediates/blame/res/debug/multi/values-w480dp-v13.json @@ -0,0 +1,45 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-w480dp-v13/values-w480dp-v13.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 61, + "endOffset": 112 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-w480dp-v13/values-w480dp-v13.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 61, + "endOffset": 112 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 117, + "endColumn": 71, + "endOffset": 184 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-w480dp-v13/values-w480dp-v13.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 117, + "endColumn": 71, + "endOffset": 184 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/multi/values-w500dp-v13.json b/android/build/intermediates/blame/res/debug/multi/values-w500dp-v13.json new file mode 100644 index 000000000..6337ba82a --- /dev/null +++ b/android/build/intermediates/blame/res/debug/multi/values-w500dp-v13.json @@ -0,0 +1,26 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-w500dp-v13/values-w500dp-v13.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 54, + "endOffset": 105 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-w500dp-v13/values-w500dp-v13.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 54, + "endOffset": 105 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/multi/values-w600dp-v13.json b/android/build/intermediates/blame/res/debug/multi/values-w600dp-v13.json new file mode 100644 index 000000000..e3d81b35a --- /dev/null +++ b/android/build/intermediates/blame/res/debug/multi/values-w600dp-v13.json @@ -0,0 +1,45 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-w600dp-v13/values-w600dp-v13.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 63, + "endOffset": 114 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-w600dp-v13/values-w600dp-v13.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 63, + "endOffset": 114 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 119, + "endColumn": 54, + "endOffset": 169 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-w600dp-v13/values-w600dp-v13.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 119, + "endColumn": 54, + "endOffset": 169 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/multi/values-w720dp-v13.json b/android/build/intermediates/blame/res/debug/multi/values-w720dp-v13.json new file mode 100644 index 000000000..babf4554c --- /dev/null +++ b/android/build/intermediates/blame/res/debug/multi/values-w720dp-v13.json @@ -0,0 +1,26 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-w720dp-v13/values-w720dp-v13.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 76, + "endOffset": 127 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-w720dp-v13/values-w720dp-v13.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 76, + "endOffset": 127 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/multi/values-w820dp-v13.json b/android/build/intermediates/blame/res/debug/multi/values-w820dp-v13.json new file mode 100644 index 000000000..31530d30f --- /dev/null +++ b/android/build/intermediates/blame/res/debug/multi/values-w820dp-v13.json @@ -0,0 +1,26 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-w820dp-v13/values-w820dp-v13.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 57, + "endOffset": 108 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-w820dp/dimens.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 291, + "endColumn": 57, + "endOffset": 344 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/multi/values-xlarge-land-v4.json b/android/build/intermediates/blame/res/debug/multi/values-xlarge-land-v4.json new file mode 100644 index 000000000..c4ae432c1 --- /dev/null +++ b/android/build/intermediates/blame/res/debug/multi/values-xlarge-land-v4.json @@ -0,0 +1,26 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-xlarge-land-v4/values-xlarge-land-v4.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 63, + "endOffset": 114 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-xlarge-land-v4/values-xlarge-land-v4.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 63, + "endOffset": 114 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/multi/values-xlarge-v4.json b/android/build/intermediates/blame/res/debug/multi/values-xlarge-v4.json new file mode 100644 index 000000000..f1118e2bc --- /dev/null +++ b/android/build/intermediates/blame/res/debug/multi/values-xlarge-v4.json @@ -0,0 +1,178 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-xlarge-v4/values-xlarge-v4.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 76, + "endOffset": 127 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-xlarge-v4/values-xlarge-v4.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 76, + "endOffset": 127 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 132, + "endColumn": 70, + "endOffset": 198 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-xlarge-v4/values-xlarge-v4.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 132, + "endColumn": 70, + "endOffset": 198 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 203, + "endColumn": 70, + "endOffset": 269 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-xlarge-v4/values-xlarge-v4.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 203, + "endColumn": 70, + "endOffset": 269 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 274, + "endColumn": 69, + "endOffset": 339 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-xlarge-v4/values-xlarge-v4.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 274, + "endColumn": 69, + "endOffset": 339 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 344, + "endColumn": 69, + "endOffset": 409 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-xlarge-v4/values-xlarge-v4.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 344, + "endColumn": 69, + "endOffset": 409 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 414, + "endColumn": 67, + "endOffset": 477 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-xlarge-v4/values-xlarge-v4.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 414, + "endColumn": 67, + "endOffset": 477 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 482, + "endColumn": 67, + "endOffset": 545 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-xlarge-v4/values-xlarge-v4.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 482, + "endColumn": 67, + "endOffset": 545 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 550, + "endColumn": 63, + "endOffset": 609 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-xlarge-v4/values-xlarge-v4.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 550, + "endColumn": 63, + "endOffset": 609 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 614, + "endColumn": 54, + "endOffset": 664 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-xlarge-v4/values-xlarge-v4.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 614, + "endColumn": 54, + "endOffset": 664 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/multi/values-zh-rCN.json b/android/build/intermediates/blame/res/debug/multi/values-zh-rCN.json new file mode 100644 index 000000000..c2643229b --- /dev/null +++ b/android/build/intermediates/blame/res/debug/multi/values-zh-rCN.json @@ -0,0 +1,539 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-zh-rCN/values-zh-rCN.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 95, + "endOffset": 146 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rCN/values-zh-rCN.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 95, + "endOffset": 146 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 151, + "endColumn": 106, + "endOffset": 253 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rCN/values-zh-rCN.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 151, + "endColumn": 106, + "endOffset": 253 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 258, + "endColumn": 122, + "endOffset": 376 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rCN/values-zh-rCN.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 258, + "endColumn": 122, + "endOffset": 376 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 381, + "endColumn": 94, + "endOffset": 471 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rCN/values-zh-rCN.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 381, + "endColumn": 94, + "endOffset": 471 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 476, + "endColumn": 99, + "endOffset": 571 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rCN/values-zh-rCN.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 476, + "endColumn": 99, + "endOffset": 571 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 576, + "endColumn": 81, + "endOffset": 653 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rCN/values-zh-rCN.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 576, + "endColumn": 81, + "endOffset": 653 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 658, + "endColumn": 96, + "endOffset": 750 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rCN/values-zh-rCN.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 658, + "endColumn": 96, + "endOffset": 750 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 755, + "endColumn": 105, + "endOffset": 856 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rCN/values-zh-rCN.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 755, + "endColumn": 105, + "endOffset": 856 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 861, + "endColumn": 75, + "endOffset": 932 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rCN/values-zh-rCN.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 861, + "endColumn": 75, + "endOffset": 932 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 937, + "endColumn": 75, + "endOffset": 1008 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rCN/values-zh-rCN.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 937, + "endColumn": 75, + "endOffset": 1008 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1013, + "endColumn": 77, + "endOffset": 1086 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rCN/values-zh-rCN.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1013, + "endColumn": 77, + "endOffset": 1086 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1091, + "endColumn": 95, + "endOffset": 1182 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rCN/values-zh-rCN.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1091, + "endColumn": 95, + "endOffset": 1182 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1187, + "endColumn": 95, + "endOffset": 1278 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rCN/values-zh-rCN.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1187, + "endColumn": 95, + "endOffset": 1278 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1283, + "endColumn": 94, + "endOffset": 1373 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rCN/values-zh-rCN.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1283, + "endColumn": 94, + "endOffset": 1373 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1378, + "endColumn": 96, + "endOffset": 1470 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rCN/values-zh-rCN.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1378, + "endColumn": 96, + "endOffset": 1470 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1475, + "endColumn": 94, + "endOffset": 1565 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rCN/values-zh-rCN.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1475, + "endColumn": 94, + "endOffset": 1565 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1570, + "endColumn": 97, + "endOffset": 1663 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rCN/values-zh-rCN.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1570, + "endColumn": 97, + "endOffset": 1663 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1668, + "endColumn": 111, + "endOffset": 1775 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rCN/values-zh-rCN.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1668, + "endColumn": 111, + "endOffset": 1775 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1780, + "endColumn": 93, + "endOffset": 1869 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rCN/values-zh-rCN.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1780, + "endColumn": 93, + "endOffset": 1869 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1874, + "endColumn": 53, + "endOffset": 1923 + }, + "from": { + "file": "/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/values-zh-rCN/values-zh-rCN.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 53, + "endOffset": 104 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 1928, + "endColumn": 59, + "endOffset": 1983 + }, + "from": { + "file": "/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/values-zh-rCN/values-zh-rCN.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 109, + "endColumn": 59, + "endOffset": 164 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 1988, + "endColumn": 78, + "endOffset": 2062 + }, + "from": { + "file": "/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/values-zh-rCN/values-zh-rCN.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 169, + "endColumn": 78, + "endOffset": 243 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2067, + "endColumn": 70, + "endOffset": 2133 + }, + "from": { + "file": "/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/values-zh-rCN/values-zh-rCN.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 248, + "endColumn": 70, + "endOffset": 314 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2138, + "endColumn": 56, + "endOffset": 2190 + }, + "from": { + "file": "/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/values-zh-rCN/values-zh-rCN.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 319, + "endColumn": 56, + "endOffset": 371 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2195, + "endColumn": 55, + "endOffset": 2246 + }, + "from": { + "file": "/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/values-zh-rCN/values-zh-rCN.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 376, + "endColumn": 55, + "endOffset": 427 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 2251, + "endColumn": 58, + "endOffset": 2305 + }, + "from": { + "file": "/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/values-zh-rCN/values-zh-rCN.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 432, + "endColumn": 58, + "endOffset": 486 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 2310, + "endColumn": 73, + "endOffset": 2379 + }, + "from": { + "file": "/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/values-zh-rCN/values-zh-rCN.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 491, + "endColumn": 73, + "endOffset": 560 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 2384, + "endColumn": 100, + "endOffset": 2480 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rCN/values-zh-rCN.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1874, + "endColumn": 100, + "endOffset": 1970 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/multi/values-zh-rHK.json b/android/build/intermediates/blame/res/debug/multi/values-zh-rHK.json new file mode 100644 index 000000000..b4a9c9214 --- /dev/null +++ b/android/build/intermediates/blame/res/debug/multi/values-zh-rHK.json @@ -0,0 +1,539 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-zh-rHK/values-zh-rHK.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 94, + "endOffset": 145 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rHK/values-zh-rHK.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 94, + "endOffset": 145 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 150, + "endColumn": 106, + "endOffset": 252 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rHK/values-zh-rHK.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 150, + "endColumn": 106, + "endOffset": 252 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 257, + "endColumn": 122, + "endOffset": 375 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rHK/values-zh-rHK.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 257, + "endColumn": 122, + "endOffset": 375 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 380, + "endColumn": 92, + "endOffset": 468 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rHK/values-zh-rHK.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 380, + "endColumn": 92, + "endOffset": 468 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 473, + "endColumn": 99, + "endOffset": 568 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rHK/values-zh-rHK.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 473, + "endColumn": 99, + "endOffset": 568 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 573, + "endColumn": 81, + "endOffset": 650 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rHK/values-zh-rHK.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 573, + "endColumn": 81, + "endOffset": 650 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 655, + "endColumn": 96, + "endOffset": 747 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rHK/values-zh-rHK.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 655, + "endColumn": 96, + "endOffset": 747 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 752, + "endColumn": 107, + "endOffset": 855 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rHK/values-zh-rHK.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 752, + "endColumn": 107, + "endOffset": 855 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 860, + "endColumn": 75, + "endOffset": 931 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rHK/values-zh-rHK.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 860, + "endColumn": 75, + "endOffset": 931 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 936, + "endColumn": 75, + "endOffset": 1007 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rHK/values-zh-rHK.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 936, + "endColumn": 75, + "endOffset": 1007 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1012, + "endColumn": 77, + "endOffset": 1085 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rHK/values-zh-rHK.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1012, + "endColumn": 77, + "endOffset": 1085 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1090, + "endColumn": 95, + "endOffset": 1181 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rHK/values-zh-rHK.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1090, + "endColumn": 95, + "endOffset": 1181 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1186, + "endColumn": 95, + "endOffset": 1277 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rHK/values-zh-rHK.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1186, + "endColumn": 95, + "endOffset": 1277 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1282, + "endColumn": 94, + "endOffset": 1372 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rHK/values-zh-rHK.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1282, + "endColumn": 94, + "endOffset": 1372 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1377, + "endColumn": 96, + "endOffset": 1469 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rHK/values-zh-rHK.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1377, + "endColumn": 96, + "endOffset": 1469 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1474, + "endColumn": 94, + "endOffset": 1564 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rHK/values-zh-rHK.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1474, + "endColumn": 94, + "endOffset": 1564 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1569, + "endColumn": 97, + "endOffset": 1662 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rHK/values-zh-rHK.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1569, + "endColumn": 97, + "endOffset": 1662 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1667, + "endColumn": 112, + "endOffset": 1775 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rHK/values-zh-rHK.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1667, + "endColumn": 112, + "endOffset": 1775 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1780, + "endColumn": 93, + "endOffset": 1869 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rHK/values-zh-rHK.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1780, + "endColumn": 93, + "endOffset": 1869 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1874, + "endColumn": 53, + "endOffset": 1923 + }, + "from": { + "file": "/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/values-zh-rHK/values-zh-rHK.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 53, + "endOffset": 104 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 1928, + "endColumn": 59, + "endOffset": 1983 + }, + "from": { + "file": "/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/values-zh-rHK/values-zh-rHK.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 109, + "endColumn": 59, + "endOffset": 164 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 1988, + "endColumn": 78, + "endOffset": 2062 + }, + "from": { + "file": "/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/values-zh-rHK/values-zh-rHK.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 169, + "endColumn": 78, + "endOffset": 243 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2067, + "endColumn": 70, + "endOffset": 2133 + }, + "from": { + "file": "/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/values-zh-rHK/values-zh-rHK.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 248, + "endColumn": 70, + "endOffset": 314 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2138, + "endColumn": 55, + "endOffset": 2189 + }, + "from": { + "file": "/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/values-zh-rHK/values-zh-rHK.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 319, + "endColumn": 55, + "endOffset": 370 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2194, + "endColumn": 55, + "endOffset": 2245 + }, + "from": { + "file": "/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/values-zh-rHK/values-zh-rHK.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 375, + "endColumn": 55, + "endOffset": 426 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 2250, + "endColumn": 58, + "endOffset": 2304 + }, + "from": { + "file": "/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/values-zh-rHK/values-zh-rHK.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 431, + "endColumn": 58, + "endOffset": 485 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 2309, + "endColumn": 73, + "endOffset": 2378 + }, + "from": { + "file": "/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/values-zh-rHK/values-zh-rHK.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 490, + "endColumn": 73, + "endOffset": 559 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 2383, + "endColumn": 101, + "endOffset": 2480 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rHK/values-zh-rHK.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1874, + "endColumn": 101, + "endOffset": 1971 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/multi/values-zh-rTW.json b/android/build/intermediates/blame/res/debug/multi/values-zh-rTW.json new file mode 100644 index 000000000..9928dad25 --- /dev/null +++ b/android/build/intermediates/blame/res/debug/multi/values-zh-rTW.json @@ -0,0 +1,1717 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-zh-rTW/values-zh-rTW.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 94, + "endOffset": 145 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 94, + "endOffset": 145 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 150, + "endColumn": 106, + "endOffset": 252 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 150, + "endColumn": 106, + "endOffset": 252 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 257, + "endColumn": 122, + "endOffset": 375 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 257, + "endColumn": 122, + "endOffset": 375 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 380, + "endColumn": 92, + "endOffset": 468 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 380, + "endColumn": 92, + "endOffset": 468 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 473, + "endColumn": 99, + "endOffset": 568 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 473, + "endColumn": 99, + "endOffset": 568 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 573, + "endColumn": 81, + "endOffset": 650 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 573, + "endColumn": 81, + "endOffset": 650 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 655, + "endColumn": 96, + "endOffset": 747 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 655, + "endColumn": 96, + "endOffset": 747 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 752, + "endColumn": 107, + "endOffset": 855 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 752, + "endColumn": 107, + "endOffset": 855 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 860, + "endColumn": 75, + "endOffset": 931 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 860, + "endColumn": 75, + "endOffset": 931 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 936, + "endColumn": 75, + "endOffset": 1007 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 936, + "endColumn": 75, + "endOffset": 1007 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1012, + "endColumn": 77, + "endOffset": 1085 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1012, + "endColumn": 77, + "endOffset": 1085 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1090, + "endColumn": 95, + "endOffset": 1181 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1090, + "endColumn": 95, + "endOffset": 1181 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1186, + "endColumn": 95, + "endOffset": 1277 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1186, + "endColumn": 95, + "endOffset": 1277 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1282, + "endColumn": 94, + "endOffset": 1372 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1282, + "endColumn": 94, + "endOffset": 1372 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1377, + "endColumn": 96, + "endOffset": 1469 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1377, + "endColumn": 96, + "endOffset": 1469 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1474, + "endColumn": 94, + "endOffset": 1564 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1474, + "endColumn": 94, + "endOffset": 1564 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1569, + "endColumn": 99, + "endOffset": 1664 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1569, + "endColumn": 99, + "endOffset": 1664 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1669, + "endColumn": 112, + "endOffset": 1777 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1669, + "endColumn": 112, + "endOffset": 1777 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1782, + "endColumn": 93, + "endOffset": 1871 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1782, + "endColumn": 93, + "endOffset": 1871 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1876, + "endColumn": 51, + "endOffset": 1923 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-zh-rTW/strings.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 676, + "endColumn": 51, + "endOffset": 723 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 1928, + "endColumn": 43, + "endOffset": 1967 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-zh-rTW/strings.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 632, + "endColumn": 43, + "endOffset": 671 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 1972, + "endColumn": 44, + "endOffset": 2012 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-zh-rTW/strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 280, + "endColumn": 44, + "endOffset": 320 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 2017, + "endColumn": 43, + "endOffset": 2056 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-zh-rTW/strings.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 236, + "endColumn": 43, + "endOffset": 275 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 2061, + "endColumn": 41, + "endOffset": 2098 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-zh-rTW/strings.xml", + "position": { + "startLine": 60, + "startColumn": 4, + "startOffset": 3426, + "endColumn": 41, + "endOffset": 3463 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 2103, + "endColumn": 48, + "endOffset": 2147 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-zh-rTW/strings.xml", + "position": { + "startLine": 47, + "startColumn": 4, + "startOffset": 2638, + "endColumn": 48, + "endOffset": 2682 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 2152, + "endColumn": 44, + "endOffset": 2192 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-zh-rTW/strings.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 872, + "endColumn": 44, + "endOffset": 912 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 2197, + "endColumn": 43, + "endOffset": 2236 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-zh-rTW/strings.xml", + "position": { + "startLine": 43, + "startColumn": 4, + "startOffset": 2381, + "endColumn": 43, + "endOffset": 2420 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 2241, + "endColumn": 39, + "endOffset": 2276 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-zh-rTW/strings.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 470, + "endColumn": 39, + "endOffset": 505 + } + } + }, + { + "to": { + "startLine": 30, + "startColumn": 4, + "startOffset": 2281, + "endColumn": 40, + "endOffset": 2317 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-zh-rTW/strings.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 429, + "endColumn": 40, + "endOffset": 465 + } + } + }, + { + "to": { + "startLine": 31, + "startColumn": 4, + "startOffset": 2322, + "endColumn": 54, + "endOffset": 2372 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-zh-rTW/strings.xml", + "position": { + "startLine": 1, + "startColumn": 4, + "startOffset": 16, + "endColumn": 54, + "endOffset": 66 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 2377, + "endColumn": 113, + "endOffset": 2486 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-zh-rTW/strings.xml", + "position": { + "startLine": 44, + "startColumn": 4, + "startOffset": 2425, + "endColumn": 113, + "endOffset": 2534 + } + } + }, + { + "to": { + "startLine": 33, + "startColumn": 4, + "startOffset": 2491, + "endColumn": 41, + "endOffset": 2528 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-zh-rTW/strings.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 1190, + "endColumn": 41, + "endOffset": 1227 + } + } + }, + { + "to": { + "startLine": 34, + "startColumn": 4, + "startOffset": 2533, + "endColumn": 50, + "endOffset": 2579 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-zh-rTW/strings.xml", + "position": { + "startLine": 31, + "startColumn": 4, + "startOffset": 1602, + "endColumn": 50, + "endOffset": 1648 + } + } + }, + { + "to": { + "startLine": 35, + "startColumn": 4, + "startOffset": 2584, + "endColumn": 80, + "endOffset": 2660 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-zh-rTW/strings.xml", + "position": { + "startLine": 32, + "startColumn": 4, + "startOffset": 1653, + "endColumn": 80, + "endOffset": 1729 + } + } + }, + { + "to": { + "startLine": 36, + "startColumn": 4, + "startOffset": 2665, + "endColumn": 47, + "endOffset": 2708 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-zh-rTW/strings.xml", + "position": { + "startLine": 30, + "startColumn": 4, + "startOffset": 1554, + "endColumn": 47, + "endOffset": 1597 + } + } + }, + { + "to": { + "startLine": 37, + "startColumn": 4, + "startOffset": 2713, + "endColumn": 56, + "endOffset": 2765 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-zh-rTW/strings.xml", + "position": { + "startLine": 56, + "startColumn": 4, + "startOffset": 3216, + "endColumn": 56, + "endOffset": 3268 + } + } + }, + { + "to": { + "startLine": 38, + "startColumn": 4, + "startOffset": 2770, + "endColumn": 48, + "endOffset": 2814 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-zh-rTW/strings.xml", + "position": { + "startLine": 35, + "startColumn": 4, + "startOffset": 1885, + "endColumn": 48, + "endOffset": 1929 + } + } + }, + { + "to": { + "startLine": 39, + "startColumn": 4, + "startOffset": 2819, + "endColumn": 73, + "endOffset": 2888 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-zh-rTW/strings.xml", + "position": { + "startLine": 36, + "startColumn": 4, + "startOffset": 1934, + "endColumn": 73, + "endOffset": 2003 + } + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 2893, + "endColumn": 47, + "endOffset": 2936 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-zh-rTW/strings.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 1134, + "endColumn": 55, + "endOffset": 1185 + } + } + }, + { + "to": { + "startLine": 41, + "startColumn": 4, + "startOffset": 2941, + "endColumn": 53, + "endOffset": 2990 + }, + "from": { + "file": "/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/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 53, + "endOffset": 104 + } + } + }, + { + "to": { + "startLine": 42, + "startColumn": 4, + "startOffset": 2995, + "endColumn": 59, + "endOffset": 3050 + }, + "from": { + "file": "/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/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 109, + "endColumn": 59, + "endOffset": 164 + } + } + }, + { + "to": { + "startLine": 43, + "startColumn": 4, + "startOffset": 3055, + "endColumn": 78, + "endOffset": 3129 + }, + "from": { + "file": "/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/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 169, + "endColumn": 78, + "endOffset": 243 + } + } + }, + { + "to": { + "startLine": 44, + "startColumn": 4, + "startOffset": 3134, + "endColumn": 70, + "endOffset": 3200 + }, + "from": { + "file": "/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/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 248, + "endColumn": 70, + "endOffset": 314 + } + } + }, + { + "to": { + "startLine": 45, + "startColumn": 4, + "startOffset": 3205, + "endColumn": 55, + "endOffset": 3256 + }, + "from": { + "file": "/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/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 319, + "endColumn": 55, + "endOffset": 370 + } + } + }, + { + "to": { + "startLine": 46, + "startColumn": 4, + "startOffset": 3261, + "endColumn": 55, + "endOffset": 3312 + }, + "from": { + "file": "/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/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 375, + "endColumn": 55, + "endOffset": 426 + } + } + }, + { + "to": { + "startLine": 47, + "startColumn": 4, + "startOffset": 3317, + "endColumn": 58, + "endOffset": 3371 + }, + "from": { + "file": "/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/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 431, + "endColumn": 58, + "endOffset": 485 + } + } + }, + { + "to": { + "startLine": 48, + "startColumn": 4, + "startOffset": 3376, + "endColumn": 73, + "endOffset": 3445 + }, + "from": { + "file": "/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/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 490, + "endColumn": 73, + "endOffset": 559 + } + } + }, + { + "to": { + "startLine": 49, + "startColumn": 4, + "startOffset": 3450, + "endColumn": 42, + "endOffset": 3488 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-zh-rTW/strings.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1091, + "endColumn": 42, + "endOffset": 1129 + } + } + }, + { + "to": { + "startLine": 50, + "startColumn": 4, + "startOffset": 3493, + "endColumn": 68, + "endOffset": 3557 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-zh-rTW/strings.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 510, + "endColumn": 68, + "endOffset": 574 + } + } + }, + { + "to": { + "startLine": 51, + "startColumn": 4, + "startOffset": 3562, + "endColumn": 58, + "endOffset": 3616 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-zh-rTW/strings.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 370, + "endColumn": 58, + "endOffset": 424 + } + } + }, + { + "to": { + "startLine": 52, + "startColumn": 4, + "startOffset": 3621, + "endColumn": 82, + "endOffset": 3699 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-zh-rTW/strings.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 789, + "endColumn": 82, + "endOffset": 867 + } + } + }, + { + "to": { + "startLine": 53, + "startColumn": 4, + "startOffset": 3704, + "endColumn": 44, + "endOffset": 3744 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-zh-rTW/strings.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 325, + "endColumn": 44, + "endOffset": 365 + } + } + }, + { + "to": { + "startLine": 54, + "startColumn": 4, + "startOffset": 3749, + "endColumn": 41, + "endOffset": 3786 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-zh-rTW/strings.xml", + "position": { + "startLine": 51, + "startColumn": 4, + "startOffset": 2934, + "endColumn": 41, + "endOffset": 2971 + } + } + }, + { + "to": { + "startLine": 55, + "startColumn": 4, + "startOffset": 3791, + "endColumn": 66, + "endOffset": 3853 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-zh-rTW/strings.xml", + "position": { + "startLine": 52, + "startColumn": 4, + "startOffset": 2976, + "endColumn": 66, + "endOffset": 3038 + } + } + }, + { + "to": { + "startLine": 56, + "startColumn": 4, + "startOffset": 3858, + "endColumn": 44, + "endOffset": 3898 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-zh-rTW/strings.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 917, + "endColumn": 44, + "endOffset": 957 + } + } + }, + { + "to": { + "startLine": 57, + "startColumn": 4, + "startOffset": 3903, + "endColumn": 66, + "endOffset": 3965 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-zh-rTW/strings.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 962, + "endColumn": 66, + "endOffset": 1024 + } + } + }, + { + "to": { + "startLine": 58, + "startColumn": 4, + "startOffset": 3970, + "endColumn": 60, + "endOffset": 4026 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-zh-rTW/strings.xml", + "position": { + "startLine": 55, + "startColumn": 4, + "startOffset": 3155, + "endColumn": 60, + "endOffset": 3211 + } + } + }, + { + "to": { + "startLine": 59, + "startColumn": 4, + "startOffset": 4031, + "endColumn": 50, + "endOffset": 4077 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-zh-rTW/strings.xml", + "position": { + "startLine": 59, + "startColumn": 4, + "startOffset": 3375, + "endColumn": 50, + "endOffset": 3421 + } + } + }, + { + "to": { + "startLine": 60, + "startColumn": 4, + "startOffset": 4082, + "endColumn": 49, + "endOffset": 4127 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-zh-rTW/strings.xml", + "position": { + "startLine": 58, + "startColumn": 4, + "startOffset": 3325, + "endColumn": 49, + "endOffset": 3370 + } + } + }, + { + "to": { + "startLine": 61, + "startColumn": 4, + "startOffset": 4132, + "endColumn": 54, + "endOffset": 4182 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-zh-rTW/strings.xml", + "position": { + "startLine": 49, + "startColumn": 4, + "startOffset": 2775, + "endColumn": 54, + "endOffset": 2825 + } + } + }, + { + "to": { + "startLine": 62, + "startColumn": 4, + "startOffset": 4187, + "endColumn": 103, + "endOffset": 4286 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-zh-rTW/strings.xml", + "position": { + "startLine": 50, + "startColumn": 4, + "startOffset": 2830, + "endColumn": 103, + "endOffset": 2929 + } + } + }, + { + "to": { + "startLine": 63, + "startColumn": 4, + "startOffset": 4291, + "endColumn": 47, + "endOffset": 4334 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-zh-rTW/strings.xml", + "position": { + "startLine": 46, + "startColumn": 4, + "startOffset": 2590, + "endColumn": 47, + "endOffset": 2633 + } + } + }, + { + "to": { + "startLine": 64, + "startColumn": 4, + "startOffset": 4339, + "endColumn": 50, + "endOffset": 4385 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-zh-rTW/strings.xml", + "position": { + "startLine": 45, + "startColumn": 4, + "startOffset": 2539, + "endColumn": 50, + "endOffset": 2585 + } + } + }, + { + "to": { + "startLine": 65, + "startColumn": 4, + "startOffset": 4390, + "endColumn": 48, + "endOffset": 4434 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-zh-rTW/strings.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 187, + "endColumn": 48, + "endOffset": 231 + } + } + }, + { + "to": { + "startLine": 66, + "startColumn": 4, + "startOffset": 4439, + "endColumn": 60, + "endOffset": 4495 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-zh-rTW/strings.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 728, + "endColumn": 60, + "endOffset": 784 + } + } + }, + { + "to": { + "startLine": 67, + "startColumn": 4, + "startOffset": 4500, + "endColumn": 43, + "endOffset": 4539 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-zh-rTW/strings.xml", + "position": { + "startLine": 24, + "startColumn": 4, + "startOffset": 1232, + "endColumn": 43, + "endOffset": 1271 + } + } + }, + { + "to": { + "startLine": 68, + "startColumn": 4, + "startOffset": 4544, + "endColumn": 48, + "endOffset": 4588 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-zh-rTW/strings.xml", + "position": { + "startLine": 33, + "startColumn": 4, + "startOffset": 1734, + "endColumn": 48, + "endOffset": 1778 + } + } + }, + { + "to": { + "startLine": 69, + "startColumn": 4, + "startOffset": 4593, + "endColumn": 101, + "endOffset": 4690 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-zh-rTW/strings.xml", + "position": { + "startLine": 34, + "startColumn": 4, + "startOffset": 1783, + "endColumn": 101, + "endOffset": 1880 + } + } + }, + { + "to": { + "startLine": 70, + "startColumn": 4, + "startOffset": 4695, + "endColumn": 87, + "endOffset": 4778 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-zh-rTW/strings.xml", + "position": { + "startLine": 48, + "startColumn": 4, + "startOffset": 2687, + "endColumn": 87, + "endOffset": 2770 + } + } + }, + { + "to": { + "startLine": 71, + "startColumn": 4, + "startOffset": 4783, + "endColumn": 51, + "endOffset": 4830 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-zh-rTW/strings.xml", + "position": { + "startLine": 57, + "startColumn": 4, + "startOffset": 3273, + "endColumn": 51, + "endOffset": 3320 + } + } + }, + { + "to": { + "startLine": 72, + "startColumn": 4, + "startOffset": 4835, + "endColumn": 61, + "endOffset": 4892 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-zh-rTW/strings.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1029, + "endColumn": 61, + "endOffset": 1086 + } + } + }, + { + "to": { + "startLine": 73, + "startColumn": 4, + "startOffset": 4897, + "endColumn": 45, + "endOffset": 4938 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-zh-rTW/strings.xml", + "position": { + "startLine": 39, + "startColumn": 4, + "startOffset": 2123, + "endColumn": 45, + "endOffset": 2164 + } + } + }, + { + "to": { + "startLine": 74, + "startColumn": 4, + "startOffset": 4943, + "endColumn": 57, + "endOffset": 4996 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-zh-rTW/strings.xml", + "position": { + "startLine": 40, + "startColumn": 4, + "startOffset": 2169, + "endColumn": 57, + "endOffset": 2222 + } + } + }, + { + "to": { + "startLine": 75, + "startColumn": 4, + "startOffset": 5001, + "endColumn": 39, + "endOffset": 5036 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-zh-rTW/strings.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 1514, + "endColumn": 39, + "endOffset": 1549 + } + } + }, + { + "to": { + "startLine": 76, + "startColumn": 4, + "startOffset": 5041, + "endColumn": 45, + "endOffset": 5082 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-zh-rTW/strings.xml", + "position": { + "startLine": 25, + "startColumn": 4, + "startOffset": 1276, + "endColumn": 45, + "endOffset": 1317 + } + } + }, + { + "to": { + "startLine": 77, + "startColumn": 4, + "startOffset": 5087, + "endColumn": 75, + "endOffset": 5158 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-zh-rTW/strings.xml", + "position": { + "startLine": 27, + "startColumn": 4, + "startOffset": 1378, + "endColumn": 75, + "endOffset": 1449 + } + } + }, + { + "to": { + "startLine": 78, + "startColumn": 4, + "startOffset": 5163, + "endColumn": 59, + "endOffset": 5218 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-zh-rTW/strings.xml", + "position": { + "startLine": 28, + "startColumn": 4, + "startOffset": 1454, + "endColumn": 59, + "endOffset": 1509 + } + } + }, + { + "to": { + "startLine": 79, + "startColumn": 4, + "startOffset": 5223, + "endColumn": 55, + "endOffset": 5274 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-zh-rTW/strings.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 1322, + "endColumn": 55, + "endOffset": 1373 + } + } + }, + { + "to": { + "startLine": 80, + "startColumn": 4, + "startOffset": 5279, + "endColumn": 52, + "endOffset": 5327 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-zh-rTW/strings.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 579, + "endColumn": 52, + "endOffset": 627 + } + } + }, + { + "to": { + "startLine": 81, + "startColumn": 4, + "startOffset": 5332, + "endColumn": 102, + "endOffset": 5430 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-zh-rTW/strings.xml", + "position": { + "startLine": 42, + "startColumn": 4, + "startOffset": 2278, + "endColumn": 102, + "endOffset": 2376 + } + } + }, + { + "to": { + "startLine": 82, + "startColumn": 4, + "startOffset": 5435, + "endColumn": 50, + "endOffset": 5481 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-zh-rTW/strings.xml", + "position": { + "startLine": 41, + "startColumn": 4, + "startOffset": 2227, + "endColumn": 50, + "endOffset": 2273 + } + } + }, + { + "to": { + "startLine": 83, + "startColumn": 4, + "startOffset": 5486, + "endColumn": 100, + "endOffset": 5582 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zh-rTW/values-zh-rTW.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1876, + "endColumn": 100, + "endOffset": 1972 + } + } + }, + { + "to": { + "startLine": 84, + "startColumn": 4, + "startOffset": 5587, + "endColumn": 57, + "endOffset": 5640 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-zh-rTW/strings.xml", + "position": { + "startLine": 61, + "startColumn": 4, + "startOffset": 3468, + "endColumn": 57, + "endOffset": 3521 + } + } + }, + { + "to": { + "startLine": 85, + "startColumn": 4, + "startOffset": 5645, + "endColumn": 96, + "endOffset": 5737 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-zh-rTW/strings.xml", + "position": { + "startLine": 62, + "startColumn": 4, + "startOffset": 3526, + "endColumn": 96, + "endOffset": 3618 + } + } + }, + { + "to": { + "startLine": 86, + "startColumn": 4, + "startOffset": 5742, + "endColumn": 48, + "endOffset": 5786 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-zh-rTW/strings.xml", + "position": { + "startLine": 53, + "startColumn": 4, + "startOffset": 3043, + "endColumn": 48, + "endOffset": 3087 + } + } + }, + { + "to": { + "startLine": 87, + "startColumn": 4, + "startOffset": 5791, + "endColumn": 62, + "endOffset": 5849 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-zh-rTW/strings.xml", + "position": { + "startLine": 54, + "startColumn": 4, + "startOffset": 3092, + "endColumn": 62, + "endOffset": 3150 + } + } + }, + { + "to": { + "startLine": 88, + "startColumn": 4, + "startOffset": 5854, + "endColumn": 61, + "endOffset": 5911 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-zh-rTW/strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 125, + "endColumn": 61, + "endOffset": 182 + } + } + }, + { + "to": { + "startLine": 89, + "startColumn": 4, + "startOffset": 5916, + "endColumn": 53, + "endOffset": 5965 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-zh-rTW/strings.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 71, + "endColumn": 53, + "endOffset": 120 + } + } + }, + { + "to": { + "startLine": 90, + "startColumn": 4, + "startOffset": 5970, + "endColumn": 44, + "endOffset": 6010 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-zh-rTW/strings.xml", + "position": { + "startLine": 37, + "startColumn": 4, + "startOffset": 2008, + "endColumn": 44, + "endOffset": 2048 + } + } + }, + { + "to": { + "startLine": 91, + "startColumn": 4, + "startOffset": 6015, + "endColumn": 69, + "endOffset": 6080 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values-zh-rTW/strings.xml", + "position": { + "startLine": 38, + "startColumn": 4, + "startOffset": 2053, + "endColumn": 69, + "endOffset": 2118 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/multi/values-zu.json b/android/build/intermediates/blame/res/debug/multi/values-zu.json new file mode 100644 index 000000000..eb0617473 --- /dev/null +++ b/android/build/intermediates/blame/res/debug/multi/values-zu.json @@ -0,0 +1,387 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values-zu/values-zu.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 107, + "endOffset": 158 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zu/values-zu.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 107, + "endOffset": 158 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 163, + "endColumn": 107, + "endOffset": 266 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zu/values-zu.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 163, + "endColumn": 107, + "endOffset": 266 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 271, + "endColumn": 122, + "endOffset": 389 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zu/values-zu.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 271, + "endColumn": 122, + "endOffset": 389 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 394, + "endColumn": 106, + "endOffset": 496 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zu/values-zu.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 394, + "endColumn": 106, + "endOffset": 496 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 501, + "endColumn": 113, + "endOffset": 610 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zu/values-zu.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 501, + "endColumn": 113, + "endOffset": 610 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 615, + "endColumn": 87, + "endOffset": 698 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zu/values-zu.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 615, + "endColumn": 87, + "endOffset": 698 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 703, + "endColumn": 102, + "endOffset": 801 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zu/values-zu.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 703, + "endColumn": 102, + "endOffset": 801 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 806, + "endColumn": 126, + "endOffset": 928 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zu/values-zu.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 806, + "endColumn": 126, + "endOffset": 928 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 933, + "endColumn": 79, + "endOffset": 1008 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zu/values-zu.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 933, + "endColumn": 79, + "endOffset": 1008 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1013, + "endColumn": 79, + "endOffset": 1088 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zu/values-zu.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1013, + "endColumn": 79, + "endOffset": 1088 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1093, + "endColumn": 85, + "endOffset": 1174 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zu/values-zu.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1093, + "endColumn": 85, + "endOffset": 1174 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1179, + "endColumn": 103, + "endOffset": 1278 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zu/values-zu.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1179, + "endColumn": 103, + "endOffset": 1278 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1283, + "endColumn": 105, + "endOffset": 1384 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zu/values-zu.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1283, + "endColumn": 105, + "endOffset": 1384 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1389, + "endColumn": 97, + "endOffset": 1482 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zu/values-zu.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 1389, + "endColumn": 97, + "endOffset": 1482 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1487, + "endColumn": 106, + "endOffset": 1589 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zu/values-zu.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 1487, + "endColumn": 106, + "endOffset": 1589 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1594, + "endColumn": 105, + "endOffset": 1695 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zu/values-zu.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 1594, + "endColumn": 105, + "endOffset": 1695 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1700, + "endColumn": 105, + "endOffset": 1801 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zu/values-zu.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1700, + "endColumn": 105, + "endOffset": 1801 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1806, + "endColumn": 119, + "endOffset": 1921 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zu/values-zu.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1806, + "endColumn": 119, + "endOffset": 1921 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1926, + "endColumn": 95, + "endOffset": 2017 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zu/values-zu.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1926, + "endColumn": 95, + "endOffset": 2017 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2022, + "endColumn": 100, + "endOffset": 2118 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-zu/values-zu.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2022, + "endColumn": 100, + "endOffset": 2118 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/multi/values.json b/android/build/intermediates/blame/res/debug/multi/values.json new file mode 100644 index 000000000..5d7815186 --- /dev/null +++ b/android/build/intermediates/blame/res/debug/multi/values.json @@ -0,0 +1,13096 @@ +[ + { + "outputFile": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeDebugResources/merged.dir/values/values.xml", + "map": [ + { + "to": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 54, + "endOffset": 105 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 54, + "endOffset": 105 + } + } + }, + { + "to": { + "startLine": 3, + "startColumn": 4, + "startOffset": 110, + "endColumn": 44, + "endOffset": 150 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 110, + "endColumn": 44, + "endOffset": 150 + } + } + }, + { + "to": { + "startLine": 4, + "startColumn": 4, + "startOffset": 155, + "endColumn": 48, + "endOffset": 199 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 155, + "endColumn": 48, + "endOffset": 199 + } + } + }, + { + "to": { + "startLine": 5, + "startColumn": 4, + "startOffset": 204, + "endColumn": 40, + "endOffset": 240 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 204, + "endColumn": 40, + "endOffset": 240 + } + } + }, + { + "to": { + "startLine": 6, + "startColumn": 4, + "startOffset": 245, + "endColumn": 54, + "endOffset": 295 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 245, + "endColumn": 54, + "endOffset": 295 + } + } + }, + { + "to": { + "startLine": 7, + "startColumn": 4, + "startOffset": 300, + "endColumn": 62, + "endOffset": 358 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 300, + "endColumn": 62, + "endOffset": 358 + } + } + }, + { + "to": { + "startLine": 8, + "startColumn": 4, + "startOffset": 363, + "endColumn": 75, + "endOffset": 434 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 363, + "endColumn": 75, + "endOffset": 434 + } + } + }, + { + "to": { + "startLine": 9, + "startColumn": 4, + "startOffset": 439, + "endColumn": 57, + "endOffset": 492 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 439, + "endColumn": 57, + "endOffset": 492 + } + } + }, + { + "to": { + "startLine": 10, + "startColumn": 4, + "startOffset": 497, + "endColumn": 61, + "endOffset": 554 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 497, + "endColumn": 61, + "endOffset": 554 + } + } + }, + { + "to": { + "startLine": 11, + "startColumn": 4, + "startOffset": 559, + "endColumn": 72, + "endOffset": 627 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 559, + "endColumn": 72, + "endOffset": 627 + } + } + }, + { + "to": { + "startLine": 12, + "startColumn": 4, + "startOffset": 632, + "endColumn": 67, + "endOffset": 695 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 632, + "endColumn": 67, + "endOffset": 695 + } + } + }, + { + "to": { + "startLine": 13, + "startColumn": 4, + "startOffset": 700, + "endColumn": 77, + "endOffset": 773 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 700, + "endColumn": 77, + "endOffset": 773 + } + } + }, + { + "to": { + "startLine": 14, + "startColumn": 4, + "startOffset": 778, + "endColumn": 80, + "endOffset": 854 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 778, + "endColumn": 80, + "endOffset": 854 + } + } + }, + { + "to": { + "startLine": 15, + "startColumn": 4, + "startOffset": 859, + "endColumn": 60, + "endOffset": 915 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 859, + "endColumn": 60, + "endOffset": 915 + } + } + }, + { + "to": { + "startLine": 16, + "startColumn": 4, + "startOffset": 920, + "endColumn": 74, + "endOffset": 990 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 920, + "endColumn": 74, + "endOffset": 990 + } + } + }, + { + "to": { + "startLine": 17, + "startColumn": 4, + "startOffset": 995, + "endColumn": 75, + "endOffset": 1066 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 995, + "endColumn": 75, + "endOffset": 1066 + } + } + }, + { + "to": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1071, + "endColumn": 76, + "endOffset": 1143 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 1071, + "endColumn": 76, + "endOffset": 1143 + } + } + }, + { + "to": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1148, + "endColumn": 77, + "endOffset": 1221 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 1148, + "endColumn": 77, + "endOffset": 1221 + } + } + }, + { + "to": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1226, + "endColumn": 84, + "endOffset": 1306 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1226, + "endColumn": 84, + "endOffset": 1306 + } + } + }, + { + "to": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1311, + "endColumn": 81, + "endOffset": 1388 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1311, + "endColumn": 81, + "endOffset": 1388 + } + } + }, + { + "to": { + "startLine": 22, + "startColumn": 4, + "startOffset": 1393, + "endColumn": 75, + "endOffset": 1464 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 1393, + "endColumn": 75, + "endOffset": 1464 + } + } + }, + { + "to": { + "startLine": 23, + "startColumn": 4, + "startOffset": 1469, + "endColumn": 75, + "endOffset": 1540 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 1469, + "endColumn": 75, + "endOffset": 1540 + } + } + }, + { + "to": { + "startLine": 24, + "startColumn": 4, + "startOffset": 1545, + "endColumn": 49, + "endOffset": 1590 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values/colors.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 200, + "endColumn": 49, + "endOffset": 245 + } + } + }, + { + "to": { + "startLine": 25, + "startColumn": 4, + "startOffset": 1595, + "endColumn": 76, + "endOffset": 1667 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 24, + "startColumn": 4, + "startOffset": 1545, + "endColumn": 76, + "endOffset": 1617 + } + } + }, + { + "to": { + "startLine": 26, + "startColumn": 4, + "startOffset": 1672, + "endColumn": 77, + "endOffset": 1745 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 25, + "startColumn": 4, + "startOffset": 1622, + "endColumn": 77, + "endOffset": 1695 + } + } + }, + { + "to": { + "startLine": 27, + "startColumn": 4, + "startOffset": 1750, + "endColumn": 105, + "endOffset": 1851 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 1700, + "endColumn": 105, + "endOffset": 1801 + } + } + }, + { + "to": { + "startLine": 28, + "startColumn": 4, + "startOffset": 1856, + "endColumn": 105, + "endOffset": 1957 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 27, + "startColumn": 4, + "startOffset": 1806, + "endColumn": 105, + "endOffset": 1907 + } + } + }, + { + "to": { + "startLine": 29, + "startColumn": 4, + "startOffset": 1962, + "endColumn": 78, + "endOffset": 2036 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 28, + "startColumn": 4, + "startOffset": 1912, + "endColumn": 78, + "endOffset": 1986 + } + } + }, + { + "to": { + "startLine": 30, + "startColumn": 4, + "startOffset": 2041, + "endColumn": 79, + "endOffset": 2116 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 1991, + "endColumn": 79, + "endOffset": 2066 + } + } + }, + { + "to": { + "startLine": 31, + "startColumn": 4, + "startOffset": 2121, + "endColumn": 56, + "endOffset": 2173 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 30, + "startColumn": 4, + "startOffset": 2071, + "endColumn": 56, + "endOffset": 2123 + } + } + }, + { + "to": { + "startLine": 32, + "startColumn": 4, + "startOffset": 2178, + "endColumn": 57, + "endOffset": 2231 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 31, + "startColumn": 4, + "startOffset": 2128, + "endColumn": 57, + "endOffset": 2181 + } + } + }, + { + "to": { + "startLine": 33, + "startColumn": 4, + "startOffset": 2236, + "endColumn": 62, + "endOffset": 2294 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 62, + "endOffset": 113 + } + } + }, + { + "to": { + "startLine": 34, + "startColumn": 4, + "startOffset": 2299, + "endColumn": 45, + "endOffset": 2340 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values/colors.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 153, + "endColumn": 45, + "endOffset": 194 + } + } + }, + { + "to": { + "startLine": 35, + "startColumn": 4, + "startOffset": 2345, + "endColumn": 46, + "endOffset": 2387 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values/colors.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 46, + "endOffset": 97 + } + } + }, + { + "to": { + "startLine": 36, + "startColumn": 4, + "startOffset": 2392, + "endColumn": 50, + "endOffset": 2438 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values/colors.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 102, + "endColumn": 50, + "endOffset": 148 + } + } + }, + { + "to": { + "startLine": 37, + "startColumn": 4, + "startOffset": 2443, + "endColumn": 80, + "endOffset": 2519 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 55, + "endColumn": 80, + "endOffset": 131 + } + } + }, + { + "to": { + "startLine": 38, + "startColumn": 4, + "startOffset": 2524, + "endColumn": 63, + "endOffset": 2583 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 136, + "endColumn": 63, + "endOffset": 195 + } + } + }, + { + "to": { + "startLine": 39, + "startColumn": 4, + "startOffset": 2588, + "endColumn": 65, + "endOffset": 2649 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 200, + "endColumn": 65, + "endOffset": 261 + } + } + }, + { + "to": { + "startLine": 40, + "startColumn": 4, + "startOffset": 2654, + "endColumn": 69, + "endOffset": 2719 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 266, + "endColumn": 69, + "endOffset": 331 + } + } + }, + { + "to": { + "startLine": 41, + "startColumn": 4, + "startOffset": 2724, + "endColumn": 69, + "endOffset": 2789 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 336, + "endColumn": 69, + "endOffset": 401 + } + } + }, + { + "to": { + "startLine": 42, + "startColumn": 4, + "startOffset": 2794, + "endColumn": 69, + "endOffset": 2859 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 406, + "endColumn": 69, + "endOffset": 471 + } + } + }, + { + "to": { + "startLine": 43, + "startColumn": 4, + "startOffset": 2864, + "endColumn": 69, + "endOffset": 2929 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 476, + "endColumn": 69, + "endOffset": 541 + } + } + }, + { + "to": { + "startLine": 44, + "startColumn": 4, + "startOffset": 2934, + "endColumn": 66, + "endOffset": 2996 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 546, + "endColumn": 66, + "endOffset": 608 + } + } + }, + { + "to": { + "startLine": 45, + "startColumn": 4, + "startOffset": 3001, + "endColumn": 69, + "endOffset": 3066 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 613, + "endColumn": 69, + "endOffset": 678 + } + } + }, + { + "to": { + "startLine": 46, + "startColumn": 4, + "startOffset": 3071, + "endColumn": 70, + "endOffset": 3137 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 683, + "endColumn": 70, + "endOffset": 749 + } + } + }, + { + "to": { + "startLine": 47, + "startColumn": 4, + "startOffset": 3142, + "endColumn": 73, + "endOffset": 3211 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 32, + "startColumn": 4, + "startOffset": 2186, + "endColumn": 73, + "endOffset": 2255 + } + } + }, + { + "to": { + "startLine": 48, + "startColumn": 4, + "startOffset": 3216, + "endColumn": 74, + "endOffset": 3286 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 33, + "startColumn": 4, + "startOffset": 2260, + "endColumn": 74, + "endOffset": 2330 + } + } + }, + { + "to": { + "startLine": 49, + "startColumn": 4, + "startOffset": 3291, + "endColumn": 64, + "endOffset": 3351 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 34, + "startColumn": 4, + "startOffset": 2335, + "endColumn": 64, + "endOffset": 2395 + } + } + }, + { + "to": { + "startLine": 50, + "startColumn": 4, + "startOffset": 3356, + "endColumn": 65, + "endOffset": 3417 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 35, + "startColumn": 4, + "startOffset": 2400, + "endColumn": 65, + "endOffset": 2461 + } + } + }, + { + "to": { + "startLine": 51, + "startColumn": 4, + "startOffset": 3422, + "endColumn": 71, + "endOffset": 3489 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 36, + "startColumn": 4, + "startOffset": 2466, + "endColumn": 71, + "endOffset": 2533 + } + } + }, + { + "to": { + "startLine": 52, + "startColumn": 4, + "startOffset": 3494, + "endColumn": 72, + "endOffset": 3562 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 37, + "startColumn": 4, + "startOffset": 2538, + "endColumn": 72, + "endOffset": 2606 + } + } + }, + { + "to": { + "startLine": 53, + "startColumn": 4, + "startOffset": 3567, + "endColumn": 66, + "endOffset": 3629 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 38, + "startColumn": 4, + "startOffset": 2611, + "endColumn": 66, + "endOffset": 2673 + } + } + }, + { + "to": { + "startLine": 54, + "startColumn": 4, + "startOffset": 3634, + "endColumn": 67, + "endOffset": 3697 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 39, + "startColumn": 4, + "startOffset": 2678, + "endColumn": 67, + "endOffset": 2741 + } + } + }, + { + "to": { + "startLine": 55, + "startColumn": 4, + "startOffset": 3702, + "endColumn": 103, + "endOffset": 3801 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 40, + "startColumn": 4, + "startOffset": 2746, + "endColumn": 103, + "endOffset": 2845 + } + } + }, + { + "to": { + "startLine": 56, + "startColumn": 4, + "startOffset": 3806, + "endColumn": 105, + "endOffset": 3907 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 41, + "startColumn": 4, + "startOffset": 2850, + "endColumn": 105, + "endOffset": 2951 + } + } + }, + { + "to": { + "startLine": 57, + "startColumn": 4, + "startOffset": 3912, + "endColumn": 58, + "endOffset": 3966 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 42, + "startColumn": 4, + "startOffset": 2956, + "endColumn": 58, + "endOffset": 3010 + } + } + }, + { + "to": { + "startLine": 58, + "startColumn": 4, + "startOffset": 3971, + "endColumn": 58, + "endOffset": 4025 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 43, + "startColumn": 4, + "startOffset": 3015, + "endColumn": 58, + "endOffset": 3069 + } + } + }, + { + "to": { + "startLine": 59, + "startColumn": 4, + "startOffset": 4030, + "endColumn": 58, + "endOffset": 4084 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 44, + "startColumn": 4, + "startOffset": 3074, + "endColumn": 58, + "endOffset": 3128 + } + } + }, + { + "to": { + "startLine": 60, + "startColumn": 4, + "startOffset": 4089, + "endColumn": 58, + "endOffset": 4143 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 45, + "startColumn": 4, + "startOffset": 3133, + "endColumn": 58, + "endOffset": 3187 + } + } + }, + { + "to": { + "startLine": 61, + "startColumn": 4, + "startOffset": 4148, + "endColumn": 58, + "endOffset": 4202 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 46, + "startColumn": 4, + "startOffset": 3192, + "endColumn": 58, + "endOffset": 3246 + } + } + }, + { + "to": { + "startLine": 62, + "startColumn": 4, + "startOffset": 4207, + "endColumn": 53, + "endOffset": 4256 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 47, + "startColumn": 4, + "startOffset": 3251, + "endColumn": 53, + "endOffset": 3300 + } + } + }, + { + "to": { + "startLine": 63, + "startColumn": 4, + "startOffset": 4261, + "endColumn": 53, + "endOffset": 4310 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 48, + "startColumn": 4, + "startOffset": 3305, + "endColumn": 53, + "endOffset": 3354 + } + } + }, + { + "to": { + "startLine": 64, + "startColumn": 4, + "startOffset": 4315, + "endColumn": 52, + "endOffset": 4363 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 49, + "startColumn": 4, + "startOffset": 3359, + "endColumn": 52, + "endOffset": 3407 + } + } + }, + { + "to": { + "startLine": 65, + "startColumn": 4, + "startOffset": 4368, + "endColumn": 53, + "endOffset": 4417 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 50, + "startColumn": 4, + "startOffset": 3412, + "endColumn": 53, + "endOffset": 3461 + } + } + }, + { + "to": { + "startLine": 66, + "startColumn": 4, + "startOffset": 4422, + "endColumn": 53, + "endOffset": 4471 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 51, + "startColumn": 4, + "startOffset": 3466, + "endColumn": 53, + "endOffset": 3515 + } + } + }, + { + "to": { + "startLine": 67, + "startColumn": 4, + "startOffset": 4476, + "endColumn": 53, + "endOffset": 4525 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 52, + "startColumn": 4, + "startOffset": 3520, + "endColumn": 53, + "endOffset": 3569 + } + } + }, + { + "to": { + "startLine": 68, + "startColumn": 4, + "startOffset": 4530, + "endColumn": 53, + "endOffset": 4579 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 53, + "startColumn": 4, + "startOffset": 3574, + "endColumn": 53, + "endOffset": 3623 + } + } + }, + { + "to": { + "startLine": 69, + "startColumn": 4, + "startOffset": 4584, + "endColumn": 73, + "endOffset": 4653 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 54, + "startColumn": 4, + "startOffset": 3628, + "endColumn": 73, + "endOffset": 3697 + } + } + }, + { + "to": { + "startLine": 70, + "startColumn": 4, + "startOffset": 4658, + "endColumn": 78, + "endOffset": 4732 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 55, + "startColumn": 4, + "startOffset": 3702, + "endColumn": 78, + "endOffset": 3776 + } + } + }, + { + "to": { + "startLine": 71, + "startColumn": 4, + "startOffset": 4737, + "endColumn": 72, + "endOffset": 4805 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 56, + "startColumn": 4, + "startOffset": 3781, + "endColumn": 72, + "endOffset": 3849 + } + } + }, + { + "to": { + "startLine": 72, + "startColumn": 4, + "startOffset": 4810, + "endColumn": 73, + "endOffset": 4879 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 57, + "startColumn": 4, + "startOffset": 3854, + "endColumn": 73, + "endOffset": 3923 + } + } + }, + { + "to": { + "startLine": 73, + "startColumn": 4, + "startOffset": 4884, + "endColumn": 70, + "endOffset": 4950 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 58, + "startColumn": 4, + "startOffset": 3928, + "endColumn": 70, + "endOffset": 3994 + } + } + }, + { + "to": { + "startLine": 74, + "startColumn": 4, + "startOffset": 4955, + "endColumn": 71, + "endOffset": 5022 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 59, + "startColumn": 4, + "startOffset": 3999, + "endColumn": 71, + "endOffset": 4066 + } + } + }, + { + "to": { + "startLine": 75, + "startColumn": 4, + "startOffset": 5027, + "endColumn": 71, + "endOffset": 5094 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 60, + "startColumn": 4, + "startOffset": 4071, + "endColumn": 71, + "endOffset": 4138 + } + } + }, + { + "to": { + "startLine": 76, + "startColumn": 4, + "startOffset": 5099, + "endColumn": 72, + "endOffset": 5167 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 61, + "startColumn": 4, + "startOffset": 4143, + "endColumn": 72, + "endOffset": 4211 + } + } + }, + { + "to": { + "startLine": 77, + "startColumn": 4, + "startOffset": 5172, + "endColumn": 56, + "endOffset": 5224 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 62, + "startColumn": 4, + "startOffset": 4216, + "endColumn": 56, + "endOffset": 4268 + } + } + }, + { + "to": { + "startLine": 78, + "startColumn": 4, + "startOffset": 5229, + "endColumn": 57, + "endOffset": 5282 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 63, + "startColumn": 4, + "startOffset": 4273, + "endColumn": 57, + "endOffset": 4326 + } + } + }, + { + "to": { + "startLine": 79, + "startColumn": 4, + "startOffset": 5287, + "endColumn": 72, + "endOffset": 5355 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 64, + "startColumn": 4, + "startOffset": 4331, + "endColumn": 72, + "endOffset": 4399 + } + } + }, + { + "to": { + "startLine": 80, + "startColumn": 4, + "startOffset": 5360, + "endColumn": 73, + "endOffset": 5429 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 65, + "startColumn": 4, + "startOffset": 4404, + "endColumn": 73, + "endOffset": 4473 + } + } + }, + { + "to": { + "startLine": 81, + "startColumn": 4, + "startOffset": 5434, + "endColumn": 73, + "endOffset": 5503 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 66, + "startColumn": 4, + "startOffset": 4478, + "endColumn": 73, + "endOffset": 4547 + } + } + }, + { + "to": { + "startLine": 82, + "startColumn": 4, + "startOffset": 5508, + "endColumn": 74, + "endOffset": 5578 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 67, + "startColumn": 4, + "startOffset": 4552, + "endColumn": 74, + "endOffset": 4622 + } + } + }, + { + "to": { + "startLine": 83, + "startColumn": 4, + "startOffset": 5583, + "endColumn": 71, + "endOffset": 5650 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 68, + "startColumn": 4, + "startOffset": 4627, + "endColumn": 71, + "endOffset": 4694 + } + } + }, + { + "to": { + "startLine": 84, + "startColumn": 4, + "startOffset": 5655, + "endColumn": 72, + "endOffset": 5723 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 69, + "startColumn": 4, + "startOffset": 4699, + "endColumn": 72, + "endOffset": 4767 + } + } + }, + { + "to": { + "startLine": 85, + "startColumn": 4, + "startOffset": 5728, + "endColumn": 69, + "endOffset": 5793 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 70, + "startColumn": 4, + "startOffset": 4772, + "endColumn": 69, + "endOffset": 4837 + } + } + }, + { + "to": { + "startLine": 86, + "startColumn": 4, + "startOffset": 5798, + "endColumn": 70, + "endOffset": 5864 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 71, + "startColumn": 4, + "startOffset": 4842, + "endColumn": 70, + "endOffset": 4908 + } + } + }, + { + "to": { + "startLine": 141, + "startColumn": 4, + "startOffset": 32500, + "endColumn": 68, + "endOffset": 32564 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 101, + "startColumn": 4, + "startOffset": 21248, + "endColumn": 68, + "endOffset": 21312 + } + } + }, + { + "to": { + "startLine": 142, + "startColumn": 4, + "startOffset": 32569, + "endColumn": 69, + "endOffset": 32634 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 102, + "startColumn": 4, + "startOffset": 21317, + "endColumn": 69, + "endOffset": 21382 + } + } + }, + { + "to": { + "startLine": 143, + "startColumn": 4, + "startOffset": 32639, + "endColumn": 73, + "endOffset": 32708 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 103, + "startColumn": 4, + "startOffset": 21387, + "endColumn": 73, + "endOffset": 21456 + } + } + }, + { + "to": { + "startLine": 144, + "startColumn": 4, + "startOffset": 32713, + "endColumn": 75, + "endOffset": 32784 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 104, + "startColumn": 4, + "startOffset": 21461, + "endColumn": 75, + "endOffset": 21532 + } + } + }, + { + "to": { + "startLine": 145, + "startColumn": 4, + "startOffset": 32789, + "endColumn": 76, + "endOffset": 32861 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 105, + "startColumn": 4, + "startOffset": 21537, + "endColumn": 76, + "endOffset": 21609 + } + } + }, + { + "to": { + "startLine": 146, + "startColumn": 4, + "startOffset": 32866, + "endColumn": 75, + "endOffset": 32937 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 106, + "startColumn": 4, + "startOffset": 21614, + "endColumn": 75, + "endOffset": 21685 + } + } + }, + { + "to": { + "startLine": 147, + "startColumn": 4, + "startOffset": 32942, + "endColumn": 76, + "endOffset": 33014 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 107, + "startColumn": 4, + "startOffset": 21690, + "endColumn": 76, + "endOffset": 21762 + } + } + }, + { + "to": { + "startLine": 148, + "startColumn": 4, + "startOffset": 33019, + "endColumn": 63, + "endOffset": 33078 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 108, + "startColumn": 4, + "startOffset": 21767, + "endColumn": 63, + "endOffset": 21826 + } + } + }, + { + "to": { + "startLine": 149, + "startColumn": 4, + "startOffset": 33083, + "endColumn": 64, + "endOffset": 33143 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 109, + "startColumn": 4, + "startOffset": 21831, + "endColumn": 64, + "endOffset": 21891 + } + } + }, + { + "to": { + "startLine": 150, + "startColumn": 4, + "startOffset": 33148, + "endColumn": 68, + "endOffset": 33212 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 110, + "startColumn": 4, + "startOffset": 21896, + "endColumn": 68, + "endOffset": 21960 + } + } + }, + { + "to": { + "startLine": 151, + "startColumn": 4, + "startOffset": 33217, + "endColumn": 76, + "endOffset": 33289 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 111, + "startColumn": 4, + "startOffset": 21965, + "endColumn": 76, + "endOffset": 22037 + } + } + }, + { + "to": { + "startLine": 152, + "startColumn": 4, + "startOffset": 33294, + "endColumn": 74, + "endOffset": 33364 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 112, + "startColumn": 4, + "startOffset": 22042, + "endColumn": 74, + "endOffset": 22112 + } + } + }, + { + "to": { + "startLine": 153, + "startColumn": 4, + "startOffset": 33369, + "endColumn": 68, + "endOffset": 33433 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 113, + "startColumn": 4, + "startOffset": 22117, + "endColumn": 68, + "endOffset": 22181 + } + } + }, + { + "to": { + "startLine": 154, + "startColumn": 4, + "startOffset": 33438, + "endColumn": 67, + "endOffset": 33501 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 114, + "startColumn": 4, + "startOffset": 22186, + "endColumn": 67, + "endOffset": 22249 + } + } + }, + { + "to": { + "startLine": 155, + "startColumn": 4, + "startOffset": 33506, + "endColumn": 76, + "endOffset": 33578 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 115, + "startColumn": 4, + "startOffset": 22254, + "endColumn": 76, + "endOffset": 22326 + } + } + }, + { + "to": { + "startLine": 156, + "startColumn": 4, + "startOffset": 33583, + "endColumn": 65, + "endOffset": 33644 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 116, + "startColumn": 4, + "startOffset": 22331, + "endColumn": 65, + "endOffset": 22392 + } + } + }, + { + "to": { + "startLine": 157, + "startColumn": 4, + "startOffset": 33649, + "endColumn": 96, + "endOffset": 33741 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 117, + "startColumn": 4, + "startOffset": 22397, + "endColumn": 96, + "endOffset": 22489 + } + } + }, + { + "to": { + "startLine": 158, + "startColumn": 4, + "startOffset": 33746, + "endColumn": 64, + "endOffset": 33806 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 118, + "startColumn": 4, + "startOffset": 22494, + "endColumn": 64, + "endOffset": 22554 + } + } + }, + { + "to": { + "startLine": 159, + "startColumn": 4, + "startOffset": 33811, + "endColumn": 68, + "endOffset": 33875 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 119, + "startColumn": 4, + "startOffset": 22559, + "endColumn": 68, + "endOffset": 22623 + } + } + }, + { + "to": { + "startLine": 160, + "startColumn": 4, + "startOffset": 33880, + "endColumn": 98, + "endOffset": 33974 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 120, + "startColumn": 4, + "startOffset": 22628, + "endColumn": 98, + "endOffset": 22722 + } + } + }, + { + "to": { + "startLine": 161, + "startColumn": 4, + "startOffset": 33979, + "endColumn": 58, + "endOffset": 34033 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 121, + "startColumn": 4, + "startOffset": 22727, + "endColumn": 58, + "endOffset": 22781 + } + } + }, + { + "to": { + "startLine": 162, + "startColumn": 4, + "startOffset": 34038, + "endColumn": 57, + "endOffset": 34091 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 122, + "startColumn": 4, + "startOffset": 22786, + "endColumn": 57, + "endOffset": 22839 + } + } + }, + { + "to": { + "startLine": 163, + "startColumn": 4, + "startOffset": 34096, + "endColumn": 56, + "endOffset": 34148 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 123, + "startColumn": 4, + "startOffset": 22844, + "endColumn": 56, + "endOffset": 22896 + } + } + }, + { + "to": { + "startLine": 164, + "startColumn": 4, + "startOffset": 34153, + "endColumn": 58, + "endOffset": 34207 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 124, + "startColumn": 4, + "startOffset": 22901, + "endColumn": 58, + "endOffset": 22955 + } + } + }, + { + "to": { + "startLine": 165, + "startColumn": 4, + "startOffset": 34212, + "endColumn": 70, + "endOffset": 34278 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 125, + "startColumn": 4, + "startOffset": 22960, + "endColumn": 70, + "endOffset": 23026 + } + } + }, + { + "to": { + "startLine": 166, + "startColumn": 4, + "startOffset": 34283, + "endColumn": 71, + "endOffset": 34350 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 126, + "startColumn": 4, + "startOffset": 23031, + "endColumn": 71, + "endOffset": 23098 + } + } + }, + { + "to": { + "startLine": 167, + "startColumn": 4, + "startOffset": 34355, + "endColumn": 71, + "endOffset": 34422 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 127, + "startColumn": 4, + "startOffset": 23103, + "endColumn": 71, + "endOffset": 23170 + } + } + }, + { + "to": { + "startLine": 168, + "startColumn": 4, + "startOffset": 34427, + "endColumn": 71, + "endOffset": 34494 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 128, + "startColumn": 4, + "startOffset": 23175, + "endColumn": 71, + "endOffset": 23242 + } + } + }, + { + "to": { + "startLine": 169, + "startColumn": 4, + "startOffset": 34499, + "endColumn": 71, + "endOffset": 34566 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 129, + "startColumn": 4, + "startOffset": 23247, + "endColumn": 71, + "endOffset": 23314 + } + } + }, + { + "to": { + "startLine": 170, + "startColumn": 4, + "startOffset": 34571, + "endColumn": 67, + "endOffset": 34634 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 130, + "startColumn": 4, + "startOffset": 23319, + "endColumn": 67, + "endOffset": 23382 + } + } + }, + { + "to": { + "startLine": 171, + "startColumn": 4, + "startOffset": 34639, + "endColumn": 67, + "endOffset": 34702 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 131, + "startColumn": 4, + "startOffset": 23387, + "endColumn": 67, + "endOffset": 23450 + } + } + }, + { + "to": { + "startLine": 172, + "startColumn": 4, + "startOffset": 34707, + "endColumn": 58, + "endOffset": 34761 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 132, + "startColumn": 4, + "startOffset": 23455, + "endColumn": 58, + "endOffset": 23509 + } + } + }, + { + "to": { + "startLine": 173, + "startColumn": 4, + "startOffset": 34766, + "endColumn": 62, + "endOffset": 34824 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 133, + "startColumn": 4, + "startOffset": 23514, + "endColumn": 62, + "endOffset": 23572 + } + } + }, + { + "to": { + "startLine": 174, + "startColumn": 4, + "startOffset": 34829, + "endColumn": 89, + "endOffset": 34914 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 134, + "startColumn": 4, + "startOffset": 23577, + "endColumn": 89, + "endOffset": 23662 + } + } + }, + { + "to": { + "startLine": 175, + "startColumn": 4, + "startOffset": 34919, + "endColumn": 90, + "endOffset": 35005 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 135, + "startColumn": 4, + "startOffset": 23667, + "endColumn": 90, + "endOffset": 23753 + } + } + }, + { + "to": { + "startLine": 176, + "startColumn": 4, + "startOffset": 35010, + "endColumn": 59, + "endOffset": 35065 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 136, + "startColumn": 4, + "startOffset": 23758, + "endColumn": 59, + "endOffset": 23813 + } + } + }, + { + "to": { + "startLine": 177, + "startColumn": 4, + "startOffset": 35070, + "endColumn": 65, + "endOffset": 35131 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 137, + "startColumn": 4, + "startOffset": 23818, + "endColumn": 65, + "endOffset": 23879 + } + } + }, + { + "to": { + "startLine": 178, + "startColumn": 4, + "startOffset": 35136, + "endColumn": 66, + "endOffset": 35198 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 138, + "startColumn": 4, + "startOffset": 23884, + "endColumn": 66, + "endOffset": 23946 + } + } + }, + { + "to": { + "startLine": 179, + "startColumn": 4, + "startOffset": 35203, + "endColumn": 65, + "endOffset": 35264 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 139, + "startColumn": 4, + "startOffset": 23951, + "endColumn": 65, + "endOffset": 24012 + } + } + }, + { + "to": { + "startLine": 180, + "startColumn": 4, + "startOffset": 35269, + "endColumn": 69, + "endOffset": 35334 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 140, + "startColumn": 4, + "startOffset": 24017, + "endColumn": 69, + "endOffset": 24082 + } + } + }, + { + "to": { + "startLine": 181, + "startColumn": 4, + "startOffset": 35339, + "endColumn": 63, + "endOffset": 35398 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 141, + "startColumn": 4, + "startOffset": 24087, + "endColumn": 63, + "endOffset": 24146 + } + } + }, + { + "to": { + "startLine": 182, + "startColumn": 4, + "startOffset": 35403, + "endColumn": 52, + "endOffset": 35451 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 142, + "startColumn": 4, + "startOffset": 24151, + "endColumn": 52, + "endOffset": 24199 + } + } + }, + { + "to": { + "startLine": 183, + "startColumn": 4, + "startOffset": 35456, + "endColumn": 112, + "endOffset": 35564 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 143, + "startColumn": 4, + "startOffset": 24204, + "endColumn": 112, + "endOffset": 24312 + } + } + }, + { + "to": { + "startLine": 184, + "startColumn": 4, + "startOffset": 35569, + "endColumn": 57, + "endOffset": 35622 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 144, + "startColumn": 4, + "startOffset": 24317, + "endColumn": 57, + "endOffset": 24370 + } + } + }, + { + "to": { + "startLine": 185, + "startColumn": 4, + "startOffset": 35627, + "endColumn": 64, + "endOffset": 35687 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 145, + "startColumn": 4, + "startOffset": 24375, + "endColumn": 64, + "endOffset": 24435 + } + } + }, + { + "to": { + "startLine": 186, + "startColumn": 4, + "startOffset": 35692, + "endColumn": 63, + "endOffset": 35751 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 146, + "startColumn": 4, + "startOffset": 24440, + "endColumn": 63, + "endOffset": 24499 + } + } + }, + { + "to": { + "startLine": 187, + "startColumn": 4, + "startOffset": 35756, + "endColumn": 74, + "endOffset": 35826 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 147, + "startColumn": 4, + "startOffset": 24504, + "endColumn": 74, + "endOffset": 24574 + } + } + }, + { + "to": { + "startLine": 188, + "startColumn": 4, + "startOffset": 35831, + "endColumn": 72, + "endOffset": 35899 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 148, + "startColumn": 4, + "startOffset": 24579, + "endColumn": 72, + "endOffset": 24647 + } + } + }, + { + "to": { + "startLine": 189, + "startColumn": 4, + "startOffset": 35904, + "endColumn": 71, + "endOffset": 35971 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 149, + "startColumn": 4, + "startOffset": 24652, + "endColumn": 71, + "endOffset": 24719 + } + } + }, + { + "to": { + "startLine": 190, + "startColumn": 4, + "startOffset": 35976, + "endColumn": 48, + "endOffset": 36020 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 150, + "startColumn": 4, + "startOffset": 24724, + "endColumn": 48, + "endOffset": 24768 + } + } + }, + { + "to": { + "startLine": 191, + "startColumn": 4, + "startOffset": 36025, + "endColumn": 60, + "endOffset": 36081 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 151, + "startColumn": 4, + "startOffset": 24773, + "endColumn": 60, + "endOffset": 24829 + } + } + }, + { + "to": { + "startLine": 192, + "startColumn": 4, + "startOffset": 36086, + "endColumn": 60, + "endOffset": 36142 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 152, + "startColumn": 4, + "startOffset": 24834, + "endColumn": 60, + "endOffset": 24890 + } + } + }, + { + "to": { + "startLine": 193, + "startColumn": 4, + "startOffset": 36147, + "endColumn": 60, + "endOffset": 36203 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 153, + "startColumn": 4, + "startOffset": 24895, + "endColumn": 60, + "endOffset": 24951 + } + } + }, + { + "to": { + "startLine": 194, + "startColumn": 4, + "startOffset": 36208, + "endColumn": 61, + "endOffset": 36265 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 154, + "startColumn": 4, + "startOffset": 24956, + "endColumn": 61, + "endOffset": 25013 + } + } + }, + { + "to": { + "startLine": 195, + "startColumn": 4, + "startOffset": 36270, + "endColumn": 63, + "endOffset": 36329 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 155, + "startColumn": 4, + "startOffset": 25018, + "endColumn": 63, + "endOffset": 25077 + } + } + }, + { + "to": { + "startLine": 196, + "startColumn": 4, + "startOffset": 36334, + "endColumn": 63, + "endOffset": 36393 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 156, + "startColumn": 4, + "startOffset": 25082, + "endColumn": 63, + "endOffset": 25141 + } + } + }, + { + "to": { + "startLine": 197, + "startColumn": 4, + "startOffset": 36398, + "endColumn": 63, + "endOffset": 36457 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 157, + "startColumn": 4, + "startOffset": 25146, + "endColumn": 63, + "endOffset": 25205 + } + } + }, + { + "to": { + "startLine": 198, + "startColumn": 4, + "startOffset": 36462, + "endColumn": 64, + "endOffset": 36522 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 158, + "startColumn": 4, + "startOffset": 25210, + "endColumn": 64, + "endOffset": 25270 + } + } + }, + { + "to": { + "startLine": 199, + "startColumn": 4, + "startOffset": 36527, + "endColumn": 62, + "endOffset": 36585 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 159, + "startColumn": 4, + "startOffset": 25275, + "endColumn": 62, + "endOffset": 25333 + } + } + }, + { + "to": { + "startLine": 200, + "startColumn": 4, + "startOffset": 36590, + "endColumn": 59, + "endOffset": 36645 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 160, + "startColumn": 4, + "startOffset": 25338, + "endColumn": 59, + "endOffset": 25393 + } + } + }, + { + "to": { + "startLine": 201, + "startColumn": 4, + "startOffset": 36650, + "endColumn": 60, + "endOffset": 36706 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 161, + "startColumn": 4, + "startOffset": 25398, + "endColumn": 60, + "endOffset": 25454 + } + } + }, + { + "to": { + "startLine": 202, + "startColumn": 4, + "startOffset": 36711, + "endColumn": 58, + "endOffset": 36765 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 162, + "startColumn": 4, + "startOffset": 25459, + "endColumn": 58, + "endOffset": 25513 + } + } + }, + { + "to": { + "startLine": 203, + "startColumn": 4, + "startOffset": 36770, + "endColumn": 59, + "endOffset": 36825 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 163, + "startColumn": 4, + "startOffset": 25518, + "endColumn": 59, + "endOffset": 25573 + } + } + }, + { + "to": { + "startLine": 204, + "startColumn": 4, + "startOffset": 36830, + "endColumn": 61, + "endOffset": 36887 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 164, + "startColumn": 4, + "startOffset": 25578, + "endColumn": 61, + "endOffset": 25635 + } + } + }, + { + "to": { + "startLine": 205, + "startColumn": 4, + "startOffset": 36892, + "endColumn": 70, + "endOffset": 36958 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 165, + "startColumn": 4, + "startOffset": 25640, + "endColumn": 70, + "endOffset": 25706 + } + } + }, + { + "to": { + "startLine": 206, + "startColumn": 4, + "startOffset": 36963, + "endColumn": 59, + "endOffset": 37018 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 166, + "startColumn": 4, + "startOffset": 25711, + "endColumn": 59, + "endOffset": 25766 + } + } + }, + { + "to": { + "startLine": 207, + "startColumn": 4, + "startOffset": 37023, + "endColumn": 67, + "endOffset": 37086 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 167, + "startColumn": 4, + "startOffset": 25771, + "endColumn": 67, + "endOffset": 25834 + } + } + }, + { + "to": { + "startLine": 208, + "startColumn": 4, + "startOffset": 37091, + "endColumn": 57, + "endOffset": 37144 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values/dimens.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 269, + "endColumn": 57, + "endOffset": 322 + } + } + }, + { + "to": { + "startLine": 209, + "startColumn": 4, + "startOffset": 37149, + "endColumn": 55, + "endOffset": 37200 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values/dimens.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 327, + "endColumn": 55, + "endOffset": 378 + } + } + }, + { + "to": { + "startLine": 210, + "startColumn": 4, + "startOffset": 37205, + "endColumn": 53, + "endOffset": 37254 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 7616, + "endColumn": 53, + "endOffset": 7665 + } + } + }, + { + "to": { + "startLine": 211, + "startColumn": 4, + "startOffset": 37259, + "endColumn": 66, + "endOffset": 37321 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 30, + "startColumn": 4, + "startOffset": 7670, + "endColumn": 66, + "endOffset": 7732 + } + } + }, + { + "to": { + "startLine": 212, + "startColumn": 4, + "startOffset": 37326, + "endColumn": 69, + "endOffset": 37391 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 31, + "startColumn": 4, + "startOffset": 7737, + "endColumn": 69, + "endOffset": 7802 + } + } + }, + { + "to": { + "startLine": 213, + "startColumn": 4, + "startOffset": 37396, + "endColumn": 55, + "endOffset": 37447 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 32, + "startColumn": 4, + "startOffset": 7807, + "endColumn": 55, + "endOffset": 7858 + } + } + }, + { + "to": { + "startLine": 214, + "startColumn": 4, + "startOffset": 37452, + "endColumn": 50, + "endOffset": 37498 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 33, + "startColumn": 4, + "startOffset": 7863, + "endColumn": 50, + "endOffset": 7909 + } + } + }, + { + "to": { + "startLine": 215, + "startColumn": 4, + "startOffset": 37503, + "endColumn": 52, + "endOffset": 37551 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 34, + "startColumn": 4, + "startOffset": 7914, + "endColumn": 52, + "endOffset": 7962 + } + } + }, + { + "to": { + "startLine": 216, + "startColumn": 4, + "startOffset": 37556, + "endColumn": 51, + "endOffset": 37603 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 35, + "startColumn": 4, + "startOffset": 7967, + "endColumn": 51, + "endOffset": 8014 + } + } + }, + { + "to": { + "startLine": 217, + "startColumn": 4, + "startOffset": 37608, + "endColumn": 53, + "endOffset": 37657 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 36, + "startColumn": 4, + "startOffset": 8019, + "endColumn": 53, + "endOffset": 8068 + } + } + }, + { + "to": { + "startLine": 218, + "startColumn": 4, + "startOffset": 37662, + "endColumn": 62, + "endOffset": 37720 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 37, + "startColumn": 4, + "startOffset": 8073, + "endColumn": 62, + "endOffset": 8131 + } + } + }, + { + "to": { + "startLine": 219, + "startColumn": 4, + "startOffset": 37725, + "endColumn": 58, + "endOffset": 37779 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 38, + "startColumn": 4, + "startOffset": 8136, + "endColumn": 58, + "endOffset": 8190 + } + } + }, + { + "to": { + "startLine": 220, + "startColumn": 4, + "startOffset": 37784, + "endColumn": 61, + "endOffset": 37841 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 39, + "startColumn": 4, + "startOffset": 8195, + "endColumn": 61, + "endOffset": 8252 + } + } + }, + { + "to": { + "startLine": 221, + "startColumn": 4, + "startOffset": 37846, + "endColumn": 58, + "endOffset": 37900 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 40, + "startColumn": 4, + "startOffset": 8257, + "endColumn": 58, + "endOffset": 8311 + } + } + }, + { + "to": { + "startLine": 222, + "startColumn": 4, + "startOffset": 37905, + "endColumn": 59, + "endOffset": 37960 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 41, + "startColumn": 4, + "startOffset": 8316, + "endColumn": 59, + "endOffset": 8371 + } + } + }, + { + "to": { + "startLine": 223, + "startColumn": 4, + "startOffset": 37965, + "endColumn": 62, + "endOffset": 38023 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 42, + "startColumn": 4, + "startOffset": 8376, + "endColumn": 62, + "endOffset": 8434 + } + } + }, + { + "to": { + "startLine": 224, + "startColumn": 4, + "startOffset": 38028, + "endColumn": 74, + "endOffset": 38098 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 43, + "startColumn": 4, + "startOffset": 8439, + "endColumn": 74, + "endOffset": 8509 + } + } + }, + { + "to": { + "startLine": 225, + "startColumn": 4, + "startOffset": 38103, + "endColumn": 71, + "endOffset": 38170 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 44, + "startColumn": 4, + "startOffset": 8514, + "endColumn": 71, + "endOffset": 8581 + } + } + }, + { + "to": { + "startLine": 226, + "startColumn": 4, + "startOffset": 38175, + "endColumn": 70, + "endOffset": 38241 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 45, + "startColumn": 4, + "startOffset": 8586, + "endColumn": 70, + "endOffset": 8652 + } + } + }, + { + "to": { + "startLine": 227, + "startColumn": 4, + "startOffset": 38246, + "endColumn": 55, + "endOffset": 38297 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 46, + "startColumn": 4, + "startOffset": 8657, + "endColumn": 55, + "endOffset": 8708 + } + } + }, + { + "to": { + "startLine": 228, + "startColumn": 4, + "startOffset": 38302, + "endColumn": 70, + "endOffset": 38368 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 47, + "startColumn": 4, + "startOffset": 8713, + "endColumn": 70, + "endOffset": 8779 + } + } + }, + { + "to": { + "startLine": 229, + "startColumn": 4, + "startOffset": 38373, + "endColumn": 56, + "endOffset": 38425 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 48, + "startColumn": 4, + "startOffset": 8784, + "endColumn": 56, + "endOffset": 8836 + } + } + }, + { + "to": { + "startLine": 230, + "startColumn": 4, + "startOffset": 38430, + "endColumn": 56, + "endOffset": 38482 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 49, + "startColumn": 4, + "startOffset": 8841, + "endColumn": 56, + "endOffset": 8893 + } + } + }, + { + "to": { + "startLine": 231, + "startColumn": 4, + "startOffset": 38487, + "endColumn": 65, + "endOffset": 38548 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 50, + "startColumn": 4, + "startOffset": 8898, + "endColumn": 65, + "endOffset": 8959 + } + } + }, + { + "to": { + "startLine": 232, + "startColumn": 4, + "startOffset": 38553, + "endColumn": 63, + "endOffset": 38612 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 51, + "startColumn": 4, + "startOffset": 8964, + "endColumn": 63, + "endOffset": 9023 + } + } + }, + { + "to": { + "startLine": 233, + "startColumn": 4, + "startOffset": 38617, + "endColumn": 70, + "endOffset": 38683 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 52, + "startColumn": 4, + "startOffset": 9028, + "endColumn": 70, + "endOffset": 9094 + } + } + }, + { + "to": { + "startLine": 234, + "startColumn": 4, + "startOffset": 38688, + "endColumn": 56, + "endOffset": 38740 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 53, + "startColumn": 4, + "startOffset": 9099, + "endColumn": 56, + "endOffset": 9151 + } + } + }, + { + "to": { + "startLine": 235, + "startColumn": 4, + "startOffset": 38745, + "endColumn": 52, + "endOffset": 38793 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 54, + "startColumn": 4, + "startOffset": 9156, + "endColumn": 52, + "endOffset": 9204 + } + } + }, + { + "to": { + "startLine": 236, + "startColumn": 4, + "startOffset": 38798, + "endColumn": 62, + "endOffset": 38856 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 55, + "startColumn": 4, + "startOffset": 9209, + "endColumn": 62, + "endOffset": 9267 + } + } + }, + { + "to": { + "startLine": 237, + "startColumn": 4, + "startOffset": 38861, + "endColumn": 51, + "endOffset": 38908 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 56, + "startColumn": 4, + "startOffset": 9272, + "endColumn": 51, + "endOffset": 9319 + } + } + }, + { + "to": { + "startLine": 238, + "startColumn": 4, + "startOffset": 38913, + "endColumn": 57, + "endOffset": 38966 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 57, + "startColumn": 4, + "startOffset": 9324, + "endColumn": 57, + "endOffset": 9377 + } + } + }, + { + "to": { + "startLine": 239, + "startColumn": 4, + "startOffset": 38971, + "endColumn": 85, + "endOffset": 39052 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 168, + "startColumn": 4, + "startOffset": 25839, + "endColumn": 85, + "endOffset": 25920 + } + } + }, + { + "to": { + "startLine": 240, + "startColumn": 4, + "startOffset": 39057, + "endColumn": 86, + "endOffset": 39139 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 169, + "startColumn": 4, + "startOffset": 25925, + "endColumn": 86, + "endOffset": 26007 + } + } + }, + { + "to": { + "startLine": 241, + "startColumn": 4, + "startOffset": 39144, + "endColumn": 41, + "endOffset": 39181 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values/dimens.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 383, + "endColumn": 41, + "endOffset": 420 + } + } + }, + { + "to": { + "startLine": 242, + "startColumn": 4, + "startOffset": 39186, + "endColumn": 89, + "endOffset": 39271 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 170, + "startColumn": 4, + "startOffset": 26012, + "endColumn": 89, + "endOffset": 26097 + } + } + }, + { + "to": { + "startLine": 243, + "startColumn": 4, + "startOffset": 39276, + "endColumn": 86, + "endOffset": 39358 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 171, + "startColumn": 4, + "startOffset": 26102, + "endColumn": 86, + "endOffset": 26184 + } + } + }, + { + "to": { + "startLine": 244, + "startColumn": 4, + "startOffset": 39363, + "endColumn": 87, + "endOffset": 39446 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 172, + "startColumn": 4, + "startOffset": 26189, + "endColumn": 87, + "endOffset": 26272 + } + } + }, + { + "to": { + "startLine": 245, + "startColumn": 4, + "startOffset": 39451, + "endColumn": 74, + "endOffset": 39521 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/recyclerview-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 327, + "endColumn": 74, + "endOffset": 397 + } + } + }, + { + "to": { + "startLine": 246, + "startColumn": 4, + "startOffset": 39526, + "endColumn": 75, + "endOffset": 39597 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/recyclerview-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 402, + "endColumn": 75, + "endOffset": 473 + } + } + }, + { + "to": { + "startLine": 247, + "startColumn": 4, + "startOffset": 39602, + "endColumn": 71, + "endOffset": 39669 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/recyclerview-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 478, + "endColumn": 71, + "endOffset": 545 + } + } + }, + { + "to": { + "startLine": 248, + "startColumn": 4, + "startOffset": 39674, + "endColumn": 49, + "endOffset": 39719 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values/dimens.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 147, + "endColumn": 49, + "endOffset": 192 + } + } + }, + { + "to": { + "startLine": 249, + "startColumn": 4, + "startOffset": 39724, + "endColumn": 58, + "endOffset": 39778 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values/dimens.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 88, + "endColumn": 58, + "endOffset": 142 + } + } + }, + { + "to": { + "startLine": 250, + "startColumn": 4, + "startOffset": 39783, + "endColumn": 61, + "endOffset": 39840 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 173, + "startColumn": 4, + "startOffset": 26277, + "endColumn": 61, + "endOffset": 26334 + } + } + }, + { + "to": { + "startLine": 251, + "startColumn": 4, + "startOffset": 39845, + "endColumn": 60, + "endOffset": 39901 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 174, + "startColumn": 4, + "startOffset": 26339, + "endColumn": 60, + "endOffset": 26395 + } + } + }, + { + "to": { + "startLine": 252, + "startColumn": 4, + "startOffset": 39906, + "endColumn": 56, + "endOffset": 39958 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 175, + "startColumn": 4, + "startOffset": 26400, + "endColumn": 56, + "endOffset": 26452 + } + } + }, + { + "to": { + "startLine": 253, + "startColumn": 4, + "startOffset": 39963, + "endColumn": 87, + "endOffset": 40046 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values/drawables.xml", + "position": { + "startLine": 1, + "startColumn": 4, + "startOffset": 75, + "endColumn": 87, + "endOffset": 158 + } + } + }, + { + "to": { + "startLine": 254, + "startColumn": 4, + "startOffset": 40051, + "endColumn": 89, + "endOffset": 40136 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values/drawables.xml", + "position": { + "startLine": 2, + "startColumn": 4, + "startOffset": 163, + "endColumn": 89, + "endOffset": 248 + } + } + }, + { + "to": { + "startLine": 255, + "startColumn": 4, + "startOffset": 40141, + "endColumn": 87, + "endOffset": 40224 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values/drawables.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 347, + "endColumn": 87, + "endOffset": 430 + } + } + }, + { + "to": { + "startLine": 256, + "startColumn": 4, + "startOffset": 40229, + "endColumn": 83, + "endOffset": 40308 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values/drawables.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 521, + "endColumn": 83, + "endOffset": 600 + } + } + }, + { + "to": { + "startLine": 257, + "startColumn": 4, + "startOffset": 40313, + "endColumn": 85, + "endOffset": 40394 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values/drawables.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 435, + "endColumn": 85, + "endOffset": 516 + } + } + }, + { + "to": { + "startLine": 258, + "startColumn": 4, + "startOffset": 40399, + "endColumn": 93, + "endOffset": 40488 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values/drawables.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 253, + "endColumn": 93, + "endOffset": 342 + } + } + }, + { + "to": { + "startLine": 259, + "startColumn": 4, + "startOffset": 40493, + "endColumn": 71, + "endOffset": 40560 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 176, + "startColumn": 4, + "startOffset": 26457, + "endColumn": 71, + "endOffset": 26524 + } + } + }, + { + "to": { + "startLine": 260, + "startColumn": 4, + "startOffset": 40565, + "endColumn": 56, + "endOffset": 40617 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 177, + "startColumn": 4, + "startOffset": 26529, + "endColumn": 56, + "endOffset": 26581 + } + } + }, + { + "to": { + "startLine": 261, + "startColumn": 4, + "startOffset": 40622, + "endColumn": 47, + "endOffset": 40665 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 178, + "startColumn": 4, + "startOffset": 26586, + "endColumn": 47, + "endOffset": 26629 + } + } + }, + { + "to": { + "startLine": 262, + "startColumn": 4, + "startOffset": 40670, + "endColumn": 48, + "endOffset": 40714 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 179, + "startColumn": 4, + "startOffset": 26634, + "endColumn": 48, + "endOffset": 26678 + } + } + }, + { + "to": { + "startLine": 263, + "startColumn": 4, + "startOffset": 40719, + "endColumn": 50, + "endOffset": 40765 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 180, + "startColumn": 4, + "startOffset": 26683, + "endColumn": 50, + "endOffset": 26729 + } + } + }, + { + "to": { + "startLine": 264, + "startColumn": 4, + "startOffset": 40770, + "endColumn": 33, + "endOffset": 40799 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 181, + "startColumn": 4, + "startOffset": 26734, + "endColumn": 33, + "endOffset": 26763 + } + } + }, + { + "to": { + "startLine": 265, + "startColumn": 4, + "startOffset": 40804, + "endColumn": 65, + "endOffset": 40865 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/recyclerview-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 550, + "endColumn": 65, + "endOffset": 611 + } + } + }, + { + "to": { + "startLine": 266, + "startColumn": 4, + "startOffset": 40870, + "endColumn": 46, + "endOffset": 40912 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 182, + "startColumn": 4, + "startOffset": 26768, + "endColumn": 46, + "endOffset": 26810 + } + } + }, + { + "to": { + "startLine": 267, + "startColumn": 4, + "startOffset": 40917, + "endColumn": 48, + "endOffset": 40961 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 183, + "startColumn": 4, + "startOffset": 26815, + "endColumn": 48, + "endOffset": 26859 + } + } + }, + { + "to": { + "startLine": 268, + "startColumn": 4, + "startOffset": 40966, + "endColumn": 45, + "endOffset": 41007 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 184, + "startColumn": 4, + "startOffset": 26864, + "endColumn": 45, + "endOffset": 26905 + } + } + }, + { + "to": { + "startLine": 269, + "startColumn": 4, + "startOffset": 41012, + "endColumn": 31, + "endOffset": 41039 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 185, + "startColumn": 4, + "startOffset": 26910, + "endColumn": 31, + "endOffset": 26937 + } + } + }, + { + "to": { + "startLine": 270, + "startColumn": 4, + "startOffset": 41044, + "endColumn": 47, + "endOffset": 41087 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 58, + "startColumn": 4, + "startOffset": 9382, + "endColumn": 47, + "endOffset": 9425 + } + } + }, + { + "to": { + "startLine": 271, + "startColumn": 4, + "startOffset": 41092, + "endColumn": 63, + "endOffset": 41151 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 186, + "startColumn": 4, + "startOffset": 26942, + "endColumn": 63, + "endOffset": 27001 + } + } + }, + { + "to": { + "startLine": 272, + "startColumn": 4, + "startOffset": 41156, + "endColumn": 61, + "endOffset": 41213 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 187, + "startColumn": 4, + "startOffset": 27006, + "endColumn": 61, + "endOffset": 27063 + } + } + }, + { + "to": { + "startLine": 273, + "startColumn": 4, + "startOffset": 41218, + "endColumn": 54, + "endOffset": 41268 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 188, + "startColumn": 4, + "startOffset": 27068, + "endColumn": 54, + "endOffset": 27118 + } + } + }, + { + "to": { + "startLine": 274, + "startColumn": 4, + "startOffset": 41273, + "endColumn": 61, + "endOffset": 41330 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 59, + "startColumn": 4, + "startOffset": 9430, + "endColumn": 61, + "endOffset": 9487 + } + } + }, + { + "to": { + "startLine": 275, + "startColumn": 4, + "startOffset": 41335, + "endColumn": 59, + "endOffset": 41390 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 189, + "startColumn": 4, + "startOffset": 27123, + "endColumn": 59, + "endOffset": 27178 + } + } + }, + { + "to": { + "startLine": 276, + "startColumn": 4, + "startOffset": 41395, + "endColumn": 62, + "endOffset": 41453 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 60, + "startColumn": 4, + "startOffset": 9492, + "endColumn": 62, + "endOffset": 9550 + } + } + }, + { + "to": { + "startLine": 277, + "startColumn": 4, + "startOffset": 41458, + "endColumn": 69, + "endOffset": 41523 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 190, + "startColumn": 4, + "startOffset": 27183, + "endColumn": 69, + "endOffset": 27248 + } + } + }, + { + "to": { + "startLine": 278, + "startColumn": 4, + "startOffset": 41528, + "endColumn": 73, + "endOffset": 41597 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 191, + "startColumn": 4, + "startOffset": 27253, + "endColumn": 73, + "endOffset": 27322 + } + } + }, + { + "to": { + "startLine": 279, + "startColumn": 4, + "startOffset": 41602, + "endColumn": 77, + "endOffset": 41675 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 192, + "startColumn": 4, + "startOffset": 27327, + "endColumn": 77, + "endOffset": 27400 + } + } + }, + { + "to": { + "startLine": 280, + "startColumn": 4, + "startOffset": 41680, + "endColumn": 92, + "endOffset": 41768 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 193, + "startColumn": 4, + "startOffset": 27405, + "endColumn": 92, + "endOffset": 27493 + } + } + }, + { + "to": { + "startLine": 281, + "startColumn": 4, + "startOffset": 41773, + "endColumn": 69, + "endOffset": 41838 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 194, + "startColumn": 4, + "startOffset": 27498, + "endColumn": 69, + "endOffset": 27563 + } + } + }, + { + "to": { + "startLine": 282, + "startColumn": 4, + "startOffset": 41843, + "endColumn": 77, + "endOffset": 41916 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 195, + "startColumn": 4, + "startOffset": 27568, + "endColumn": 77, + "endOffset": 27641 + } + } + }, + { + "to": { + "startLine": 283, + "startColumn": 4, + "startOffset": 41921, + "endColumn": 53, + "endOffset": 41970 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 196, + "startColumn": 4, + "startOffset": 27646, + "endColumn": 53, + "endOffset": 27695 + } + } + }, + { + "to": { + "startLine": 284, + "startColumn": 4, + "startOffset": 41975, + "endColumn": 69, + "endOffset": 42040 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 197, + "startColumn": 4, + "startOffset": 27700, + "endColumn": 69, + "endOffset": 27765 + } + } + }, + { + "to": { + "startLine": 285, + "startColumn": 4, + "startOffset": 42045, + "endColumn": 84, + "endOffset": 42125 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 198, + "startColumn": 4, + "startOffset": 27770, + "endColumn": 84, + "endOffset": 27850 + } + } + }, + { + "to": { + "startLine": 286, + "startColumn": 4, + "startOffset": 42130, + "endColumn": 47, + "endOffset": 42173 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 199, + "startColumn": 4, + "startOffset": 27855, + "endColumn": 47, + "endOffset": 27898 + } + } + }, + { + "to": { + "startLine": 287, + "startColumn": 4, + "startOffset": 42178, + "endColumn": 45, + "endOffset": 42219 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 200, + "startColumn": 4, + "startOffset": 27903, + "endColumn": 45, + "endOffset": 27944 + } + } + }, + { + "to": { + "startLine": 288, + "startColumn": 4, + "startOffset": 42224, + "endColumn": 51, + "endOffset": 42271 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 201, + "startColumn": 4, + "startOffset": 27949, + "endColumn": 51, + "endOffset": 27996 + } + } + }, + { + "to": { + "startLine": 289, + "startColumn": 4, + "startOffset": 42276, + "endColumn": 72, + "endOffset": 42344 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 202, + "startColumn": 4, + "startOffset": 28001, + "endColumn": 72, + "endOffset": 28069 + } + } + }, + { + "to": { + "startLine": 290, + "startColumn": 4, + "startOffset": 42349, + "endColumn": 73, + "endOffset": 42418 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 203, + "startColumn": 4, + "startOffset": 28074, + "endColumn": 73, + "endOffset": 28143 + } + } + }, + { + "to": { + "startLine": 291, + "startColumn": 4, + "startOffset": 42423, + "endColumn": 68, + "endOffset": 42487 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 204, + "startColumn": 4, + "startOffset": 28148, + "endColumn": 68, + "endOffset": 28212 + } + } + }, + { + "to": { + "startLine": 292, + "startColumn": 4, + "startOffset": 42492, + "endColumn": 74, + "endOffset": 42562 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 205, + "startColumn": 4, + "startOffset": 28217, + "endColumn": 74, + "endOffset": 28287 + } + } + }, + { + "to": { + "startLine": 293, + "startColumn": 4, + "startOffset": 42567, + "endColumn": 73, + "endOffset": 42636 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 206, + "startColumn": 4, + "startOffset": 28292, + "endColumn": 73, + "endOffset": 28361 + } + } + }, + { + "to": { + "startLine": 294, + "startColumn": 4, + "startOffset": 42641, + "endColumn": 73, + "endOffset": 42710 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 207, + "startColumn": 4, + "startOffset": 28366, + "endColumn": 73, + "endOffset": 28435 + } + } + }, + { + "to": { + "startLine": 295, + "startColumn": 4, + "startOffset": 42715, + "endColumn": 88, + "endOffset": 42799 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 208, + "startColumn": 4, + "startOffset": 28440, + "endColumn": 88, + "endOffset": 28524 + } + } + }, + { + "to": { + "startLine": 296, + "startColumn": 4, + "startOffset": 42804, + "endColumn": 69, + "endOffset": 42869 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 209, + "startColumn": 4, + "startOffset": 28529, + "endColumn": 69, + "endOffset": 28594 + } + } + }, + { + "to": { + "startLine": 297, + "startColumn": 4, + "startOffset": 42874, + "endColumn": 51, + "endOffset": 42921 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values/strings.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 879, + "endColumn": 51, + "endOffset": 926 + } + } + }, + { + "to": { + "startLine": 298, + "startColumn": 4, + "startOffset": 42926, + "endColumn": 46, + "endOffset": 42968 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values/strings.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 832, + "endColumn": 46, + "endOffset": 874 + } + } + }, + { + "to": { + "startLine": 299, + "startColumn": 4, + "startOffset": 42973, + "endColumn": 48, + "endOffset": 43017 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values/strings.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 403, + "endColumn": 48, + "endOffset": 447 + } + } + }, + { + "to": { + "startLine": 300, + "startColumn": 4, + "startOffset": 43022, + "endColumn": 46, + "endOffset": 43064 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values/strings.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 356, + "endColumn": 46, + "endOffset": 398 + } + } + }, + { + "to": { + "startLine": 301, + "startColumn": 4, + "startOffset": 43069, + "endColumn": 42, + "endOffset": 43107 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values/strings.xml", + "position": { + "startLine": 64, + "startColumn": 4, + "startOffset": 4836, + "endColumn": 42, + "endOffset": 4874 + } + } + }, + { + "to": { + "startLine": 302, + "startColumn": 4, + "startOffset": 43112, + "endColumn": 58, + "endOffset": 43166 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values/strings.xml", + "position": { + "startLine": 50, + "startColumn": 4, + "startOffset": 3592, + "endColumn": 58, + "endOffset": 3646 + } + } + }, + { + "to": { + "startLine": 303, + "startColumn": 4, + "startOffset": 43171, + "endColumn": 48, + "endOffset": 43215 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values/strings.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 1100, + "endColumn": 48, + "endOffset": 1144 + } + } + }, + { + "to": { + "startLine": 304, + "startColumn": 4, + "startOffset": 43220, + "endColumn": 46, + "endOffset": 43262 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values/strings.xml", + "position": { + "startLine": 46, + "startColumn": 4, + "startOffset": 3286, + "endColumn": 46, + "endOffset": 3328 + } + } + }, + { + "to": { + "startLine": 305, + "startColumn": 4, + "startOffset": 43267, + "endColumn": 40, + "endOffset": 43303 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values/strings.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 627, + "endColumn": 40, + "endOffset": 663 + } + } + }, + { + "to": { + "startLine": 306, + "startColumn": 4, + "startOffset": 43308, + "endColumn": 42, + "endOffset": 43346 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values/strings.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 584, + "endColumn": 42, + "endOffset": 622 + } + } + }, + { + "to": { + "startLine": 307, + "startColumn": 4, + "startOffset": 43351, + "endColumn": 45, + "endOffset": 43392 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values/strings.xml", + "position": { + "startLine": 1, + "startColumn": 4, + "startOffset": 16, + "endColumn": 45, + "endOffset": 57 + } + } + }, + { + "to": { + "startLine": 308, + "startColumn": 4, + "startOffset": 43397, + "endColumn": 144, + "endOffset": 43537 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 61, + "startColumn": 4, + "startOffset": 9555, + "endColumn": 144, + "endOffset": 9695 + } + } + }, + { + "to": { + "startLine": 309, + "startColumn": 4, + "startOffset": 43542, + "endColumn": 148, + "endOffset": 43686 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values/strings.xml", + "position": { + "startLine": 47, + "startColumn": 4, + "startOffset": 3333, + "endColumn": 148, + "endOffset": 3477 + } + } + }, + { + "to": { + "startLine": 310, + "startColumn": 4, + "startOffset": 43691, + "endColumn": 51, + "endOffset": 43738 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values/strings.xml", + "position": { + "startLine": 26, + "startColumn": 4, + "startOffset": 1476, + "endColumn": 51, + "endOffset": 1523 + } + } + }, + { + "to": { + "startLine": 311, + "startColumn": 4, + "startOffset": 43743, + "endColumn": 63, + "endOffset": 43802 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values/strings.xml", + "position": { + "startLine": 34, + "startColumn": 4, + "startOffset": 2021, + "endColumn": 63, + "endOffset": 2080 + } + } + }, + { + "to": { + "startLine": 312, + "startColumn": 4, + "startOffset": 43807, + "endColumn": 137, + "endOffset": 43940 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values/strings.xml", + "position": { + "startLine": 35, + "startColumn": 4, + "startOffset": 2085, + "endColumn": 137, + "endOffset": 2218 + } + } + }, + { + "to": { + "startLine": 313, + "startColumn": 4, + "startOffset": 43945, + "endColumn": 57, + "endOffset": 43998 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values/strings.xml", + "position": { + "startLine": 33, + "startColumn": 4, + "startOffset": 1963, + "endColumn": 57, + "endOffset": 2016 + } + } + }, + { + "to": { + "startLine": 314, + "startColumn": 4, + "startOffset": 44003, + "endColumn": 79, + "endOffset": 44078 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values/strings.xml", + "position": { + "startLine": 59, + "startColumn": 4, + "startOffset": 4471, + "endColumn": 79, + "endOffset": 4546 + } + } + }, + { + "to": { + "startLine": 315, + "startColumn": 4, + "startOffset": 44083, + "endColumn": 120, + "endOffset": 44199 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 62, + "startColumn": 4, + "startOffset": 9700, + "endColumn": 120, + "endOffset": 9816 + } + } + }, + { + "to": { + "startLine": 316, + "startColumn": 4, + "startOffset": 44204, + "endColumn": 56, + "endOffset": 44256 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values/strings.xml", + "position": { + "startLine": 38, + "startColumn": 4, + "startOffset": 2536, + "endColumn": 56, + "endOffset": 2588 + } + } + }, + { + "to": { + "startLine": 317, + "startColumn": 4, + "startOffset": 44261, + "endColumn": 134, + "endOffset": 44391 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values/strings.xml", + "position": { + "startLine": 39, + "startColumn": 4, + "startOffset": 2593, + "endColumn": 134, + "endOffset": 2723 + } + } + }, + { + "to": { + "startLine": 318, + "startColumn": 4, + "startOffset": 44396, + "endColumn": 47, + "endOffset": 44439 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values/strings.xml", + "position": { + "startLine": 25, + "startColumn": 4, + "startOffset": 1420, + "endColumn": 55, + "endOffset": 1471 + } + } + }, + { + "to": { + "startLine": 319, + "startColumn": 4, + "startOffset": 44444, + "endColumn": 100, + "endOffset": 44540 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 118, + "endColumn": 100, + "endOffset": 214 + } + } + }, + { + "to": { + "startLine": 320, + "startColumn": 4, + "startOffset": 44545, + "endColumn": 110, + "endOffset": 44651 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 219, + "endColumn": 110, + "endOffset": 325 + } + } + }, + { + "to": { + "startLine": 321, + "startColumn": 4, + "startOffset": 44656, + "endColumn": 109, + "endOffset": 44761 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 5, + "startColumn": 4, + "startOffset": 330, + "endColumn": 109, + "endOffset": 435 + } + } + }, + { + "to": { + "startLine": 322, + "startColumn": 4, + "startOffset": 44766, + "endColumn": 113, + "endOffset": 44875 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 440, + "endColumn": 113, + "endOffset": 549 + } + } + }, + { + "to": { + "startLine": 323, + "startColumn": 4, + "startOffset": 44880, + "endColumn": 129, + "endOffset": 45005 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 554, + "endColumn": 129, + "endOffset": 679 + } + } + }, + { + "to": { + "startLine": 324, + "startColumn": 4, + "startOffset": 45010, + "endColumn": 134, + "endOffset": 45140 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 8, + "startColumn": 4, + "startOffset": 684, + "endColumn": 134, + "endOffset": 814 + } + } + }, + { + "to": { + "startLine": 325, + "startColumn": 4, + "startOffset": 45145, + "endColumn": 721, + "endOffset": 45862 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 9, + "startColumn": 4, + "startOffset": 819, + "endColumn": 721, + "endOffset": 1536 + } + } + }, + { + "to": { + "startLine": 326, + "startColumn": 4, + "startOffset": 45867, + "endColumn": 110, + "endOffset": 45973 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 1541, + "endColumn": 110, + "endOffset": 1647 + } + } + }, + { + "to": { + "startLine": 327, + "startColumn": 4, + "startOffset": 45978, + "endColumn": 102, + "endOffset": 46076 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 1652, + "endColumn": 102, + "endOffset": 1750 + } + } + }, + { + "to": { + "startLine": 328, + "startColumn": 4, + "startOffset": 46081, + "endColumn": 107, + "endOffset": 46184 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 12, + "startColumn": 4, + "startOffset": 1755, + "endColumn": 107, + "endOffset": 1858 + } + } + }, + { + "to": { + "startLine": 329, + "startColumn": 4, + "startOffset": 46189, + "endColumn": 112, + "endOffset": 46297 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 13, + "startColumn": 4, + "startOffset": 1863, + "endColumn": 112, + "endOffset": 1971 + } + } + }, + { + "to": { + "startLine": 330, + "startColumn": 4, + "startOffset": 46302, + "endColumn": 109, + "endOffset": 46407 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 1976, + "endColumn": 109, + "endOffset": 2081 + } + } + }, + { + "to": { + "startLine": 331, + "startColumn": 4, + "startOffset": 46412, + "endColumn": 114, + "endOffset": 46522 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 2086, + "endColumn": 114, + "endOffset": 2196 + } + } + }, + { + "to": { + "startLine": 332, + "startColumn": 4, + "startOffset": 46527, + "endColumn": 95, + "endOffset": 46618 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 16, + "startColumn": 4, + "startOffset": 2201, + "endColumn": 95, + "endOffset": 2292 + } + } + }, + { + "to": { + "startLine": 333, + "startColumn": 4, + "startOffset": 46623, + "endColumn": 131, + "endOffset": 46750 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 2297, + "endColumn": 131, + "endOffset": 2424 + } + } + }, + { + "to": { + "startLine": 334, + "startColumn": 4, + "startOffset": 46755, + "endColumn": 124, + "endOffset": 46875 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 2429, + "endColumn": 124, + "endOffset": 2549 + } + } + }, + { + "to": { + "startLine": 335, + "startColumn": 4, + "startOffset": 46880, + "endColumn": 98, + "endOffset": 46974 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 2554, + "endColumn": 98, + "endOffset": 2648 + } + } + }, + { + "to": { + "startLine": 336, + "startColumn": 4, + "startOffset": 46979, + "endColumn": 113, + "endOffset": 47088 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 20, + "startColumn": 4, + "startOffset": 2653, + "endColumn": 113, + "endOffset": 2762 + } + } + }, + { + "to": { + "startLine": 337, + "startColumn": 4, + "startOffset": 47093, + "endColumn": 104, + "endOffset": 47193 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 2767, + "endColumn": 104, + "endOffset": 2867 + } + } + }, + { + "to": { + "startLine": 338, + "startColumn": 4, + "startOffset": 47198, + "endColumn": 102, + "endOffset": 47296 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 2872, + "endColumn": 102, + "endOffset": 2970 + } + } + }, + { + "to": { + "startLine": 339, + "startColumn": 4, + "startOffset": 47301, + "endColumn": 86, + "endOffset": 47383 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 63, + "startColumn": 4, + "startOffset": 9821, + "endColumn": 86, + "endOffset": 9903 + } + } + }, + { + "to": { + "startLine": 340, + "startColumn": 4, + "startOffset": 47388, + "endColumn": 48, + "endOffset": 47432 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values/strings.xml", + "position": { + "startLine": 24, + "startColumn": 4, + "startOffset": 1371, + "endColumn": 48, + "endOffset": 1415 + } + } + }, + { + "to": { + "startLine": 341, + "startColumn": 4, + "startOffset": 47437, + "endColumn": 99, + "endOffset": 47532 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values/strings.xml", + "position": { + "startLine": 14, + "startColumn": 4, + "startOffset": 668, + "endColumn": 99, + "endOffset": 763 + } + } + }, + { + "to": { + "startLine": 342, + "startColumn": 4, + "startOffset": 47537, + "endColumn": 81, + "endOffset": 47614 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values/strings.xml", + "position": { + "startLine": 11, + "startColumn": 4, + "startOffset": 502, + "endColumn": 81, + "endOffset": 579 + } + } + }, + { + "to": { + "startLine": 343, + "startColumn": 4, + "startOffset": 47619, + "endColumn": 102, + "endOffset": 47717 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values/strings.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 997, + "endColumn": 102, + "endOffset": 1095 + } + } + }, + { + "to": { + "startLine": 344, + "startColumn": 4, + "startOffset": 47722, + "endColumn": 49, + "endOffset": 47767 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values/strings.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 452, + "endColumn": 49, + "endOffset": 497 + } + } + }, + { + "to": { + "startLine": 345, + "startColumn": 4, + "startOffset": 47772, + "endColumn": 92, + "endOffset": 47860 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values/strings.xml", + "position": { + "startLine": 60, + "startColumn": 4, + "startOffset": 4551, + "endColumn": 92, + "endOffset": 4639 + } + } + }, + { + "to": { + "startLine": 346, + "startColumn": 4, + "startOffset": 47865, + "endColumn": 50, + "endOffset": 47911 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values/strings.xml", + "position": { + "startLine": 54, + "startColumn": 4, + "startOffset": 4075, + "endColumn": 50, + "endOffset": 4121 + } + } + }, + { + "to": { + "startLine": 347, + "startColumn": 4, + "startOffset": 47916, + "endColumn": 130, + "endOffset": 48042 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values/strings.xml", + "position": { + "startLine": 55, + "startColumn": 4, + "startOffset": 4126, + "endColumn": 130, + "endOffset": 4252 + } + } + }, + { + "to": { + "startLine": 348, + "startColumn": 4, + "startOffset": 48047, + "endColumn": 51, + "endOffset": 48094 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values/strings.xml", + "position": { + "startLine": 21, + "startColumn": 4, + "startOffset": 1149, + "endColumn": 51, + "endOffset": 1196 + } + } + }, + { + "to": { + "startLine": 349, + "startColumn": 4, + "startOffset": 48099, + "endColumn": 73, + "endOffset": 48168 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values/strings.xml", + "position": { + "startLine": 22, + "startColumn": 4, + "startOffset": 1201, + "endColumn": 73, + "endOffset": 1270 + } + } + }, + { + "to": { + "startLine": 350, + "startColumn": 4, + "startOffset": 48173, + "endColumn": 81, + "endOffset": 48250 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values/strings.xml", + "position": { + "startLine": 58, + "startColumn": 4, + "startOffset": 4389, + "endColumn": 81, + "endOffset": 4466 + } + } + }, + { + "to": { + "startLine": 351, + "startColumn": 4, + "startOffset": 48255, + "endColumn": 61, + "endOffset": 48312 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values/strings.xml", + "position": { + "startLine": 63, + "startColumn": 4, + "startOffset": 4774, + "endColumn": 61, + "endOffset": 4831 + } + } + }, + { + "to": { + "startLine": 352, + "startColumn": 4, + "startOffset": 48317, + "endColumn": 59, + "endOffset": 48372 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values/strings.xml", + "position": { + "startLine": 62, + "startColumn": 4, + "startOffset": 4714, + "endColumn": 59, + "endOffset": 4769 + } + } + }, + { + "to": { + "startLine": 353, + "startColumn": 4, + "startOffset": 48377, + "endColumn": 60, + "endOffset": 48433 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values/strings.xml", + "position": { + "startLine": 52, + "startColumn": 4, + "startOffset": 3816, + "endColumn": 60, + "endOffset": 3872 + } + } + }, + { + "to": { + "startLine": 354, + "startColumn": 4, + "startOffset": 48438, + "endColumn": 197, + "endOffset": 48631 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values/strings.xml", + "position": { + "startLine": 53, + "startColumn": 4, + "startOffset": 3877, + "endColumn": 197, + "endOffset": 4070 + } + } + }, + { + "to": { + "startLine": 355, + "startColumn": 4, + "startOffset": 48636, + "endColumn": 58, + "endOffset": 48690 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values/strings.xml", + "position": { + "startLine": 49, + "startColumn": 4, + "startOffset": 3533, + "endColumn": 58, + "endOffset": 3587 + } + } + }, + { + "to": { + "startLine": 356, + "startColumn": 4, + "startOffset": 48695, + "endColumn": 50, + "endOffset": 48741 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values/strings.xml", + "position": { + "startLine": 48, + "startColumn": 4, + "startOffset": 3482, + "endColumn": 50, + "endOffset": 3528 + } + } + }, + { + "to": { + "startLine": 357, + "startColumn": 4, + "startOffset": 48746, + "endColumn": 57, + "endOffset": 48799 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values/strings.xml", + "position": { + "startLine": 7, + "startColumn": 4, + "startOffset": 298, + "endColumn": 57, + "endOffset": 351 + } + } + }, + { + "to": { + "startLine": 358, + "startColumn": 4, + "startOffset": 48804, + "endColumn": 65, + "endOffset": 48865 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values/strings.xml", + "position": { + "startLine": 18, + "startColumn": 4, + "startOffset": 931, + "endColumn": 65, + "endOffset": 992 + } + } + }, + { + "to": { + "startLine": 359, + "startColumn": 4, + "startOffset": 48870, + "endColumn": 50, + "endOffset": 48916 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values/strings.xml", + "position": { + "startLine": 27, + "startColumn": 4, + "startOffset": 1528, + "endColumn": 50, + "endOffset": 1574 + } + } + }, + { + "to": { + "startLine": 360, + "startColumn": 4, + "startOffset": 48921, + "endColumn": 67, + "endOffset": 48984 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values/strings.xml", + "position": { + "startLine": 36, + "startColumn": 4, + "startOffset": 2223, + "endColumn": 67, + "endOffset": 2286 + } + } + }, + { + "to": { + "startLine": 361, + "startColumn": 4, + "startOffset": 48989, + "endColumn": 244, + "endOffset": 49229 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values/strings.xml", + "position": { + "startLine": 37, + "startColumn": 4, + "startOffset": 2291, + "endColumn": 244, + "endOffset": 2531 + } + } + }, + { + "to": { + "startLine": 362, + "startColumn": 4, + "startOffset": 49234, + "endColumn": 164, + "endOffset": 49394 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values/strings.xml", + "position": { + "startLine": 51, + "startColumn": 4, + "startOffset": 3651, + "endColumn": 164, + "endOffset": 3811 + } + } + }, + { + "to": { + "startLine": 363, + "startColumn": 4, + "startOffset": 49399, + "endColumn": 69, + "endOffset": 49464 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values/strings.xml", + "position": { + "startLine": 61, + "startColumn": 4, + "startOffset": 4644, + "endColumn": 69, + "endOffset": 4709 + } + } + }, + { + "to": { + "startLine": 364, + "startColumn": 4, + "startOffset": 49469, + "endColumn": 95, + "endOffset": 49560 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values/strings.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 1275, + "endColumn": 95, + "endOffset": 1366 + } + } + }, + { + "to": { + "startLine": 365, + "startColumn": 4, + "startOffset": 49565, + "endColumn": 53, + "endOffset": 49614 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values/strings.xml", + "position": { + "startLine": 42, + "startColumn": 4, + "startOffset": 2906, + "endColumn": 53, + "endOffset": 2955 + } + } + }, + { + "to": { + "startLine": 366, + "startColumn": 4, + "startOffset": 49619, + "endColumn": 74, + "endOffset": 49689 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values/strings.xml", + "position": { + "startLine": 43, + "startColumn": 4, + "startOffset": 2960, + "endColumn": 74, + "endOffset": 3030 + } + } + }, + { + "to": { + "startLine": 367, + "startColumn": 4, + "startOffset": 49694, + "endColumn": 45, + "endOffset": 49735 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values/strings.xml", + "position": { + "startLine": 32, + "startColumn": 4, + "startOffset": 1917, + "endColumn": 45, + "endOffset": 1958 + } + } + }, + { + "to": { + "startLine": 368, + "startColumn": 4, + "startOffset": 49740, + "endColumn": 52, + "endOffset": 49788 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values/strings.xml", + "position": { + "startLine": 28, + "startColumn": 4, + "startOffset": 1579, + "endColumn": 52, + "endOffset": 1627 + } + } + }, + { + "to": { + "startLine": 369, + "startColumn": 4, + "startOffset": 49793, + "endColumn": 137, + "endOffset": 49926 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values/strings.xml", + "position": { + "startLine": 30, + "startColumn": 4, + "startOffset": 1695, + "endColumn": 137, + "endOffset": 1828 + } + } + }, + { + "to": { + "startLine": 370, + "startColumn": 4, + "startOffset": 49931, + "endColumn": 83, + "endOffset": 50010 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values/strings.xml", + "position": { + "startLine": 31, + "startColumn": 4, + "startOffset": 1833, + "endColumn": 83, + "endOffset": 1912 + } + } + }, + { + "to": { + "startLine": 371, + "startColumn": 4, + "startOffset": 50015, + "endColumn": 62, + "endOffset": 50073 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values/strings.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 1632, + "endColumn": 62, + "endOffset": 1690 + } + } + }, + { + "to": { + "startLine": 372, + "startColumn": 4, + "startOffset": 50078, + "endColumn": 63, + "endOffset": 50137 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values/strings.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 768, + "endColumn": 63, + "endOffset": 827 + } + } + }, + { + "to": { + "startLine": 373, + "startColumn": 4, + "startOffset": 50142, + "endColumn": 192, + "endOffset": 50330 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values/strings.xml", + "position": { + "startLine": 45, + "startColumn": 4, + "startOffset": 3093, + "endColumn": 192, + "endOffset": 3281 + } + } + }, + { + "to": { + "startLine": 374, + "startColumn": 4, + "startOffset": 50335, + "endColumn": 57, + "endOffset": 50388 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values/strings.xml", + "position": { + "startLine": 44, + "startColumn": 4, + "startOffset": 3035, + "endColumn": 57, + "endOffset": 3088 + } + } + }, + { + "to": { + "startLine": 375, + "startColumn": 4, + "startOffset": 50393, + "endColumn": 70, + "endOffset": 50459 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 210, + "startColumn": 4, + "startOffset": 28599, + "endColumn": 70, + "endOffset": 28665 + } + } + }, + { + "to": { + "startLine": 376, + "startColumn": 4, + "startOffset": 50464, + "endColumn": 57, + "endOffset": 50517 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values/strings.xml", + "position": { + "startLine": 65, + "startColumn": 4, + "startOffset": 4879, + "endColumn": 57, + "endOffset": 4932 + } + } + }, + { + "to": { + "startLine": 377, + "startColumn": 4, + "startOffset": 50522, + "endColumn": 96, + "endOffset": 50614 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values/strings.xml", + "position": { + "startLine": 66, + "startColumn": 4, + "startOffset": 4937, + "endColumn": 96, + "endOffset": 5029 + } + } + }, + { + "to": { + "startLine": 378, + "startColumn": 4, + "startOffset": 50619, + "endColumn": 51, + "endOffset": 50666 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values/strings.xml", + "position": { + "startLine": 56, + "startColumn": 4, + "startOffset": 4257, + "endColumn": 51, + "endOffset": 4304 + } + } + }, + { + "to": { + "startLine": 379, + "startColumn": 4, + "startOffset": 50671, + "endColumn": 79, + "endOffset": 50746 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values/strings.xml", + "position": { + "startLine": 57, + "startColumn": 4, + "startOffset": 4309, + "endColumn": 79, + "endOffset": 4384 + } + } + }, + { + "to": { + "startLine": 380, + "startColumn": 4, + "startOffset": 50751, + "endColumn": 74, + "endOffset": 50821 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values/strings.xml", + "position": { + "startLine": 6, + "startColumn": 4, + "startOffset": 223, + "endColumn": 74, + "endOffset": 293 + } + } + }, + { + "to": { + "startLine": 381, + "startColumn": 4, + "startOffset": 50826, + "endColumn": 58, + "endOffset": 50880 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values/strings.xml", + "position": { + "startLine": 4, + "startColumn": 4, + "startOffset": 163, + "endColumn": 58, + "endOffset": 217 + } + } + }, + { + "to": { + "startLine": 382, + "startColumn": 4, + "startOffset": 50885, + "endColumn": 99, + "endOffset": 50980 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values/strings.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 63, + "endColumn": 99, + "endOffset": 158 + } + } + }, + { + "to": { + "startLine": 383, + "startColumn": 4, + "startOffset": 50985, + "endColumn": 56, + "endOffset": 51037 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values/strings.xml", + "position": { + "startLine": 40, + "startColumn": 4, + "startOffset": 2728, + "endColumn": 56, + "endOffset": 2780 + } + } + }, + { + "to": { + "startLine": 384, + "startColumn": 4, + "startOffset": 51042, + "endColumn": 120, + "endOffset": 51158 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values/strings.xml", + "position": { + "startLine": 41, + "startColumn": 4, + "startOffset": 2785, + "endColumn": 120, + "endOffset": 2901 + } + } + }, + { + "to": { + "startLine": 385, + "startColumn": 4, + "startOffset": 51163, + "endColumn": 77, + "endOffset": 51236 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 211, + "startColumn": 4, + "startOffset": 28670, + "endColumn": 77, + "endOffset": 28743 + } + } + }, + { + "to": { + "startLine": 386, + "startColumn": 4, + "startOffset": 51241, + "endColumn": 89, + "endOffset": 51326 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 212, + "startColumn": 4, + "startOffset": 28748, + "endColumn": 89, + "endOffset": 28833 + } + } + }, + { + "to": { + "startLine": 387, + "startColumn": 4, + "startOffset": 51331, + "endColumn": 87, + "endOffset": 51414 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 213, + "startColumn": 4, + "startOffset": 28838, + "endColumn": 87, + "endOffset": 28921 + } + } + }, + { + "to": { + "startLine": 388, + "startColumn": 4, + "startOffset": 51419, + "endColumn": 95, + "endOffset": 51510 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 214, + "startColumn": 4, + "startOffset": 28926, + "endColumn": 95, + "endOffset": 29017 + } + } + }, + { + "to": { + "startLine": 389, + "startColumn": 4, + "startOffset": 51515, + "endLine": 392, + "endColumn": 10, + "endOffset": 51758 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 23, + "startColumn": 4, + "startOffset": 2975, + "endLine": 26, + "endColumn": 10, + "endOffset": 3218 + } + } + }, + { + "to": { + "startLine": 393, + "startColumn": 4, + "startOffset": 51763, + "endLine": 396, + "endColumn": 12, + "endOffset": 52045 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 64, + "startColumn": 4, + "startOffset": 9908, + "endLine": 67, + "endColumn": 12, + "endOffset": 10190 + } + } + }, + { + "to": { + "startLine": 397, + "startColumn": 4, + "startOffset": 52050, + "endLine": 402, + "endColumn": 12, + "endOffset": 52394 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values/styles.xml", + "position": { + "startLine": 3, + "startColumn": 4, + "startOffset": 54, + "endLine": 8, + "endColumn": 12, + "endOffset": 398 + } + } + }, + { + "to": { + "startLine": 403, + "startColumn": 4, + "startOffset": 52399, + "endColumn": 89, + "endOffset": 52484 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values/styles.xml", + "position": { + "startLine": 15, + "startColumn": 4, + "startOffset": 555, + "endColumn": 90, + "endOffset": 641 + } + } + }, + { + "to": { + "startLine": 404, + "startColumn": 4, + "startOffset": 52489, + "endLine": 407, + "endColumn": 12, + "endOffset": 52634 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values/styles.xml", + "position": { + "startLine": 10, + "startColumn": 4, + "startOffset": 404, + "endLine": 13, + "endColumn": 12, + "endOffset": 549 + } + } + }, + { + "to": { + "startLine": 408, + "startColumn": 4, + "startOffset": 52639, + "endColumn": 79, + "endOffset": 52714 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values/styles.xml", + "position": { + "startLine": 17, + "startColumn": 4, + "startOffset": 647, + "endColumn": 80, + "endOffset": 723 + } + } + }, + { + "to": { + "startLine": 409, + "startColumn": 4, + "startOffset": 52719, + "endLine": 415, + "endColumn": 12, + "endOffset": 53215 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 215, + "startColumn": 4, + "startOffset": 29022, + "endLine": 221, + "endColumn": 12, + "endOffset": 29518 + } + } + }, + { + "to": { + "startLine": 416, + "startColumn": 4, + "startOffset": 53220, + "endColumn": 88, + "endOffset": 53304 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 222, + "startColumn": 4, + "startOffset": 29523, + "endColumn": 88, + "endOffset": 29607 + } + } + }, + { + "to": { + "startLine": 417, + "startColumn": 4, + "startOffset": 53309, + "endLine": 420, + "endColumn": 12, + "endOffset": 53551 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 223, + "startColumn": 4, + "startOffset": 29612, + "endLine": 226, + "endColumn": 12, + "endOffset": 29854 + } + } + }, + { + "to": { + "startLine": 421, + "startColumn": 4, + "startOffset": 53556, + "endLine": 424, + "endColumn": 12, + "endOffset": 53832 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 227, + "startColumn": 4, + "startOffset": 29859, + "endLine": 230, + "endColumn": 12, + "endOffset": 30135 + } + } + }, + { + "to": { + "startLine": 425, + "startColumn": 4, + "startOffset": 53837, + "endLine": 429, + "endColumn": 12, + "endOffset": 54117 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 231, + "startColumn": 4, + "startOffset": 30140, + "endLine": 235, + "endColumn": 12, + "endOffset": 30420 + } + } + }, + { + "to": { + "startLine": 430, + "startColumn": 4, + "startOffset": 54122, + "endLine": 435, + "endColumn": 12, + "endOffset": 54510 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 236, + "startColumn": 4, + "startOffset": 30425, + "endLine": 241, + "endColumn": 12, + "endOffset": 30813 + } + } + }, + { + "to": { + "startLine": 436, + "startColumn": 4, + "startOffset": 54515, + "endLine": 442, + "endColumn": 12, + "endOffset": 54987 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 242, + "startColumn": 4, + "startOffset": 30818, + "endLine": 248, + "endColumn": 12, + "endOffset": 31290 + } + } + }, + { + "to": { + "startLine": 443, + "startColumn": 4, + "startOffset": 54992, + "endLine": 446, + "endColumn": 12, + "endOffset": 55209 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 249, + "startColumn": 4, + "startOffset": 31295, + "endLine": 252, + "endColumn": 12, + "endOffset": 31512 + } + } + }, + { + "to": { + "startLine": 447, + "startColumn": 4, + "startOffset": 55214, + "endLine": 450, + "endColumn": 12, + "endOffset": 55431 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 253, + "startColumn": 4, + "startOffset": 31517, + "endLine": 256, + "endColumn": 12, + "endOffset": 31734 + } + } + }, + { + "to": { + "startLine": 451, + "startColumn": 4, + "startOffset": 55436, + "endLine": 455, + "endColumn": 12, + "endOffset": 55699 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 257, + "startColumn": 4, + "startOffset": 31739, + "endLine": 261, + "endColumn": 12, + "endOffset": 32002 + } + } + }, + { + "to": { + "startLine": 456, + "startColumn": 4, + "startOffset": 55704, + "endLine": 459, + "endColumn": 12, + "endOffset": 55926 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 262, + "startColumn": 4, + "startOffset": 32007, + "endLine": 265, + "endColumn": 12, + "endOffset": 32229 + } + } + }, + { + "to": { + "startLine": 460, + "startColumn": 4, + "startOffset": 55931, + "endLine": 463, + "endColumn": 12, + "endOffset": 56156 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 266, + "startColumn": 4, + "startOffset": 32234, + "endLine": 269, + "endColumn": 12, + "endOffset": 32459 + } + } + }, + { + "to": { + "startLine": 464, + "startColumn": 4, + "startOffset": 56161, + "endLine": 467, + "endColumn": 12, + "endOffset": 56386 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 270, + "startColumn": 4, + "startOffset": 32464, + "endLine": 273, + "endColumn": 12, + "endOffset": 32689 + } + } + }, + { + "to": { + "startLine": 468, + "startColumn": 4, + "startOffset": 56391, + "endLine": 471, + "endColumn": 12, + "endOffset": 56616 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 274, + "startColumn": 4, + "startOffset": 32694, + "endLine": 277, + "endColumn": 12, + "endOffset": 32919 + } + } + }, + { + "to": { + "startLine": 472, + "startColumn": 4, + "startOffset": 56621, + "endLine": 475, + "endColumn": 12, + "endOffset": 56846 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 278, + "startColumn": 4, + "startOffset": 32924, + "endLine": 281, + "endColumn": 12, + "endOffset": 33149 + } + } + }, + { + "to": { + "startLine": 476, + "startColumn": 4, + "startOffset": 56851, + "endLine": 479, + "endColumn": 12, + "endOffset": 57073 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 282, + "startColumn": 4, + "startOffset": 33154, + "endLine": 285, + "endColumn": 12, + "endOffset": 33376 + } + } + }, + { + "to": { + "startLine": 480, + "startColumn": 4, + "startOffset": 57078, + "endLine": 483, + "endColumn": 12, + "endOffset": 57312 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 286, + "startColumn": 4, + "startOffset": 33381, + "endLine": 289, + "endColumn": 12, + "endOffset": 33615 + } + } + }, + { + "to": { + "startLine": 484, + "startColumn": 4, + "startOffset": 57317, + "endLine": 487, + "endColumn": 12, + "endOffset": 57538 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 290, + "startColumn": 4, + "startOffset": 33620, + "endLine": 293, + "endColumn": 12, + "endOffset": 33841 + } + } + }, + { + "to": { + "startLine": 488, + "startColumn": 4, + "startOffset": 57543, + "endLine": 491, + "endColumn": 12, + "endOffset": 57783 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 294, + "startColumn": 4, + "startOffset": 33846, + "endLine": 297, + "endColumn": 12, + "endOffset": 34086 + } + } + }, + { + "to": { + "startLine": 492, + "startColumn": 4, + "startOffset": 57788, + "endLine": 493, + "endColumn": 12, + "endOffset": 57913 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 298, + "startColumn": 4, + "startOffset": 34091, + "endLine": 299, + "endColumn": 12, + "endOffset": 34216 + } + } + }, + { + "to": { + "startLine": 494, + "startColumn": 4, + "startOffset": 57918, + "endLine": 495, + "endColumn": 12, + "endOffset": 58043 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 300, + "startColumn": 4, + "startOffset": 34221, + "endLine": 301, + "endColumn": 12, + "endOffset": 34346 + } + } + }, + { + "to": { + "startLine": 496, + "startColumn": 4, + "startOffset": 58048, + "endLine": 499, + "endColumn": 12, + "endOffset": 58273 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 302, + "startColumn": 4, + "startOffset": 34351, + "endLine": 305, + "endColumn": 12, + "endOffset": 34576 + } + } + }, + { + "to": { + "startLine": 500, + "startColumn": 4, + "startOffset": 58278, + "endLine": 503, + "endColumn": 12, + "endOffset": 58521 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 306, + "startColumn": 4, + "startOffset": 34581, + "endLine": 309, + "endColumn": 12, + "endOffset": 34824 + } + } + }, + { + "to": { + "startLine": 504, + "startColumn": 4, + "startOffset": 58526, + "endLine": 507, + "endColumn": 12, + "endOffset": 58740 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 310, + "startColumn": 4, + "startOffset": 34829, + "endLine": 313, + "endColumn": 12, + "endOffset": 35043 + } + } + }, + { + "to": { + "startLine": 508, + "startColumn": 4, + "startOffset": 58745, + "endLine": 512, + "endColumn": 12, + "endOffset": 59023 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 314, + "startColumn": 4, + "startOffset": 35048, + "endLine": 318, + "endColumn": 12, + "endOffset": 35326 + } + } + }, + { + "to": { + "startLine": 513, + "startColumn": 4, + "startOffset": 59028, + "endLine": 516, + "endColumn": 12, + "endOffset": 59231 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 319, + "startColumn": 4, + "startOffset": 35331, + "endLine": 322, + "endColumn": 12, + "endOffset": 35534 + } + } + }, + { + "to": { + "startLine": 517, + "startColumn": 4, + "startOffset": 59236, + "endLine": 519, + "endColumn": 12, + "endOffset": 59362 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 323, + "startColumn": 4, + "startOffset": 35539, + "endLine": 325, + "endColumn": 12, + "endOffset": 35665 + } + } + }, + { + "to": { + "startLine": 520, + "startColumn": 4, + "startOffset": 59367, + "endLine": 523, + "endColumn": 12, + "endOffset": 59589 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 326, + "startColumn": 4, + "startOffset": 35670, + "endLine": 329, + "endColumn": 12, + "endOffset": 35892 + } + } + }, + { + "to": { + "startLine": 524, + "startColumn": 4, + "startOffset": 59594, + "endLine": 527, + "endColumn": 12, + "endOffset": 59835 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 330, + "startColumn": 4, + "startOffset": 35897, + "endLine": 333, + "endColumn": 12, + "endOffset": 36138 + } + } + }, + { + "to": { + "startLine": 528, + "startColumn": 4, + "startOffset": 59840, + "endLine": 531, + "endColumn": 12, + "endOffset": 60060 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 334, + "startColumn": 4, + "startOffset": 36143, + "endLine": 337, + "endColumn": 12, + "endOffset": 36363 + } + } + }, + { + "to": { + "startLine": 532, + "startColumn": 4, + "startOffset": 60065, + "endLine": 535, + "endColumn": 12, + "endOffset": 60307 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 338, + "startColumn": 4, + "startOffset": 36368, + "endLine": 341, + "endColumn": 12, + "endOffset": 36610 + } + } + }, + { + "to": { + "startLine": 536, + "startColumn": 4, + "startOffset": 60312, + "endLine": 539, + "endColumn": 12, + "endOffset": 60528 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 342, + "startColumn": 4, + "startOffset": 36615, + "endLine": 345, + "endColumn": 12, + "endOffset": 36831 + } + } + }, + { + "to": { + "startLine": 540, + "startColumn": 4, + "startOffset": 60533, + "endLine": 543, + "endColumn": 12, + "endOffset": 60773 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 346, + "startColumn": 4, + "startOffset": 36836, + "endLine": 349, + "endColumn": 12, + "endOffset": 37076 + } + } + }, + { + "to": { + "startLine": 544, + "startColumn": 4, + "startOffset": 60778, + "endLine": 547, + "endColumn": 12, + "endOffset": 61049 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 350, + "startColumn": 4, + "startOffset": 37081, + "endLine": 353, + "endColumn": 12, + "endOffset": 37352 + } + } + }, + { + "to": { + "startLine": 548, + "startColumn": 4, + "startOffset": 61054, + "endLine": 551, + "endColumn": 12, + "endOffset": 61350 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 354, + "startColumn": 4, + "startOffset": 37357, + "endLine": 357, + "endColumn": 12, + "endOffset": 37653 + } + } + }, + { + "to": { + "startLine": 552, + "startColumn": 4, + "startOffset": 61355, + "endLine": 555, + "endColumn": 12, + "endOffset": 61674 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 358, + "startColumn": 4, + "startOffset": 37658, + "endLine": 361, + "endColumn": 12, + "endOffset": 37977 + } + } + }, + { + "to": { + "startLine": 556, + "startColumn": 4, + "startOffset": 61679, + "endLine": 559, + "endColumn": 12, + "endOffset": 61965 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 362, + "startColumn": 4, + "startOffset": 37982, + "endLine": 365, + "endColumn": 12, + "endOffset": 38268 + } + } + }, + { + "to": { + "startLine": 560, + "startColumn": 4, + "startOffset": 61970, + "endLine": 563, + "endColumn": 12, + "endOffset": 62279 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 366, + "startColumn": 4, + "startOffset": 38273, + "endLine": 369, + "endColumn": 12, + "endOffset": 38582 + } + } + }, + { + "to": { + "startLine": 564, + "startColumn": 4, + "startOffset": 62284, + "endColumn": 136, + "endOffset": 62416 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 370, + "startColumn": 4, + "startOffset": 38587, + "endColumn": 136, + "endOffset": 38719 + } + } + }, + { + "to": { + "startLine": 565, + "startColumn": 4, + "startOffset": 62421, + "endColumn": 130, + "endOffset": 62547 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 371, + "startColumn": 4, + "startOffset": 38724, + "endColumn": 130, + "endOffset": 38850 + } + } + }, + { + "to": { + "startLine": 566, + "startColumn": 4, + "startOffset": 62552, + "endColumn": 104, + "endOffset": 62652 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 372, + "startColumn": 4, + "startOffset": 38855, + "endColumn": 104, + "endOffset": 38955 + } + } + }, + { + "to": { + "startLine": 567, + "startColumn": 4, + "startOffset": 62657, + "endLine": 569, + "endColumn": 12, + "endOffset": 62856 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 373, + "startColumn": 4, + "startOffset": 38960, + "endLine": 375, + "endColumn": 12, + "endOffset": 39159 + } + } + }, + { + "to": { + "startLine": 570, + "startColumn": 4, + "startOffset": 62861, + "endLine": 572, + "endColumn": 12, + "endOffset": 63064 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 376, + "startColumn": 4, + "startOffset": 39164, + "endLine": 378, + "endColumn": 12, + "endOffset": 39367 + } + } + }, + { + "to": { + "startLine": 573, + "startColumn": 4, + "startOffset": 63069, + "endLine": 574, + "endColumn": 12, + "endOffset": 63188 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 379, + "startColumn": 4, + "startOffset": 39372, + "endLine": 380, + "endColumn": 12, + "endOffset": 39491 + } + } + }, + { + "to": { + "startLine": 575, + "startColumn": 4, + "startOffset": 63193, + "endLine": 576, + "endColumn": 12, + "endOffset": 63312 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 381, + "startColumn": 4, + "startOffset": 39496, + "endLine": 382, + "endColumn": 12, + "endOffset": 39615 + } + } + }, + { + "to": { + "startLine": 577, + "startColumn": 4, + "startOffset": 63317, + "endColumn": 104, + "endOffset": 63417 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 383, + "startColumn": 4, + "startOffset": 39620, + "endColumn": 104, + "endOffset": 39720 + } + } + }, + { + "to": { + "startLine": 578, + "startColumn": 4, + "startOffset": 63422, + "endColumn": 116, + "endOffset": 63534 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 384, + "startColumn": 4, + "startOffset": 39725, + "endColumn": 116, + "endOffset": 39837 + } + } + }, + { + "to": { + "startLine": 579, + "startColumn": 4, + "startOffset": 63539, + "endLine": 581, + "endColumn": 12, + "endOffset": 63748 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 385, + "startColumn": 4, + "startOffset": 39842, + "endLine": 387, + "endColumn": 12, + "endOffset": 40051 + } + } + }, + { + "to": { + "startLine": 582, + "startColumn": 4, + "startOffset": 63753, + "endLine": 583, + "endColumn": 12, + "endOffset": 63894 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 388, + "startColumn": 4, + "startOffset": 40056, + "endLine": 389, + "endColumn": 12, + "endOffset": 40197 + } + } + }, + { + "to": { + "startLine": 584, + "startColumn": 4, + "startOffset": 63899, + "endLine": 585, + "endColumn": 12, + "endOffset": 64034 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 390, + "startColumn": 4, + "startOffset": 40202, + "endLine": 391, + "endColumn": 12, + "endOffset": 40337 + } + } + }, + { + "to": { + "startLine": 586, + "startColumn": 4, + "startOffset": 64039, + "endLine": 587, + "endColumn": 12, + "endOffset": 64120 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 392, + "startColumn": 4, + "startOffset": 40342, + "endLine": 393, + "endColumn": 12, + "endOffset": 40423 + } + } + }, + { + "to": { + "startLine": 588, + "startColumn": 4, + "startOffset": 64125, + "endLine": 592, + "endColumn": 12, + "endOffset": 64468 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 394, + "startColumn": 4, + "startOffset": 40428, + "endLine": 398, + "endColumn": 12, + "endOffset": 40771 + } + } + }, + { + "to": { + "startLine": 593, + "startColumn": 4, + "startOffset": 64473, + "endColumn": 87, + "endOffset": 64556 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 399, + "startColumn": 4, + "startOffset": 40776, + "endColumn": 87, + "endOffset": 40859 + } + } + }, + { + "to": { + "startLine": 594, + "startColumn": 4, + "startOffset": 64561, + "endLine": 597, + "endColumn": 12, + "endOffset": 64786 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 400, + "startColumn": 4, + "startOffset": 40864, + "endLine": 403, + "endColumn": 12, + "endOffset": 41089 + } + } + }, + { + "to": { + "startLine": 598, + "startColumn": 4, + "startOffset": 64791, + "endLine": 603, + "endColumn": 12, + "endOffset": 65204 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 404, + "startColumn": 4, + "startOffset": 41094, + "endLine": 409, + "endColumn": 12, + "endOffset": 41507 + } + } + }, + { + "to": { + "startLine": 604, + "startColumn": 4, + "startOffset": 65209, + "endLine": 607, + "endColumn": 12, + "endOffset": 65437 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 410, + "startColumn": 4, + "startOffset": 41512, + "endLine": 413, + "endColumn": 12, + "endOffset": 41740 + } + } + }, + { + "to": { + "startLine": 608, + "startColumn": 4, + "startOffset": 65442, + "endColumn": 81, + "endOffset": 65519 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 414, + "startColumn": 4, + "startOffset": 41745, + "endColumn": 81, + "endOffset": 41822 + } + } + }, + { + "to": { + "startLine": 609, + "startColumn": 4, + "startOffset": 65524, + "endLine": 610, + "endColumn": 12, + "endOffset": 65617 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 415, + "startColumn": 4, + "startOffset": 41827, + "endLine": 416, + "endColumn": 12, + "endOffset": 41920 + } + } + }, + { + "to": { + "startLine": 611, + "startColumn": 4, + "startOffset": 65622, + "endLine": 621, + "endColumn": 12, + "endOffset": 66234 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 417, + "startColumn": 4, + "startOffset": 41925, + "endLine": 427, + "endColumn": 12, + "endOffset": 42537 + } + } + }, + { + "to": { + "startLine": 622, + "startColumn": 4, + "startOffset": 66239, + "endColumn": 99, + "endOffset": 66334 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 428, + "startColumn": 4, + "startOffset": 42542, + "endColumn": 99, + "endOffset": 42637 + } + } + }, + { + "to": { + "startLine": 623, + "startColumn": 4, + "startOffset": 66339, + "endLine": 626, + "endColumn": 12, + "endOffset": 66570 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 429, + "startColumn": 4, + "startOffset": 42642, + "endLine": 432, + "endColumn": 12, + "endOffset": 42873 + } + } + }, + { + "to": { + "startLine": 627, + "startColumn": 4, + "startOffset": 66575, + "endLine": 632, + "endColumn": 12, + "endOffset": 66994 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 433, + "startColumn": 4, + "startOffset": 42878, + "endLine": 438, + "endColumn": 12, + "endOffset": 43297 + } + } + }, + { + "to": { + "startLine": 633, + "startColumn": 4, + "startOffset": 66999, + "endLine": 636, + "endColumn": 12, + "endOffset": 67233 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 439, + "startColumn": 4, + "startOffset": 43302, + "endLine": 442, + "endColumn": 12, + "endOffset": 43536 + } + } + }, + { + "to": { + "startLine": 637, + "startColumn": 4, + "startOffset": 67238, + "endColumn": 93, + "endOffset": 67327 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 443, + "startColumn": 4, + "startOffset": 43541, + "endColumn": 93, + "endOffset": 43630 + } + } + }, + { + "to": { + "startLine": 638, + "startColumn": 4, + "startOffset": 67332, + "endColumn": 88, + "endOffset": 67416 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 444, + "startColumn": 4, + "startOffset": 43635, + "endColumn": 88, + "endOffset": 43719 + } + } + }, + { + "to": { + "startLine": 639, + "startColumn": 4, + "startOffset": 67421, + "endLine": 642, + "endColumn": 12, + "endOffset": 67653 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 445, + "startColumn": 4, + "startOffset": 43724, + "endLine": 448, + "endColumn": 12, + "endOffset": 43956 + } + } + }, + { + "to": { + "startLine": 643, + "startColumn": 4, + "startOffset": 67658, + "endLine": 668, + "endColumn": 12, + "endOffset": 69604 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 449, + "startColumn": 4, + "startOffset": 43961, + "endLine": 474, + "endColumn": 12, + "endOffset": 45907 + } + } + }, + { + "to": { + "startLine": 669, + "startColumn": 4, + "startOffset": 69609, + "endLine": 672, + "endColumn": 12, + "endOffset": 69846 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 475, + "startColumn": 4, + "startOffset": 45912, + "endLine": 478, + "endColumn": 12, + "endOffset": 46149 + } + } + }, + { + "to": { + "startLine": 673, + "startColumn": 4, + "startOffset": 69851, + "endLine": 699, + "endColumn": 12, + "endOffset": 71928 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 479, + "startColumn": 4, + "startOffset": 46154, + "endLine": 505, + "endColumn": 12, + "endOffset": 48231 + } + } + }, + { + "to": { + "startLine": 700, + "startColumn": 4, + "startOffset": 71933, + "endLine": 854, + "endColumn": 12, + "endOffset": 81794 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 506, + "startColumn": 4, + "startOffset": 48236, + "endLine": 660, + "endColumn": 12, + "endOffset": 58097 + } + } + }, + { + "to": { + "startLine": 855, + "startColumn": 4, + "startOffset": 81799, + "endLine": 876, + "endColumn": 12, + "endOffset": 83061 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 661, + "startColumn": 4, + "startOffset": 58102, + "endLine": 682, + "endColumn": 12, + "endOffset": 59364 + } + } + }, + { + "to": { + "startLine": 877, + "startColumn": 4, + "startOffset": 83066, + "endLine": 1031, + "endColumn": 12, + "endOffset": 93037 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 683, + "startColumn": 4, + "startOffset": 59369, + "endLine": 837, + "endColumn": 12, + "endOffset": 69340 + } + } + }, + { + "to": { + "startLine": 1032, + "startColumn": 4, + "startOffset": 93042, + "endLine": 1053, + "endColumn": 12, + "endOffset": 94318 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 838, + "startColumn": 4, + "startOffset": 69345, + "endLine": 859, + "endColumn": 12, + "endOffset": 70621 + } + } + }, + { + "to": { + "startLine": 1054, + "startColumn": 4, + "startOffset": 94323, + "endLine": 1060, + "endColumn": 12, + "endOffset": 94854 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 860, + "startColumn": 4, + "startOffset": 70626, + "endLine": 866, + "endColumn": 12, + "endOffset": 71157 + } + } + }, + { + "to": { + "startLine": 1061, + "startColumn": 4, + "startOffset": 94859, + "endLine": 1065, + "endColumn": 12, + "endOffset": 95184 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 867, + "startColumn": 4, + "startOffset": 71162, + "endLine": 871, + "endColumn": 12, + "endOffset": 71487 + } + } + }, + { + "to": { + "startLine": 1066, + "startColumn": 4, + "startOffset": 95189, + "endLine": 1086, + "endColumn": 12, + "endOffset": 96307 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 872, + "startColumn": 4, + "startOffset": 71492, + "endLine": 892, + "endColumn": 12, + "endOffset": 72610 + } + } + }, + { + "to": { + "startLine": 1087, + "startColumn": 4, + "startOffset": 96312, + "endLine": 1091, + "endColumn": 12, + "endOffset": 96563 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 893, + "startColumn": 4, + "startOffset": 72615, + "endLine": 897, + "endColumn": 12, + "endOffset": 72866 + } + } + }, + { + "to": { + "startLine": 1092, + "startColumn": 4, + "startOffset": 96568, + "endLine": 1096, + "endColumn": 12, + "endOffset": 96799 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 898, + "startColumn": 4, + "startOffset": 72871, + "endLine": 902, + "endColumn": 12, + "endOffset": 73102 + } + } + }, + { + "to": { + "startLine": 1097, + "startColumn": 4, + "startOffset": 96804, + "endLine": 1106, + "endColumn": 12, + "endOffset": 97346 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 903, + "startColumn": 4, + "startOffset": 73107, + "endLine": 912, + "endColumn": 12, + "endOffset": 73649 + } + } + }, + { + "to": { + "startLine": 1107, + "startColumn": 4, + "startOffset": 97351, + "endLine": 1115, + "endColumn": 12, + "endOffset": 97840 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 913, + "startColumn": 4, + "startOffset": 73654, + "endLine": 921, + "endColumn": 12, + "endOffset": 74143 + } + } + }, + { + "to": { + "startLine": 1116, + "startColumn": 4, + "startOffset": 97845, + "endLine": 1124, + "endColumn": 12, + "endOffset": 98445 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 922, + "startColumn": 4, + "startOffset": 74148, + "endLine": 930, + "endColumn": 12, + "endOffset": 74748 + } + } + }, + { + "to": { + "startLine": 1125, + "startColumn": 4, + "startOffset": 98450, + "endLine": 1127, + "endColumn": 12, + "endOffset": 98593 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 931, + "startColumn": 4, + "startOffset": 74753, + "endLine": 933, + "endColumn": 12, + "endOffset": 74896 + } + } + }, + { + "to": { + "startLine": 1128, + "startColumn": 4, + "startOffset": 98598, + "endLine": 1134, + "endColumn": 12, + "endOffset": 99181 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 934, + "startColumn": 4, + "startOffset": 74901, + "endLine": 940, + "endColumn": 12, + "endOffset": 75484 + } + } + }, + { + "to": { + "startLine": 1135, + "startColumn": 4, + "startOffset": 99186, + "endLine": 1142, + "endColumn": 12, + "endOffset": 99745 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 941, + "startColumn": 4, + "startOffset": 75489, + "endLine": 948, + "endColumn": 12, + "endOffset": 76048 + } + } + }, + { + "to": { + "startLine": 1143, + "startColumn": 4, + "startOffset": 99750, + "endLine": 1149, + "endColumn": 12, + "endOffset": 100120 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 949, + "startColumn": 4, + "startOffset": 76053, + "endLine": 955, + "endColumn": 12, + "endOffset": 76423 + } + } + }, + { + "to": { + "startLine": 1150, + "startColumn": 4, + "startOffset": 100125, + "endColumn": 117, + "endOffset": 100238 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 956, + "startColumn": 4, + "startOffset": 76428, + "endColumn": 117, + "endOffset": 76541 + } + } + }, + { + "to": { + "startLine": 1151, + "startColumn": 4, + "startOffset": 100243, + "endLine": 1159, + "endColumn": 12, + "endOffset": 100776 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 957, + "startColumn": 4, + "startOffset": 76546, + "endLine": 965, + "endColumn": 12, + "endOffset": 77079 + } + } + }, + { + "to": { + "startLine": 1160, + "startColumn": 4, + "startOffset": 100781, + "endLine": 1162, + "endColumn": 12, + "endOffset": 100933 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 966, + "startColumn": 4, + "startOffset": 77084, + "endLine": 968, + "endColumn": 12, + "endOffset": 77236 + } + } + }, + { + "to": { + "startLine": 1163, + "startColumn": 4, + "startOffset": 100938, + "endLine": 1165, + "endColumn": 12, + "endOffset": 101077 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 969, + "startColumn": 4, + "startOffset": 77241, + "endLine": 971, + "endColumn": 12, + "endOffset": 77380 + } + } + }, + { + "to": { + "startLine": 1166, + "startColumn": 4, + "startOffset": 101082, + "endLine": 1170, + "endColumn": 12, + "endOffset": 101397 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 972, + "startColumn": 4, + "startOffset": 77385, + "endLine": 976, + "endColumn": 12, + "endOffset": 77700 + } + } + }, + { + "to": { + "startLine": 1171, + "startColumn": 4, + "startOffset": 101402, + "endLine": 1174, + "endColumn": 12, + "endOffset": 101653 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 977, + "startColumn": 4, + "startOffset": 77705, + "endLine": 980, + "endColumn": 12, + "endOffset": 77956 + } + } + }, + { + "to": { + "startLine": 1175, + "startColumn": 4, + "startOffset": 101658, + "endLine": 1178, + "endColumn": 12, + "endOffset": 101823 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 981, + "startColumn": 4, + "startOffset": 77961, + "endLine": 984, + "endColumn": 12, + "endOffset": 78126 + } + } + }, + { + "to": { + "startLine": 1179, + "startColumn": 4, + "startOffset": 101828, + "endLine": 1181, + "endColumn": 12, + "endOffset": 101964 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 985, + "startColumn": 4, + "startOffset": 78131, + "endLine": 987, + "endColumn": 12, + "endOffset": 78267 + } + } + }, + { + "to": { + "startLine": 1182, + "startColumn": 4, + "startOffset": 101969, + "endColumn": 63, + "endOffset": 102028 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 988, + "startColumn": 4, + "startOffset": 78272, + "endColumn": 63, + "endOffset": 78331 + } + } + }, + { + "to": { + "startLine": 1183, + "startColumn": 4, + "startOffset": 102033, + "endLine": 1186, + "endColumn": 12, + "endOffset": 102310 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 989, + "startColumn": 4, + "startOffset": 78336, + "endLine": 992, + "endColumn": 12, + "endOffset": 78613 + } + } + }, + { + "to": { + "startLine": 1187, + "startColumn": 4, + "startOffset": 102315, + "endLine": 1190, + "endColumn": 12, + "endOffset": 102596 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 993, + "startColumn": 4, + "startOffset": 78618, + "endLine": 996, + "endColumn": 12, + "endOffset": 78899 + } + } + }, + { + "to": { + "startLine": 1191, + "startColumn": 4, + "startOffset": 102601, + "endLine": 1200, + "endColumn": 12, + "endOffset": 103272 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 997, + "startColumn": 4, + "startOffset": 78904, + "endLine": 1006, + "endColumn": 12, + "endOffset": 79575 + } + } + }, + { + "to": { + "startLine": 1201, + "startColumn": 4, + "startOffset": 103277, + "endLine": 1205, + "endColumn": 12, + "endOffset": 103536 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1007, + "startColumn": 4, + "startOffset": 79580, + "endLine": 1011, + "endColumn": 12, + "endOffset": 79839 + } + } + }, + { + "to": { + "startLine": 1206, + "startColumn": 4, + "startOffset": 103541, + "endLine": 1212, + "endColumn": 12, + "endOffset": 103874 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1012, + "startColumn": 4, + "startOffset": 79844, + "endLine": 1018, + "endColumn": 12, + "endOffset": 80177 + } + } + }, + { + "to": { + "startLine": 1213, + "startColumn": 4, + "startOffset": 103879, + "endLine": 1218, + "endColumn": 12, + "endOffset": 104227 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1019, + "startColumn": 4, + "startOffset": 80182, + "endLine": 1024, + "endColumn": 12, + "endOffset": 80530 + } + } + }, + { + "to": { + "startLine": 1219, + "startColumn": 4, + "startOffset": 104232, + "endColumn": 93, + "endOffset": 104321 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1025, + "startColumn": 4, + "startOffset": 80535, + "endColumn": 93, + "endOffset": 80624 + } + } + }, + { + "to": { + "startLine": 1220, + "startColumn": 4, + "startOffset": 104326, + "endLine": 1222, + "endColumn": 12, + "endOffset": 104507 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1026, + "startColumn": 4, + "startOffset": 80629, + "endLine": 1028, + "endColumn": 12, + "endOffset": 80810 + } + } + }, + { + "to": { + "startLine": 1223, + "startColumn": 4, + "startOffset": 104512, + "endLine": 1226, + "endColumn": 12, + "endOffset": 104813 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1029, + "startColumn": 4, + "startOffset": 80815, + "endLine": 1032, + "endColumn": 12, + "endOffset": 81116 + } + } + }, + { + "to": { + "startLine": 1227, + "startColumn": 4, + "startOffset": 104818, + "endLine": 1231, + "endColumn": 12, + "endOffset": 105075 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1033, + "startColumn": 4, + "startOffset": 81121, + "endLine": 1037, + "endColumn": 12, + "endOffset": 81378 + } + } + }, + { + "to": { + "startLine": 1232, + "startColumn": 4, + "startOffset": 105080, + "endLine": 1233, + "endColumn": 12, + "endOffset": 105200 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1038, + "startColumn": 4, + "startOffset": 81383, + "endLine": 1039, + "endColumn": 12, + "endOffset": 81503 + } + } + }, + { + "to": { + "startLine": 1234, + "startColumn": 4, + "startOffset": 105205, + "endLine": 1235, + "endColumn": 12, + "endOffset": 105327 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1040, + "startColumn": 4, + "startOffset": 81508, + "endLine": 1041, + "endColumn": 12, + "endOffset": 81630 + } + } + }, + { + "to": { + "startLine": 1236, + "startColumn": 4, + "startOffset": 105332, + "endLine": 1238, + "endColumn": 12, + "endOffset": 105566 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1042, + "startColumn": 4, + "startOffset": 81635, + "endLine": 1044, + "endColumn": 12, + "endOffset": 81869 + } + } + }, + { + "to": { + "startLine": 1239, + "startColumn": 4, + "startOffset": 105571, + "endLine": 1241, + "endColumn": 12, + "endOffset": 105777 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1045, + "startColumn": 4, + "startOffset": 81874, + "endLine": 1047, + "endColumn": 12, + "endOffset": 82080 + } + } + }, + { + "to": { + "startLine": 1242, + "startColumn": 4, + "startOffset": 105782, + "endLine": 1243, + "endColumn": 12, + "endOffset": 105896 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1048, + "startColumn": 4, + "startOffset": 82085, + "endLine": 1049, + "endColumn": 12, + "endOffset": 82199 + } + } + }, + { + "to": { + "startLine": 1244, + "startColumn": 4, + "startOffset": 105901, + "endLine": 1247, + "endColumn": 12, + "endOffset": 106089 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1050, + "startColumn": 4, + "startOffset": 82204, + "endLine": 1053, + "endColumn": 12, + "endOffset": 82392 + } + } + }, + { + "to": { + "startLine": 1248, + "startColumn": 4, + "startOffset": 106094, + "endLine": 1254, + "endColumn": 12, + "endOffset": 106544 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1054, + "startColumn": 4, + "startOffset": 82397, + "endLine": 1060, + "endColumn": 12, + "endOffset": 82847 + } + } + }, + { + "to": { + "startLine": 1255, + "startColumn": 4, + "startOffset": 106549, + "endLine": 1257, + "endColumn": 12, + "endOffset": 106725 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1061, + "startColumn": 4, + "startOffset": 82852, + "endLine": 1063, + "endColumn": 12, + "endOffset": 83028 + } + } + }, + { + "to": { + "startLine": 1258, + "startColumn": 4, + "startOffset": 106730, + "endLine": 1260, + "endColumn": 12, + "endOffset": 106847 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1064, + "startColumn": 4, + "startOffset": 83033, + "endLine": 1066, + "endColumn": 12, + "endOffset": 83150 + } + } + }, + { + "to": { + "startLine": 1261, + "startColumn": 4, + "startOffset": 106852, + "endLine": 1264, + "endColumn": 12, + "endOffset": 107106 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1067, + "startColumn": 4, + "startOffset": 83155, + "endLine": 1070, + "endColumn": 12, + "endOffset": 83409 + } + } + }, + { + "to": { + "startLine": 1265, + "startColumn": 4, + "startOffset": 107111, + "endLine": 1266, + "endColumn": 12, + "endOffset": 107219 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1071, + "startColumn": 4, + "startOffset": 83414, + "endLine": 1072, + "endColumn": 12, + "endOffset": 83522 + } + } + }, + { + "to": { + "startLine": 1267, + "startColumn": 4, + "startOffset": 107224, + "endLine": 1270, + "endColumn": 12, + "endOffset": 107406 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1073, + "startColumn": 4, + "startOffset": 83527, + "endLine": 1076, + "endColumn": 12, + "endOffset": 83709 + } + } + }, + { + "to": { + "startLine": 1271, + "startColumn": 4, + "startOffset": 107411, + "endLine": 1272, + "endColumn": 12, + "endOffset": 107508 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1077, + "startColumn": 4, + "startOffset": 83714, + "endLine": 1078, + "endColumn": 12, + "endOffset": 83811 + } + } + }, + { + "to": { + "startLine": 1273, + "startColumn": 4, + "startOffset": 107513, + "endLine": 1278, + "endColumn": 12, + "endOffset": 107952 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1079, + "startColumn": 4, + "startOffset": 83816, + "endLine": 1084, + "endColumn": 12, + "endOffset": 84255 + } + } + }, + { + "to": { + "startLine": 1279, + "startColumn": 4, + "startOffset": 107957, + "endLine": 1280, + "endColumn": 12, + "endOffset": 108076 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1085, + "startColumn": 4, + "startOffset": 84260, + "endLine": 1086, + "endColumn": 12, + "endOffset": 84379 + } + } + }, + { + "to": { + "startLine": 1281, + "startColumn": 4, + "startOffset": 108081, + "endLine": 1284, + "endColumn": 12, + "endOffset": 108361 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1087, + "startColumn": 4, + "startOffset": 84384, + "endLine": 1090, + "endColumn": 12, + "endOffset": 84664 + } + } + }, + { + "to": { + "startLine": 1285, + "startColumn": 4, + "startOffset": 108366, + "endLine": 1292, + "endColumn": 12, + "endOffset": 108869 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1091, + "startColumn": 4, + "startOffset": 84669, + "endLine": 1098, + "endColumn": 12, + "endOffset": 85172 + } + } + }, + { + "to": { + "startLine": 1293, + "startColumn": 4, + "startOffset": 108874, + "endLine": 1300, + "endColumn": 12, + "endOffset": 109365 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1099, + "startColumn": 4, + "startOffset": 85177, + "endLine": 1106, + "endColumn": 12, + "endOffset": 85668 + } + } + }, + { + "to": { + "startLine": 1301, + "startColumn": 4, + "startOffset": 109370, + "endLine": 1312, + "endColumn": 12, + "endOffset": 110252 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1107, + "startColumn": 4, + "startOffset": 85673, + "endLine": 1118, + "endColumn": 12, + "endOffset": 86555 + } + } + }, + { + "to": { + "startLine": 1313, + "startColumn": 4, + "startOffset": 110257, + "endLine": 1318, + "endColumn": 12, + "endOffset": 110546 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1119, + "startColumn": 4, + "startOffset": 86560, + "endLine": 1124, + "endColumn": 12, + "endOffset": 86849 + } + } + }, + { + "to": { + "startLine": 1319, + "startColumn": 4, + "startOffset": 110551, + "endLine": 1327, + "endColumn": 12, + "endOffset": 111116 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1125, + "startColumn": 4, + "startOffset": 86854, + "endLine": 1133, + "endColumn": 12, + "endOffset": 87419 + } + } + }, + { + "to": { + "startLine": 1328, + "startColumn": 4, + "startOffset": 111121, + "endLine": 1338, + "endColumn": 12, + "endOffset": 111848 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1134, + "startColumn": 4, + "startOffset": 87424, + "endLine": 1144, + "endColumn": 12, + "endOffset": 88151 + } + } + }, + { + "to": { + "startLine": 1339, + "startColumn": 4, + "startOffset": 111853, + "endLine": 1341, + "endColumn": 12, + "endOffset": 112020 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1145, + "startColumn": 4, + "startOffset": 88156, + "endLine": 1147, + "endColumn": 12, + "endOffset": 88323 + } + } + }, + { + "to": { + "startLine": 1342, + "startColumn": 4, + "startOffset": 112025, + "endLine": 1346, + "endColumn": 12, + "endOffset": 112356 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1148, + "startColumn": 4, + "startOffset": 88328, + "endLine": 1152, + "endColumn": 12, + "endOffset": 88659 + } + } + }, + { + "to": { + "startLine": 1347, + "startColumn": 4, + "startOffset": 112361, + "endLine": 1358, + "endColumn": 12, + "endOffset": 113264 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1153, + "startColumn": 4, + "startOffset": 88664, + "endLine": 1164, + "endColumn": 12, + "endOffset": 89567 + } + } + }, + { + "to": { + "startLine": 1359, + "startColumn": 4, + "startOffset": 113269, + "endLine": 1363, + "endColumn": 12, + "endOffset": 113542 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1165, + "startColumn": 4, + "startOffset": 89572, + "endLine": 1169, + "endColumn": 12, + "endOffset": 89845 + } + } + }, + { + "to": { + "startLine": 1364, + "startColumn": 4, + "startOffset": 113547, + "endLine": 1373, + "endColumn": 12, + "endOffset": 114133 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 68, + "startColumn": 4, + "startOffset": 10195, + "endLine": 77, + "endColumn": 12, + "endOffset": 10781 + } + } + }, + { + "to": { + "startLine": 1374, + "startColumn": 4, + "startOffset": 114138, + "endLine": 1376, + "endColumn": 12, + "endOffset": 114297 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/values/styles.xml", + "position": { + "startLine": 19, + "startColumn": 4, + "startOffset": 729, + "endLine": 21, + "endColumn": 12, + "endOffset": 888 + } + } + }, + { + "to": { + "startLine": 1377, + "startColumn": 4, + "startOffset": 114302, + "endLine": 1414, + "endColumn": 12, + "endOffset": 117159 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1170, + "startColumn": 4, + "startOffset": 89850, + "endLine": 1207, + "endColumn": 12, + "endOffset": 92707 + } + } + }, + { + "to": { + "startLine": 1415, + "startColumn": 4, + "startOffset": 117164, + "endLine": 1453, + "endColumn": 12, + "endOffset": 120161 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1208, + "startColumn": 4, + "startOffset": 92712, + "endLine": 1246, + "endColumn": 12, + "endOffset": 95709 + } + } + }, + { + "to": { + "startLine": 1454, + "startColumn": 4, + "startOffset": 120166, + "endColumn": 61, + "endOffset": 120223 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1247, + "startColumn": 4, + "startOffset": 95714, + "endColumn": 61, + "endOffset": 95771 + } + } + }, + { + "to": { + "startLine": 1455, + "startColumn": 4, + "startOffset": 120228, + "endLine": 1464, + "endColumn": 12, + "endOffset": 120853 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1248, + "startColumn": 4, + "startOffset": 95776, + "endLine": 1257, + "endColumn": 12, + "endOffset": 96401 + } + } + }, + { + "to": { + "startLine": 1465, + "startColumn": 4, + "startOffset": 120858, + "endLine": 1473, + "endColumn": 12, + "endOffset": 121467 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1258, + "startColumn": 4, + "startOffset": 96406, + "endLine": 1266, + "endColumn": 12, + "endOffset": 97015 + } + } + }, + { + "to": { + "startLine": 1474, + "startColumn": 4, + "startOffset": 121472, + "endColumn": 85, + "endOffset": 121553 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1267, + "startColumn": 4, + "startOffset": 97020, + "endColumn": 85, + "endOffset": 97101 + } + } + }, + { + "to": { + "startLine": 1475, + "startColumn": 4, + "startOffset": 121558, + "endLine": 1476, + "endColumn": 12, + "endOffset": 121666 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1268, + "startColumn": 4, + "startOffset": 97106, + "endLine": 1269, + "endColumn": 12, + "endOffset": 97214 + } + } + }, + { + "to": { + "startLine": 1477, + "startColumn": 4, + "startOffset": 121671, + "endLine": 1480, + "endColumn": 12, + "endOffset": 121895 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1270, + "startColumn": 4, + "startOffset": 97219, + "endLine": 1273, + "endColumn": 12, + "endOffset": 97443 + } + } + }, + { + "to": { + "startLine": 1481, + "startColumn": 4, + "startOffset": 121900, + "endLine": 1483, + "endColumn": 12, + "endOffset": 122055 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1274, + "startColumn": 4, + "startOffset": 97448, + "endLine": 1276, + "endColumn": 12, + "endOffset": 97603 + } + } + }, + { + "to": { + "startLine": 1484, + "startColumn": 4, + "startOffset": 122060, + "endLine": 1486, + "endColumn": 12, + "endOffset": 122207 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1277, + "startColumn": 4, + "startOffset": 97608, + "endLine": 1279, + "endColumn": 12, + "endOffset": 97755 + } + } + }, + { + "to": { + "startLine": 1487, + "startColumn": 4, + "startOffset": 122212, + "endLine": 1489, + "endColumn": 12, + "endOffset": 122378 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1280, + "startColumn": 4, + "startOffset": 97760, + "endLine": 1282, + "endColumn": 12, + "endOffset": 97926 + } + } + }, + { + "to": { + "startLine": 1490, + "startColumn": 4, + "startOffset": 122383, + "endLine": 1492, + "endColumn": 12, + "endOffset": 122545 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1283, + "startColumn": 4, + "startOffset": 97931, + "endLine": 1285, + "endColumn": 12, + "endOffset": 98093 + } + } + }, + { + "to": { + "startLine": 1493, + "startColumn": 4, + "startOffset": 122550, + "endLine": 1496, + "endColumn": 12, + "endOffset": 122788 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1286, + "startColumn": 4, + "startOffset": 98098, + "endLine": 1289, + "endColumn": 12, + "endOffset": 98336 + } + } + }, + { + "to": { + "startLine": 1497, + "startColumn": 4, + "startOffset": 122793, + "endLine": 1499, + "endColumn": 12, + "endOffset": 122958 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1290, + "startColumn": 4, + "startOffset": 98341, + "endLine": 1292, + "endColumn": 12, + "endOffset": 98506 + } + } + }, + { + "to": { + "startLine": 1500, + "startColumn": 4, + "startOffset": 122963, + "endLine": 1502, + "endColumn": 12, + "endOffset": 123131 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1293, + "startColumn": 4, + "startOffset": 98511, + "endLine": 1295, + "endColumn": 12, + "endOffset": 98679 + } + } + }, + { + "to": { + "startLine": 1503, + "startColumn": 4, + "startOffset": 123136, + "endLine": 1505, + "endColumn": 12, + "endOffset": 123302 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1296, + "startColumn": 4, + "startOffset": 98684, + "endLine": 1298, + "endColumn": 12, + "endOffset": 98850 + } + } + }, + { + "to": { + "startLine": 1506, + "startColumn": 4, + "startOffset": 123307, + "endLine": 1509, + "endColumn": 12, + "endOffset": 123576 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1299, + "startColumn": 4, + "startOffset": 98855, + "endLine": 1302, + "endColumn": 12, + "endOffset": 99124 + } + } + }, + { + "to": { + "startLine": 1510, + "startColumn": 4, + "startOffset": 123581, + "endLine": 1512, + "endColumn": 12, + "endOffset": 123775 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1303, + "startColumn": 4, + "startOffset": 99129, + "endLine": 1305, + "endColumn": 12, + "endOffset": 99323 + } + } + }, + { + "to": { + "startLine": 1513, + "startColumn": 4, + "startOffset": 123780, + "endLine": 1516, + "endColumn": 12, + "endOffset": 123980 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1306, + "startColumn": 4, + "startOffset": 99328, + "endLine": 1309, + "endColumn": 12, + "endOffset": 99528 + } + } + }, + { + "to": { + "startLine": 1517, + "startColumn": 4, + "startOffset": 123985, + "endLine": 1520, + "endColumn": 12, + "endOffset": 124310 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1310, + "startColumn": 4, + "startOffset": 99533, + "endLine": 1313, + "endColumn": 12, + "endOffset": 99858 + } + } + }, + { + "to": { + "startLine": 1521, + "startColumn": 4, + "startOffset": 124315, + "endColumn": 83, + "endOffset": 124394 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1314, + "startColumn": 4, + "startOffset": 99863, + "endColumn": 83, + "endOffset": 99942 + } + } + }, + { + "to": { + "startLine": 1522, + "startColumn": 4, + "startOffset": 124399, + "endColumn": 95, + "endOffset": 124490 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1315, + "startColumn": 4, + "startOffset": 99947, + "endColumn": 95, + "endOffset": 100038 + } + } + }, + { + "to": { + "startLine": 1523, + "startColumn": 4, + "startOffset": 124495, + "endColumn": 95, + "endOffset": 124586 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1316, + "startColumn": 4, + "startOffset": 100043, + "endColumn": 95, + "endOffset": 100134 + } + } + }, + { + "to": { + "startLine": 1524, + "startColumn": 4, + "startOffset": 124591, + "endColumn": 97, + "endOffset": 124684 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1317, + "startColumn": 4, + "startOffset": 100139, + "endColumn": 97, + "endOffset": 100232 + } + } + }, + { + "to": { + "startLine": 1525, + "startColumn": 4, + "startOffset": 124689, + "endColumn": 99, + "endOffset": 124784 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1318, + "startColumn": 4, + "startOffset": 100237, + "endColumn": 99, + "endOffset": 100332 + } + } + }, + { + "to": { + "startLine": 1526, + "startColumn": 4, + "startOffset": 124789, + "endColumn": 101, + "endOffset": 124886 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1319, + "startColumn": 4, + "startOffset": 100337, + "endColumn": 101, + "endOffset": 100434 + } + } + }, + { + "to": { + "startLine": 1527, + "startColumn": 4, + "startOffset": 124891, + "endColumn": 101, + "endOffset": 124988 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1320, + "startColumn": 4, + "startOffset": 100439, + "endColumn": 101, + "endOffset": 100536 + } + } + }, + { + "to": { + "startLine": 1528, + "startColumn": 4, + "startOffset": 124993, + "endColumn": 101, + "endOffset": 125090 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1321, + "startColumn": 4, + "startOffset": 100541, + "endColumn": 101, + "endOffset": 100638 + } + } + }, + { + "to": { + "startLine": 1529, + "startColumn": 4, + "startOffset": 125095, + "endColumn": 101, + "endOffset": 125192 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1322, + "startColumn": 4, + "startOffset": 100643, + "endColumn": 101, + "endOffset": 100740 + } + } + }, + { + "to": { + "startLine": 1530, + "startColumn": 4, + "startOffset": 125197, + "endColumn": 101, + "endOffset": 125294 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1323, + "startColumn": 4, + "startOffset": 100745, + "endColumn": 101, + "endOffset": 100842 + } + } + }, + { + "to": { + "startLine": 1531, + "startColumn": 4, + "startOffset": 125299, + "endColumn": 99, + "endOffset": 125394 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1324, + "startColumn": 4, + "startOffset": 100847, + "endColumn": 99, + "endOffset": 100942 + } + } + }, + { + "to": { + "startLine": 1532, + "startColumn": 4, + "startOffset": 125399, + "endColumn": 95, + "endOffset": 125490 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1325, + "startColumn": 4, + "startOffset": 100947, + "endColumn": 95, + "endOffset": 101038 + } + } + }, + { + "to": { + "startLine": 1533, + "startColumn": 4, + "startOffset": 125495, + "endColumn": 111, + "endOffset": 125602 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1326, + "startColumn": 4, + "startOffset": 101043, + "endColumn": 111, + "endOffset": 101150 + } + } + }, + { + "to": { + "startLine": 1534, + "startColumn": 4, + "startOffset": 125607, + "endColumn": 128, + "endOffset": 125731 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1327, + "startColumn": 4, + "startOffset": 101155, + "endColumn": 128, + "endOffset": 101279 + } + } + }, + { + "to": { + "startLine": 1535, + "startColumn": 4, + "startOffset": 125736, + "endColumn": 122, + "endOffset": 125854 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1328, + "startColumn": 4, + "startOffset": 101284, + "endColumn": 122, + "endOffset": 101402 + } + } + }, + { + "to": { + "startLine": 1536, + "startColumn": 4, + "startOffset": 125859, + "endLine": 1537, + "endColumn": 12, + "endOffset": 126008 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1329, + "startColumn": 4, + "startOffset": 101407, + "endLine": 1330, + "endColumn": 12, + "endOffset": 101556 + } + } + }, + { + "to": { + "startLine": 1538, + "startColumn": 4, + "startOffset": 126013, + "endLine": 1539, + "endColumn": 12, + "endOffset": 126162 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1331, + "startColumn": 4, + "startOffset": 101561, + "endLine": 1332, + "endColumn": 12, + "endOffset": 101710 + } + } + }, + { + "to": { + "startLine": 1540, + "startColumn": 4, + "startOffset": 126167, + "endColumn": 97, + "endOffset": 126260 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1333, + "startColumn": 4, + "startOffset": 101715, + "endColumn": 97, + "endOffset": 101808 + } + } + }, + { + "to": { + "startLine": 1541, + "startColumn": 4, + "startOffset": 126265, + "endColumn": 113, + "endOffset": 126374 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1334, + "startColumn": 4, + "startOffset": 101813, + "endColumn": 113, + "endOffset": 101922 + } + } + }, + { + "to": { + "startLine": 1542, + "startColumn": 4, + "startOffset": 126379, + "endColumn": 93, + "endOffset": 126468 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1335, + "startColumn": 4, + "startOffset": 101927, + "endColumn": 93, + "endOffset": 102016 + } + } + }, + { + "to": { + "startLine": 1543, + "startColumn": 4, + "startOffset": 126473, + "endLine": 1544, + "endColumn": 12, + "endOffset": 126608 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1336, + "startColumn": 4, + "startOffset": 102021, + "endLine": 1337, + "endColumn": 12, + "endOffset": 102156 + } + } + }, + { + "to": { + "startLine": 1545, + "startColumn": 4, + "startOffset": 126613, + "endLine": 1546, + "endColumn": 12, + "endOffset": 126742 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1338, + "startColumn": 4, + "startOffset": 102161, + "endLine": 1339, + "endColumn": 12, + "endOffset": 102290 + } + } + }, + { + "to": { + "startLine": 1547, + "startColumn": 4, + "startOffset": 126747, + "endColumn": 95, + "endOffset": 126838 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1340, + "startColumn": 4, + "startOffset": 102295, + "endColumn": 95, + "endOffset": 102386 + } + } + }, + { + "to": { + "startLine": 1548, + "startColumn": 4, + "startOffset": 126843, + "endColumn": 111, + "endOffset": 126950 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1341, + "startColumn": 4, + "startOffset": 102391, + "endColumn": 111, + "endOffset": 102498 + } + } + }, + { + "to": { + "startLine": 1549, + "startColumn": 4, + "startOffset": 126955, + "endColumn": 99, + "endOffset": 127050 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1342, + "startColumn": 4, + "startOffset": 102503, + "endColumn": 99, + "endOffset": 102598 + } + } + }, + { + "to": { + "startLine": 1550, + "startColumn": 4, + "startOffset": 127055, + "endColumn": 115, + "endOffset": 127166 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1343, + "startColumn": 4, + "startOffset": 102603, + "endColumn": 115, + "endOffset": 102714 + } + } + }, + { + "to": { + "startLine": 1551, + "startColumn": 4, + "startOffset": 127171, + "endColumn": 95, + "endOffset": 127262 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1344, + "startColumn": 4, + "startOffset": 102719, + "endColumn": 95, + "endOffset": 102810 + } + } + }, + { + "to": { + "startLine": 1552, + "startColumn": 4, + "startOffset": 127267, + "endColumn": 111, + "endOffset": 127374 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1345, + "startColumn": 4, + "startOffset": 102815, + "endColumn": 111, + "endOffset": 102922 + } + } + }, + { + "to": { + "startLine": 1553, + "startColumn": 4, + "startOffset": 127379, + "endLine": 1554, + "endColumn": 12, + "endOffset": 127514 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1346, + "startColumn": 4, + "startOffset": 102927, + "endLine": 1347, + "endColumn": 12, + "endOffset": 103062 + } + } + }, + { + "to": { + "startLine": 1555, + "startColumn": 4, + "startOffset": 127519, + "endColumn": 135, + "endOffset": 127650 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1348, + "startColumn": 4, + "startOffset": 103067, + "endColumn": 135, + "endOffset": 103198 + } + } + }, + { + "to": { + "startLine": 1556, + "startColumn": 4, + "startOffset": 127655, + "endLine": 1557, + "endColumn": 12, + "endOffset": 127814 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1349, + "startColumn": 4, + "startOffset": 103203, + "endLine": 1350, + "endColumn": 12, + "endOffset": 103362 + } + } + }, + { + "to": { + "startLine": 1558, + "startColumn": 4, + "startOffset": 127819, + "endColumn": 129, + "endOffset": 127944 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1351, + "startColumn": 4, + "startOffset": 103367, + "endColumn": 129, + "endOffset": 103492 + } + } + }, + { + "to": { + "startLine": 1559, + "startColumn": 4, + "startOffset": 127949, + "endLine": 1560, + "endColumn": 12, + "endOffset": 128102 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1352, + "startColumn": 4, + "startOffset": 103497, + "endLine": 1353, + "endColumn": 12, + "endOffset": 103650 + } + } + }, + { + "to": { + "startLine": 1561, + "startColumn": 4, + "startOffset": 128107, + "endLine": 1562, + "endColumn": 12, + "endOffset": 128252 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1354, + "startColumn": 4, + "startOffset": 103655, + "endLine": 1355, + "endColumn": 12, + "endOffset": 103800 + } + } + }, + { + "to": { + "startLine": 1563, + "startColumn": 4, + "startOffset": 128257, + "endColumn": 140, + "endOffset": 128393 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1356, + "startColumn": 4, + "startOffset": 103805, + "endColumn": 140, + "endOffset": 103941 + } + } + }, + { + "to": { + "startLine": 1564, + "startColumn": 4, + "startOffset": 128398, + "endLine": 1565, + "endColumn": 12, + "endOffset": 128537 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1357, + "startColumn": 4, + "startOffset": 103946, + "endLine": 1358, + "endColumn": 12, + "endOffset": 104085 + } + } + }, + { + "to": { + "startLine": 1566, + "startColumn": 4, + "startOffset": 128542, + "endColumn": 134, + "endOffset": 128672 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1359, + "startColumn": 4, + "startOffset": 104090, + "endColumn": 134, + "endOffset": 104220 + } + } + }, + { + "to": { + "startLine": 1567, + "startColumn": 4, + "startOffset": 128677, + "endColumn": 111, + "endOffset": 128784 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1360, + "startColumn": 4, + "startOffset": 104225, + "endColumn": 111, + "endOffset": 104332 + } + } + }, + { + "to": { + "startLine": 1568, + "startColumn": 4, + "startOffset": 128789, + "endColumn": 127, + "endOffset": 128912 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1361, + "startColumn": 4, + "startOffset": 104337, + "endColumn": 127, + "endOffset": 104460 + } + } + }, + { + "to": { + "startLine": 1569, + "startColumn": 4, + "startOffset": 128917, + "endLine": 1570, + "endColumn": 12, + "endOffset": 129048 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1362, + "startColumn": 4, + "startOffset": 104465, + "endLine": 1363, + "endColumn": 12, + "endOffset": 104596 + } + } + }, + { + "to": { + "startLine": 1571, + "startColumn": 4, + "startOffset": 129053, + "endLine": 1572, + "endColumn": 12, + "endOffset": 129190 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1364, + "startColumn": 4, + "startOffset": 104601, + "endLine": 1365, + "endColumn": 12, + "endOffset": 104738 + } + } + }, + { + "to": { + "startLine": 1573, + "startColumn": 4, + "startOffset": 129195, + "endLine": 1574, + "endColumn": 12, + "endOffset": 129332 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1366, + "startColumn": 4, + "startOffset": 104743, + "endLine": 1367, + "endColumn": 12, + "endOffset": 104880 + } + } + }, + { + "to": { + "startLine": 1575, + "startColumn": 4, + "startOffset": 129337, + "endColumn": 111, + "endOffset": 129444 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1368, + "startColumn": 4, + "startOffset": 104885, + "endColumn": 111, + "endOffset": 104992 + } + } + }, + { + "to": { + "startLine": 1576, + "startColumn": 4, + "startOffset": 129449, + "endColumn": 139, + "endOffset": 129584 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1369, + "startColumn": 4, + "startOffset": 104997, + "endColumn": 139, + "endOffset": 105132 + } + } + }, + { + "to": { + "startLine": 1577, + "startColumn": 4, + "startOffset": 129589, + "endLine": 1579, + "endColumn": 12, + "endOffset": 129785 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 78, + "startColumn": 4, + "startOffset": 10786, + "endLine": 80, + "endColumn": 12, + "endOffset": 10982 + } + } + }, + { + "to": { + "startLine": 1580, + "startColumn": 4, + "startOffset": 129790, + "endColumn": 91, + "endOffset": 129877 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 81, + "startColumn": 4, + "startOffset": 10987, + "endColumn": 91, + "endOffset": 11074 + } + } + }, + { + "to": { + "startLine": 1581, + "startColumn": 4, + "startOffset": 129882, + "endLine": 1583, + "endColumn": 12, + "endOffset": 130057 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 82, + "startColumn": 4, + "startOffset": 11079, + "endLine": 84, + "endColumn": 12, + "endOffset": 11254 + } + } + }, + { + "to": { + "startLine": 1584, + "startColumn": 4, + "startOffset": 130062, + "endLine": 1586, + "endColumn": 12, + "endOffset": 130226 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 85, + "startColumn": 4, + "startOffset": 11259, + "endLine": 87, + "endColumn": 12, + "endOffset": 11423 + } + } + }, + { + "to": { + "startLine": 1587, + "startColumn": 4, + "startOffset": 130231, + "endLine": 1589, + "endColumn": 12, + "endOffset": 130401 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 88, + "startColumn": 4, + "startOffset": 11428, + "endLine": 90, + "endColumn": 12, + "endOffset": 11598 + } + } + }, + { + "to": { + "startLine": 1590, + "startColumn": 4, + "startOffset": 130406, + "endLine": 1593, + "endColumn": 12, + "endOffset": 130654 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 91, + "startColumn": 4, + "startOffset": 11603, + "endLine": 94, + "endColumn": 12, + "endOffset": 11851 + } + } + }, + { + "to": { + "startLine": 1594, + "startColumn": 4, + "startOffset": 130659, + "endLine": 1598, + "endColumn": 12, + "endOffset": 130945 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 95, + "startColumn": 4, + "startOffset": 11856, + "endLine": 99, + "endColumn": 12, + "endOffset": 12142 + } + } + }, + { + "to": { + "startLine": 1599, + "startColumn": 4, + "startOffset": 130950, + "endColumn": 67, + "endOffset": 131013 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1370, + "startColumn": 4, + "startOffset": 105137, + "endColumn": 67, + "endOffset": 105200 + } + } + }, + { + "to": { + "startLine": 1600, + "startColumn": 4, + "startOffset": 131018, + "endColumn": 72, + "endOffset": 131086 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1371, + "startColumn": 4, + "startOffset": 105205, + "endColumn": 72, + "endOffset": 105273 + } + } + }, + { + "to": { + "startLine": 1601, + "startColumn": 4, + "startOffset": 131091, + "endColumn": 73, + "endOffset": 131160 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1372, + "startColumn": 4, + "startOffset": 105278, + "endColumn": 73, + "endOffset": 105347 + } + } + }, + { + "to": { + "startLine": 1602, + "startColumn": 4, + "startOffset": 131165, + "endColumn": 72, + "endOffset": 131233 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1373, + "startColumn": 4, + "startOffset": 105352, + "endColumn": 72, + "endOffset": 105420 + } + } + }, + { + "to": { + "startLine": 1603, + "startColumn": 4, + "startOffset": 131238, + "endColumn": 73, + "endOffset": 131307 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1374, + "startColumn": 4, + "startOffset": 105425, + "endColumn": 73, + "endOffset": 105494 + } + } + }, + { + "to": { + "startLine": 1604, + "startColumn": 4, + "startOffset": 131312, + "endLine": 1605, + "endColumn": 12, + "endOffset": 131453 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1375, + "startColumn": 4, + "startOffset": 105499, + "endLine": 1376, + "endColumn": 12, + "endOffset": 105640 + } + } + }, + { + "to": { + "startLine": 1606, + "startColumn": 4, + "startOffset": 131458, + "endLine": 1607, + "endColumn": 12, + "endOffset": 131597 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1377, + "startColumn": 4, + "startOffset": 105645, + "endLine": 1378, + "endColumn": 12, + "endOffset": 105784 + } + } + }, + { + "to": { + "startLine": 1608, + "startColumn": 4, + "startOffset": 131602, + "endLine": 1609, + "endColumn": 12, + "endOffset": 131735 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1379, + "startColumn": 4, + "startOffset": 105789, + "endLine": 1380, + "endColumn": 12, + "endOffset": 105922 + } + } + }, + { + "to": { + "startLine": 1610, + "startColumn": 4, + "startOffset": 131740, + "endColumn": 25, + "endOffset": 131761 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 27, + "startColumn": 4, + "startOffset": 3223, + "endColumn": 25, + "endOffset": 3244 + } + } + }, + { + "to": { + "startLine": 1611, + "startColumn": 4, + "startOffset": 131766, + "endColumn": 65, + "endOffset": 131827 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1381, + "startColumn": 4, + "startOffset": 105927, + "endColumn": 65, + "endOffset": 105988 + } + } + }, + { + "to": { + "startLine": 1612, + "startColumn": 4, + "startOffset": 131832, + "endColumn": 89, + "endOffset": 131917 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1382, + "startColumn": 4, + "startOffset": 105993, + "endColumn": 89, + "endOffset": 106078 + } + } + }, + { + "to": { + "startLine": 1613, + "startColumn": 4, + "startOffset": 131922, + "endColumn": 75, + "endOffset": 131993 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1383, + "startColumn": 4, + "startOffset": 106083, + "endColumn": 75, + "endOffset": 106154 + } + } + }, + { + "to": { + "startLine": 1614, + "startColumn": 4, + "startOffset": 131998, + "endColumn": 103, + "endOffset": 132097 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1384, + "startColumn": 4, + "startOffset": 106159, + "endColumn": 103, + "endOffset": 106258 + } + } + }, + { + "to": { + "startLine": 1615, + "startColumn": 4, + "startOffset": 132102, + "endColumn": 89, + "endOffset": 132187 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1385, + "startColumn": 4, + "startOffset": 106263, + "endColumn": 89, + "endOffset": 106348 + } + } + }, + { + "to": { + "startLine": 1616, + "startColumn": 4, + "startOffset": 132192, + "endColumn": 101, + "endOffset": 132289 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1386, + "startColumn": 4, + "startOffset": 106353, + "endColumn": 101, + "endOffset": 106450 + } + } + }, + { + "to": { + "startLine": 1617, + "startColumn": 4, + "startOffset": 132294, + "endColumn": 107, + "endOffset": 132397 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1387, + "startColumn": 4, + "startOffset": 106455, + "endColumn": 107, + "endOffset": 106558 + } + } + }, + { + "to": { + "startLine": 1618, + "startColumn": 4, + "startOffset": 132402, + "endColumn": 107, + "endOffset": 132505 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1388, + "startColumn": 4, + "startOffset": 106563, + "endColumn": 107, + "endOffset": 106666 + } + } + }, + { + "to": { + "startLine": 1619, + "startColumn": 4, + "startOffset": 132510, + "endColumn": 99, + "endOffset": 132605 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1389, + "startColumn": 4, + "startOffset": 106671, + "endColumn": 99, + "endOffset": 106766 + } + } + }, + { + "to": { + "startLine": 1620, + "startColumn": 4, + "startOffset": 132610, + "endColumn": 79, + "endOffset": 132685 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1390, + "startColumn": 4, + "startOffset": 106771, + "endColumn": 79, + "endOffset": 106846 + } + } + }, + { + "to": { + "startLine": 1621, + "startColumn": 4, + "startOffset": 132690, + "endColumn": 91, + "endOffset": 132777 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1391, + "startColumn": 4, + "startOffset": 106851, + "endColumn": 91, + "endOffset": 106938 + } + } + }, + { + "to": { + "startLine": 1622, + "startColumn": 4, + "startOffset": 132782, + "endColumn": 97, + "endOffset": 132875 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1392, + "startColumn": 4, + "startOffset": 106943, + "endColumn": 97, + "endOffset": 107036 + } + } + }, + { + "to": { + "startLine": 1623, + "startColumn": 4, + "startOffset": 132880, + "endLine": 1624, + "endColumn": 12, + "endOffset": 132985 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1393, + "startColumn": 4, + "startOffset": 107041, + "endLine": 1394, + "endColumn": 12, + "endOffset": 107146 + } + } + }, + { + "to": { + "startLine": 1625, + "startColumn": 4, + "startOffset": 132990, + "endColumn": 77, + "endOffset": 133063 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1395, + "startColumn": 4, + "startOffset": 107151, + "endColumn": 77, + "endOffset": 107224 + } + } + }, + { + "to": { + "startLine": 1626, + "startColumn": 4, + "startOffset": 133068, + "endColumn": 105, + "endOffset": 133169 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1396, + "startColumn": 4, + "startOffset": 107229, + "endColumn": 105, + "endOffset": 107330 + } + } + }, + { + "to": { + "startLine": 1627, + "startColumn": 4, + "startOffset": 133174, + "endColumn": 91, + "endOffset": 133261 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1397, + "startColumn": 4, + "startOffset": 107335, + "endColumn": 91, + "endOffset": 107422 + } + } + }, + { + "to": { + "startLine": 1628, + "startColumn": 4, + "startOffset": 133266, + "endColumn": 103, + "endOffset": 133365 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1398, + "startColumn": 4, + "startOffset": 107427, + "endColumn": 103, + "endOffset": 107526 + } + } + }, + { + "to": { + "startLine": 1629, + "startColumn": 4, + "startOffset": 133370, + "endColumn": 109, + "endOffset": 133475 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1399, + "startColumn": 4, + "startOffset": 107531, + "endColumn": 109, + "endOffset": 107636 + } + } + }, + { + "to": { + "startLine": 1630, + "startColumn": 4, + "startOffset": 133480, + "endLine": 1631, + "endColumn": 12, + "endOffset": 133597 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1400, + "startColumn": 4, + "startOffset": 107641, + "endLine": 1401, + "endColumn": 12, + "endOffset": 107758 + } + } + }, + { + "to": { + "startLine": 1632, + "startColumn": 4, + "startOffset": 133602, + "endLine": 1635, + "endColumn": 12, + "endOffset": 133760 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1402, + "startColumn": 4, + "startOffset": 107763, + "endLine": 1405, + "endColumn": 12, + "endOffset": 107921 + } + } + }, + { + "to": { + "startLine": 1636, + "startColumn": 4, + "startOffset": 133765, + "endLine": 1639, + "endColumn": 12, + "endOffset": 133917 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1406, + "startColumn": 4, + "startOffset": 107926, + "endLine": 1409, + "endColumn": 12, + "endOffset": 108078 + } + } + }, + { + "to": { + "startLine": 1640, + "startColumn": 4, + "startOffset": 133922, + "endColumn": 34, + "endOffset": 133952 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 28, + "startColumn": 4, + "startOffset": 3249, + "endColumn": 34, + "endOffset": 3279 + } + } + }, + { + "to": { + "startLine": 1641, + "startColumn": 4, + "startOffset": 133957, + "endLine": 1647, + "endColumn": 10, + "endOffset": 134418 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 29, + "startColumn": 4, + "startOffset": 3284, + "endLine": 35, + "endColumn": 10, + "endOffset": 3745 + } + } + }, + { + "to": { + "startLine": 1648, + "startColumn": 4, + "startOffset": 134423, + "endLine": 1650, + "endColumn": 12, + "endOffset": 134572 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 100, + "startColumn": 4, + "startOffset": 12147, + "endLine": 102, + "endColumn": 12, + "endOffset": 12296 + } + } + }, + { + "to": { + "startLine": 1651, + "startColumn": 4, + "startOffset": 134577, + "endLine": 1655, + "endColumn": 12, + "endOffset": 134930 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 103, + "startColumn": 4, + "startOffset": 12301, + "endLine": 107, + "endColumn": 12, + "endOffset": 12654 + } + } + }, + { + "to": { + "startLine": 1656, + "startColumn": 4, + "startOffset": 134935, + "endLine": 1658, + "endColumn": 12, + "endOffset": 135097 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 108, + "startColumn": 4, + "startOffset": 12659, + "endLine": 110, + "endColumn": 12, + "endOffset": 12821 + } + } + }, + { + "to": { + "startLine": 1659, + "startColumn": 4, + "startOffset": 135102, + "endLine": 1663, + "endColumn": 12, + "endOffset": 135467 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 111, + "startColumn": 4, + "startOffset": 12826, + "endLine": 115, + "endColumn": 12, + "endOffset": 13191 + } + } + }, + { + "to": { + "startLine": 1664, + "startColumn": 4, + "startOffset": 135472, + "endLine": 1667, + "endColumn": 12, + "endOffset": 135627 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 116, + "startColumn": 4, + "startOffset": 13196, + "endLine": 119, + "endColumn": 12, + "endOffset": 13351 + } + } + }, + { + "to": { + "startLine": 1668, + "startColumn": 4, + "startOffset": 135632, + "endLine": 1671, + "endColumn": 12, + "endOffset": 135781 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 120, + "startColumn": 4, + "startOffset": 13356, + "endLine": 123, + "endColumn": 12, + "endOffset": 13505 + } + } + }, + { + "to": { + "startLine": 1672, + "startColumn": 4, + "startOffset": 135786, + "endLine": 1674, + "endColumn": 12, + "endOffset": 135964 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 36, + "startColumn": 4, + "startOffset": 3750, + "endLine": 38, + "endColumn": 12, + "endOffset": 3928 + } + } + }, + { + "to": { + "startLine": 1675, + "startColumn": 4, + "startOffset": 135969, + "endLine": 1680, + "endColumn": 12, + "endOffset": 136329 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 39, + "startColumn": 4, + "startOffset": 3933, + "endLine": 44, + "endColumn": 12, + "endOffset": 4293 + } + } + }, + { + "to": { + "startLine": 1681, + "startColumn": 4, + "startOffset": 136334, + "endColumn": 79, + "endOffset": 136409 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1410, + "startColumn": 4, + "startOffset": 108083, + "endColumn": 79, + "endOffset": 108158 + } + } + }, + { + "to": { + "startLine": 1682, + "startColumn": 4, + "startOffset": 136414, + "endColumn": 99, + "endOffset": 136509 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1411, + "startColumn": 4, + "startOffset": 108163, + "endColumn": 99, + "endOffset": 108258 + } + } + }, + { + "to": { + "startLine": 1683, + "startColumn": 4, + "startOffset": 136514, + "endColumn": 89, + "endOffset": 136599 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1412, + "startColumn": 4, + "startOffset": 108263, + "endColumn": 89, + "endOffset": 108348 + } + } + }, + { + "to": { + "startLine": 1684, + "startColumn": 4, + "startOffset": 136604, + "endColumn": 109, + "endOffset": 136709 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1413, + "startColumn": 4, + "startOffset": 108353, + "endColumn": 109, + "endOffset": 108458 + } + } + }, + { + "to": { + "startLine": 1685, + "startColumn": 4, + "startOffset": 136714, + "endColumn": 91, + "endOffset": 136801 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1414, + "startColumn": 4, + "startOffset": 108463, + "endColumn": 91, + "endOffset": 108550 + } + } + }, + { + "to": { + "startLine": 1686, + "startColumn": 4, + "startOffset": 136806, + "endLine": 1687, + "endColumn": 12, + "endOffset": 136901 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1415, + "startColumn": 4, + "startOffset": 108555, + "endLine": 1416, + "endColumn": 12, + "endOffset": 108650 + } + } + }, + { + "to": { + "startLine": 1688, + "startColumn": 4, + "startOffset": 136906, + "endLine": 1689, + "endColumn": 12, + "endOffset": 137013 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1417, + "startColumn": 4, + "startOffset": 108655, + "endLine": 1418, + "endColumn": 12, + "endOffset": 108762 + } + } + }, + { + "to": { + "startLine": 1690, + "startColumn": 4, + "startOffset": 137018, + "endLine": 1691, + "endColumn": 12, + "endOffset": 137127 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1419, + "startColumn": 4, + "startOffset": 108767, + "endLine": 1420, + "endColumn": 12, + "endOffset": 108876 + } + } + }, + { + "to": { + "startLine": 1692, + "startColumn": 4, + "startOffset": 137132, + "endLine": 1693, + "endColumn": 12, + "endOffset": 137243 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1421, + "startColumn": 4, + "startOffset": 108881, + "endLine": 1422, + "endColumn": 12, + "endOffset": 108992 + } + } + }, + { + "to": { + "startLine": 1694, + "startColumn": 4, + "startOffset": 137248, + "endLine": 1695, + "endColumn": 12, + "endOffset": 137359 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1423, + "startColumn": 4, + "startOffset": 108997, + "endLine": 1424, + "endColumn": 12, + "endOffset": 109108 + } + } + }, + { + "to": { + "startLine": 1696, + "startColumn": 4, + "startOffset": 137364, + "endColumn": 93, + "endOffset": 137453 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1425, + "startColumn": 4, + "startOffset": 109113, + "endColumn": 93, + "endOffset": 109202 + } + } + }, + { + "to": { + "startLine": 1697, + "startColumn": 4, + "startOffset": 137458, + "endColumn": 113, + "endOffset": 137567 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1426, + "startColumn": 4, + "startOffset": 109207, + "endColumn": 113, + "endOffset": 109316 + } + } + }, + { + "to": { + "startLine": 1698, + "startColumn": 4, + "startOffset": 137572, + "endColumn": 111, + "endOffset": 137679 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1427, + "startColumn": 4, + "startOffset": 109321, + "endColumn": 111, + "endOffset": 109428 + } + } + }, + { + "to": { + "startLine": 1699, + "startColumn": 4, + "startOffset": 137684, + "endLine": 1700, + "endColumn": 12, + "endOffset": 137781 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1428, + "startColumn": 4, + "startOffset": 109433, + "endLine": 1429, + "endColumn": 12, + "endOffset": 109530 + } + } + }, + { + "to": { + "startLine": 1701, + "startColumn": 4, + "startOffset": 137786, + "endLine": 1702, + "endColumn": 12, + "endOffset": 137901 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1430, + "startColumn": 4, + "startOffset": 109535, + "endLine": 1431, + "endColumn": 12, + "endOffset": 109650 + } + } + }, + { + "to": { + "startLine": 1703, + "startColumn": 4, + "startOffset": 137906, + "endLine": 1704, + "endColumn": 12, + "endOffset": 138023 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1432, + "startColumn": 4, + "startOffset": 109655, + "endLine": 1433, + "endColumn": 12, + "endOffset": 109772 + } + } + }, + { + "to": { + "startLine": 1705, + "startColumn": 4, + "startOffset": 138028, + "endColumn": 81, + "endOffset": 138105 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1434, + "startColumn": 4, + "startOffset": 109777, + "endColumn": 81, + "endOffset": 109854 + } + } + }, + { + "to": { + "startLine": 1706, + "startColumn": 4, + "startOffset": 138110, + "endColumn": 103, + "endOffset": 138209 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1435, + "startColumn": 4, + "startOffset": 109859, + "endColumn": 103, + "endOffset": 109958 + } + } + }, + { + "to": { + "startLine": 1707, + "startColumn": 4, + "startOffset": 138214, + "endColumn": 119, + "endOffset": 138329 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1436, + "startColumn": 4, + "startOffset": 109963, + "endColumn": 119, + "endOffset": 110078 + } + } + }, + { + "to": { + "startLine": 1708, + "startColumn": 4, + "startOffset": 138334, + "endColumn": 125, + "endOffset": 138455 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1437, + "startColumn": 4, + "startOffset": 110083, + "endColumn": 125, + "endOffset": 110204 + } + } + }, + { + "to": { + "startLine": 1709, + "startColumn": 4, + "startOffset": 138460, + "endColumn": 97, + "endOffset": 138553 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1438, + "startColumn": 4, + "startOffset": 110209, + "endColumn": 97, + "endOffset": 110302 + } + } + }, + { + "to": { + "startLine": 1710, + "startColumn": 4, + "startOffset": 138558, + "endColumn": 93, + "endOffset": 138647 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1439, + "startColumn": 4, + "startOffset": 110307, + "endColumn": 93, + "endOffset": 110396 + } + } + }, + { + "to": { + "startLine": 1711, + "startColumn": 4, + "startOffset": 138652, + "endColumn": 87, + "endOffset": 138735 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1440, + "startColumn": 4, + "startOffset": 110401, + "endColumn": 87, + "endOffset": 110484 + } + } + }, + { + "to": { + "startLine": 1712, + "startColumn": 4, + "startOffset": 138740, + "endColumn": 111, + "endOffset": 138847 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1441, + "startColumn": 4, + "startOffset": 110489, + "endColumn": 111, + "endOffset": 110596 + } + } + }, + { + "to": { + "startLine": 1713, + "startColumn": 4, + "startOffset": 138852, + "endColumn": 115, + "endOffset": 138963 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1442, + "startColumn": 4, + "startOffset": 110601, + "endColumn": 115, + "endOffset": 110712 + } + } + }, + { + "to": { + "startLine": 1714, + "startColumn": 4, + "startOffset": 138968, + "endColumn": 121, + "endOffset": 139085 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1443, + "startColumn": 4, + "startOffset": 110717, + "endColumn": 121, + "endOffset": 110834 + } + } + }, + { + "to": { + "startLine": 1715, + "startColumn": 4, + "startOffset": 139090, + "endColumn": 111, + "endOffset": 139197 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1444, + "startColumn": 4, + "startOffset": 110839, + "endColumn": 111, + "endOffset": 110946 + } + } + }, + { + "to": { + "startLine": 1716, + "startColumn": 4, + "startOffset": 139202, + "endLine": 1718, + "endColumn": 12, + "endOffset": 139372 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1445, + "startColumn": 4, + "startOffset": 110951, + "endLine": 1447, + "endColumn": 12, + "endOffset": 111121 + } + } + }, + { + "to": { + "startLine": 1719, + "startColumn": 4, + "startOffset": 139377, + "endColumn": 115, + "endOffset": 139488 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1448, + "startColumn": 4, + "startOffset": 111126, + "endColumn": 115, + "endOffset": 111237 + } + } + }, + { + "to": { + "startLine": 1720, + "startColumn": 4, + "startOffset": 139493, + "endColumn": 85, + "endOffset": 139574 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1449, + "startColumn": 4, + "startOffset": 111242, + "endColumn": 85, + "endOffset": 111323 + } + } + }, + { + "to": { + "startLine": 1721, + "startColumn": 4, + "startOffset": 139579, + "endColumn": 91, + "endOffset": 139666 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1450, + "startColumn": 4, + "startOffset": 111328, + "endColumn": 91, + "endOffset": 111415 + } + } + }, + { + "to": { + "startLine": 1722, + "startColumn": 4, + "startOffset": 139671, + "endLine": 1723, + "endColumn": 12, + "endOffset": 139778 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1451, + "startColumn": 4, + "startOffset": 111420, + "endLine": 1452, + "endColumn": 12, + "endOffset": 111527 + } + } + }, + { + "to": { + "startLine": 1724, + "startColumn": 4, + "startOffset": 139783, + "endLine": 1725, + "endColumn": 12, + "endOffset": 139902 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1453, + "startColumn": 4, + "startOffset": 111532, + "endLine": 1454, + "endColumn": 12, + "endOffset": 111651 + } + } + }, + { + "to": { + "startLine": 1726, + "startColumn": 4, + "startOffset": 139907, + "endColumn": 66, + "endOffset": 139969 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1455, + "startColumn": 4, + "startOffset": 111656, + "endColumn": 66, + "endOffset": 111718 + } + } + }, + { + "to": { + "startLine": 1727, + "startColumn": 4, + "startOffset": 139974, + "endLine": 1728, + "endColumn": 12, + "endOffset": 140095 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1456, + "startColumn": 4, + "startOffset": 111723, + "endLine": 1457, + "endColumn": 12, + "endOffset": 111844 + } + } + }, + { + "to": { + "startLine": 1729, + "startColumn": 4, + "startOffset": 140100, + "endColumn": 67, + "endOffset": 140163 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1458, + "startColumn": 4, + "startOffset": 111849, + "endColumn": 67, + "endOffset": 111912 + } + } + }, + { + "to": { + "startLine": 1730, + "startColumn": 4, + "startOffset": 140168, + "endLine": 1731, + "endColumn": 12, + "endOffset": 140291 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1459, + "startColumn": 4, + "startOffset": 111917, + "endLine": 1460, + "endColumn": 12, + "endOffset": 112040 + } + } + }, + { + "to": { + "startLine": 1732, + "startColumn": 4, + "startOffset": 140296, + "endLine": 1733, + "endColumn": 12, + "endOffset": 140435 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1461, + "startColumn": 4, + "startOffset": 112045, + "endLine": 1462, + "endColumn": 12, + "endOffset": 112184 + } + } + }, + { + "to": { + "startLine": 1734, + "startColumn": 4, + "startOffset": 140440, + "endLine": 1735, + "endColumn": 12, + "endOffset": 140563 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1463, + "startColumn": 4, + "startOffset": 112189, + "endLine": 1464, + "endColumn": 12, + "endOffset": 112312 + } + } + }, + { + "to": { + "startLine": 1736, + "startColumn": 4, + "startOffset": 140568, + "endColumn": 68, + "endOffset": 140632 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1465, + "startColumn": 4, + "startOffset": 112317, + "endColumn": 68, + "endOffset": 112381 + } + } + }, + { + "to": { + "startLine": 1737, + "startColumn": 4, + "startOffset": 140637, + "endColumn": 94, + "endOffset": 140727 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1466, + "startColumn": 4, + "startOffset": 112386, + "endColumn": 94, + "endOffset": 112476 + } + } + }, + { + "to": { + "startLine": 1738, + "startColumn": 4, + "startOffset": 140732, + "endColumn": 114, + "endOffset": 140842 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1467, + "startColumn": 4, + "startOffset": 112481, + "endColumn": 114, + "endOffset": 112591 + } + } + }, + { + "to": { + "startLine": 1739, + "startColumn": 4, + "startOffset": 140847, + "endColumn": 112, + "endOffset": 140955 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1468, + "startColumn": 4, + "startOffset": 112596, + "endColumn": 112, + "endOffset": 112704 + } + } + }, + { + "to": { + "startLine": 1740, + "startColumn": 4, + "startOffset": 140960, + "endColumn": 98, + "endOffset": 141054 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1469, + "startColumn": 4, + "startOffset": 112709, + "endColumn": 98, + "endOffset": 112803 + } + } + }, + { + "to": { + "startLine": 1741, + "startColumn": 4, + "startOffset": 141059, + "endColumn": 108, + "endOffset": 141163 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1470, + "startColumn": 4, + "startOffset": 112808, + "endColumn": 108, + "endOffset": 112912 + } + } + }, + { + "to": { + "startLine": 1742, + "startColumn": 4, + "startOffset": 141168, + "endColumn": 110, + "endOffset": 141274 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1471, + "startColumn": 4, + "startOffset": 112917, + "endColumn": 110, + "endOffset": 113023 + } + } + }, + { + "to": { + "startLine": 1743, + "startColumn": 4, + "startOffset": 141279, + "endColumn": 110, + "endOffset": 141385 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1472, + "startColumn": 4, + "startOffset": 113028, + "endColumn": 110, + "endOffset": 113134 + } + } + }, + { + "to": { + "startLine": 1744, + "startColumn": 4, + "startOffset": 141390, + "endColumn": 100, + "endOffset": 141486 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1473, + "startColumn": 4, + "startOffset": 113139, + "endColumn": 100, + "endOffset": 113235 + } + } + }, + { + "to": { + "startLine": 1745, + "startColumn": 4, + "startOffset": 141491, + "endColumn": 104, + "endOffset": 141591 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1474, + "startColumn": 4, + "startOffset": 113240, + "endColumn": 104, + "endOffset": 113340 + } + } + }, + { + "to": { + "startLine": 1746, + "startColumn": 4, + "startOffset": 141596, + "endLine": 1747, + "endColumn": 12, + "endOffset": 141703 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1475, + "startColumn": 4, + "startOffset": 113345, + "endLine": 1476, + "endColumn": 12, + "endOffset": 113452 + } + } + }, + { + "to": { + "startLine": 1748, + "startColumn": 4, + "startOffset": 141708, + "endLine": 1749, + "endColumn": 12, + "endOffset": 141833 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1477, + "startColumn": 4, + "startOffset": 113457, + "endLine": 1478, + "endColumn": 12, + "endOffset": 113582 + } + } + }, + { + "to": { + "startLine": 1750, + "startColumn": 4, + "startOffset": 141838, + "endColumn": 90, + "endOffset": 141924 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1479, + "startColumn": 4, + "startOffset": 113587, + "endColumn": 90, + "endOffset": 113673 + } + } + }, + { + "to": { + "startLine": 1751, + "startColumn": 4, + "startOffset": 141929, + "endColumn": 122, + "endOffset": 142047 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1480, + "startColumn": 4, + "startOffset": 113678, + "endColumn": 122, + "endOffset": 113796 + } + } + }, + { + "to": { + "startLine": 1752, + "startColumn": 4, + "startOffset": 142052, + "endLine": 1753, + "endColumn": 12, + "endOffset": 142159 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1481, + "startColumn": 4, + "startOffset": 113801, + "endLine": 1482, + "endColumn": 12, + "endOffset": 113908 + } + } + }, + { + "to": { + "startLine": 1754, + "startColumn": 4, + "startOffset": 142164, + "endColumn": 85, + "endOffset": 142245 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1483, + "startColumn": 4, + "startOffset": 113913, + "endColumn": 85, + "endOffset": 113994 + } + } + }, + { + "to": { + "startLine": 1755, + "startColumn": 4, + "startOffset": 142250, + "endColumn": 103, + "endOffset": 142349 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1484, + "startColumn": 4, + "startOffset": 113999, + "endColumn": 103, + "endOffset": 114098 + } + } + }, + { + "to": { + "startLine": 1756, + "startColumn": 4, + "startOffset": 142354, + "endLine": 1757, + "endColumn": 12, + "endOffset": 142457 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1485, + "startColumn": 4, + "startOffset": 114103, + "endLine": 1486, + "endColumn": 12, + "endOffset": 114206 + } + } + }, + { + "to": { + "startLine": 1758, + "startColumn": 4, + "startOffset": 142462, + "endLine": 1759, + "endColumn": 12, + "endOffset": 142557 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1487, + "startColumn": 4, + "startOffset": 114211, + "endLine": 1488, + "endColumn": 12, + "endOffset": 114306 + } + } + }, + { + "to": { + "startLine": 1760, + "startColumn": 4, + "startOffset": 142562, + "endLine": 1761, + "endColumn": 12, + "endOffset": 142675 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1489, + "startColumn": 4, + "startOffset": 114311, + "endLine": 1490, + "endColumn": 12, + "endOffset": 114424 + } + } + }, + { + "to": { + "startLine": 1762, + "startColumn": 4, + "startOffset": 142680, + "endLine": 1763, + "endColumn": 12, + "endOffset": 142779 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1491, + "startColumn": 4, + "startOffset": 114429, + "endLine": 1492, + "endColumn": 12, + "endOffset": 114528 + } + } + }, + { + "to": { + "startLine": 1764, + "startColumn": 4, + "startOffset": 142784, + "endLine": 1765, + "endColumn": 12, + "endOffset": 142883 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1493, + "startColumn": 4, + "startOffset": 114533, + "endLine": 1494, + "endColumn": 12, + "endOffset": 114632 + } + } + }, + { + "to": { + "startLine": 1766, + "startColumn": 4, + "startOffset": 142888, + "endLine": 1767, + "endColumn": 12, + "endOffset": 143009 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1495, + "startColumn": 4, + "startOffset": 114637, + "endLine": 1496, + "endColumn": 12, + "endOffset": 114758 + } + } + }, + { + "to": { + "startLine": 1768, + "startColumn": 4, + "startOffset": 143014, + "endColumn": 87, + "endOffset": 143097 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1497, + "startColumn": 4, + "startOffset": 114763, + "endColumn": 87, + "endOffset": 114846 + } + } + }, + { + "to": { + "startLine": 1769, + "startColumn": 4, + "startOffset": 143102, + "endColumn": 107, + "endOffset": 143205 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1498, + "startColumn": 4, + "startOffset": 114851, + "endColumn": 107, + "endOffset": 114954 + } + } + }, + { + "to": { + "startLine": 1770, + "startColumn": 4, + "startOffset": 143210, + "endColumn": 99, + "endOffset": 143305 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1499, + "startColumn": 4, + "startOffset": 114959, + "endColumn": 99, + "endOffset": 115054 + } + } + }, + { + "to": { + "startLine": 1771, + "startColumn": 4, + "startOffset": 143310, + "endColumn": 89, + "endOffset": 143395 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1500, + "startColumn": 4, + "startOffset": 115059, + "endColumn": 89, + "endOffset": 115144 + } + } + }, + { + "to": { + "startLine": 1772, + "startColumn": 4, + "startOffset": 143400, + "endColumn": 109, + "endOffset": 143505 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1501, + "startColumn": 4, + "startOffset": 115149, + "endColumn": 109, + "endOffset": 115254 + } + } + }, + { + "to": { + "startLine": 1773, + "startColumn": 4, + "startOffset": 143510, + "endColumn": 83, + "endOffset": 143589 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1502, + "startColumn": 4, + "startOffset": 115259, + "endColumn": 83, + "endOffset": 115338 + } + } + }, + { + "to": { + "startLine": 1774, + "startColumn": 4, + "startOffset": 143594, + "endColumn": 83, + "endOffset": 143673 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1503, + "startColumn": 4, + "startOffset": 115343, + "endColumn": 83, + "endOffset": 115422 + } + } + }, + { + "to": { + "startLine": 1775, + "startColumn": 4, + "startOffset": 143678, + "endColumn": 53, + "endOffset": 143727 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1504, + "startColumn": 4, + "startOffset": 115427, + "endColumn": 53, + "endOffset": 115476 + } + } + }, + { + "to": { + "startLine": 1776, + "startColumn": 4, + "startOffset": 143732, + "endColumn": 63, + "endOffset": 143791 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1505, + "startColumn": 4, + "startOffset": 115481, + "endColumn": 63, + "endOffset": 115540 + } + } + }, + { + "to": { + "startLine": 1777, + "startColumn": 4, + "startOffset": 143796, + "endColumn": 105, + "endOffset": 143897 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1506, + "startColumn": 4, + "startOffset": 115545, + "endColumn": 105, + "endOffset": 115646 + } + } + }, + { + "to": { + "startLine": 1778, + "startColumn": 4, + "startOffset": 143902, + "endColumn": 109, + "endOffset": 144007 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1507, + "startColumn": 4, + "startOffset": 115651, + "endColumn": 109, + "endOffset": 115756 + } + } + }, + { + "to": { + "startLine": 1779, + "startColumn": 4, + "startOffset": 144012, + "endColumn": 83, + "endOffset": 144091 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1508, + "startColumn": 4, + "startOffset": 115761, + "endColumn": 83, + "endOffset": 115840 + } + } + }, + { + "to": { + "startLine": 1780, + "startColumn": 4, + "startOffset": 144096, + "endColumn": 119, + "endOffset": 144211 + }, + "from": { + "file": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values/values.xml", + "position": { + "startLine": 1509, + "startColumn": 4, + "startOffset": 115845, + "endColumn": 119, + "endOffset": 115960 + } + } + }, + { + "to": { + "startLine": 1781, + "startColumn": 4, + "startOffset": 144216, + "endLine": 1784, + "endColumn": 12, + "endOffset": 144429 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 124, + "startColumn": 4, + "startOffset": 13510, + "endLine": 127, + "endColumn": 12, + "endOffset": 13723 + } + } + }, + { + "to": { + "startLine": 1785, + "startColumn": 4, + "startOffset": 144434, + "endLine": 1790, + "endColumn": 12, + "endOffset": 144827 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 128, + "startColumn": 4, + "startOffset": 13728, + "endLine": 133, + "endColumn": 12, + "endOffset": 14121 + } + } + }, + { + "to": { + "startLine": 1791, + "startColumn": 4, + "startOffset": 144832, + "endLine": 1794, + "endColumn": 12, + "endOffset": 145034 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 134, + "startColumn": 4, + "startOffset": 14126, + "endLine": 137, + "endColumn": 12, + "endOffset": 14328 + } + } + }, + { + "to": { + "startLine": 1795, + "startColumn": 4, + "startOffset": 145039, + "endLine": 1797, + "endColumn": 12, + "endOffset": 145193 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 138, + "startColumn": 4, + "startOffset": 14333, + "endLine": 140, + "endColumn": 12, + "endOffset": 14487 + } + } + }, + { + "to": { + "startLine": 1798, + "startColumn": 4, + "startOffset": 145198, + "endLine": 1806, + "endColumn": 12, + "endOffset": 145760 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 141, + "startColumn": 4, + "startOffset": 14492, + "endLine": 149, + "endColumn": 12, + "endOffset": 15054 + } + } + }, + { + "to": { + "startLine": 1807, + "startColumn": 4, + "startOffset": 145765, + "endLine": 1812, + "endColumn": 12, + "endOffset": 146121 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 150, + "startColumn": 4, + "startOffset": 15059, + "endLine": 155, + "endColumn": 12, + "endOffset": 15415 + } + } + }, + { + "to": { + "startLine": 1813, + "startColumn": 4, + "startOffset": 146126, + "endLine": 1815, + "endColumn": 12, + "endOffset": 146250 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 156, + "startColumn": 4, + "startOffset": 15420, + "endLine": 158, + "endColumn": 12, + "endOffset": 15544 + } + } + }, + { + "to": { + "startLine": 1816, + "startColumn": 4, + "startOffset": 146255, + "endLine": 1825, + "endColumn": 12, + "endOffset": 146994 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 159, + "startColumn": 4, + "startOffset": 15549, + "endLine": 168, + "endColumn": 12, + "endOffset": 16288 + } + } + }, + { + "to": { + "startLine": 1826, + "startColumn": 4, + "startOffset": 146999, + "endLine": 1829, + "endColumn": 12, + "endOffset": 147174 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 169, + "startColumn": 4, + "startOffset": 16293, + "endLine": 172, + "endColumn": 12, + "endOffset": 16468 + } + } + }, + { + "to": { + "startLine": 1830, + "startColumn": 4, + "startOffset": 147179, + "endLine": 1835, + "endColumn": 12, + "endOffset": 147615 + }, + "from": { + "file": "/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/values/values.xml", + "position": { + "startLine": 173, + "startColumn": 4, + "startOffset": 16473, + "endLine": 178, + "endColumn": 12, + "endOffset": 16909 + } + } + } + ] + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/single/anim-v21.json b/android/build/intermediates/blame/res/debug/single/anim-v21.json new file mode 100644 index 000000000..a05b55c94 --- /dev/null +++ b/android/build/intermediates/blame/res/debug/single/anim-v21.json @@ -0,0 +1,10 @@ +[ + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/single/anim.json b/android/build/intermediates/blame/res/debug/single/anim.json new file mode 100644 index 000000000..085494fc5 --- /dev/null +++ b/android/build/intermediates/blame/res/debug/single/anim.json @@ -0,0 +1,74 @@ +[ + { + "merged": "/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", + "source": "/Users/andrejunqueira/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/anim/design_snackbar_in.xml", + "source": "/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/anim/abc_popup_enter.xml", + "source": "/Users/andrejunqueira/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/anim/design_fab_out.xml", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/anim/catalyst_push_up_out.xml", + "source": "/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/anim/catalyst_push_up_in.xml", + "source": "/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/anim/abc_fade_out.xml", + "source": "/Users/andrejunqueira/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/anim/abc_slide_out_top.xml", + "source": "/Users/andrejunqueira/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/anim/abc_popup_exit.xml", + "source": "/Users/andrejunqueira/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/anim/abc_fade_in.xml", + "source": "/Users/andrejunqueira/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/anim/abc_slide_in_top.xml", + "source": "/Users/andrejunqueira/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/anim/abc_slide_in_bottom.xml", + "source": "/Users/andrejunqueira/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/anim/design_snackbar_out.xml", + "source": "/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/anim/design_fab_in.xml", + "source": "/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/anim/abc_slide_out_bottom.xml", + "source": "/Users/andrejunqueira/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" + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/single/color-v11.json b/android/build/intermediates/blame/res/debug/single/color-v11.json new file mode 100644 index 000000000..570ae0510 --- /dev/null +++ b/android/build/intermediates/blame/res/debug/single/color-v11.json @@ -0,0 +1,10 @@ +[ + { + "merged": "/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", + "source": "/Users/andrejunqueira/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/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" + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/single/color-v23.json b/android/build/intermediates/blame/res/debug/single/color-v23.json new file mode 100644 index 000000000..0d2ec4c3d --- /dev/null +++ b/android/build/intermediates/blame/res/debug/single/color-v23.json @@ -0,0 +1,6 @@ +[ + { + "merged": "/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", + "source": "/Users/andrejunqueira/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" + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/single/color.json b/android/build/intermediates/blame/res/debug/single/color.json new file mode 100644 index 000000000..6db40c621 --- /dev/null +++ b/android/build/intermediates/blame/res/debug/single/color.json @@ -0,0 +1,38 @@ +[ + { + "merged": "/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", + "source": "/Users/andrejunqueira/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/color/switch_thumb_material_dark.xml", + "source": "/Users/andrejunqueira/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/color/switch_thumb_material_light.xml", + "source": "/Users/andrejunqueira/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/color/abc_search_url_text.xml", + "source": "/Users/andrejunqueira/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/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" + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/single/drawable-anydpi-v21.json b/android/build/intermediates/blame/res/debug/single/drawable-anydpi-v21.json new file mode 100644 index 000000000..09fe9e7fb --- /dev/null +++ b/android/build/intermediates/blame/res/debug/single/drawable-anydpi-v21.json @@ -0,0 +1,82 @@ +[ + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-anydpi-v21/ic_monochrome.xml", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_monochrome.xml" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-anydpi-v21/ic_settings.xml", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_settings.xml" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-anydpi-v21/ic_palette.xml", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_palette.xml" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-anydpi-v21/angle.xml", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-anydpi-v21/angle.xml" + }, + { + "merged": "/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", + "source": "/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" + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/single/drawable-hdpi-v4.json b/android/build/intermediates/blame/res/debug/single/drawable-hdpi-v4.json new file mode 100644 index 000000000..ed6f5a98c --- /dev/null +++ b/android/build/intermediates/blame/res/debug/single/drawable-hdpi-v4.json @@ -0,0 +1,274 @@ +[ + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-hdpi/ic_tag_star.png" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-hdpi/ic_tag_bell.png" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-hdpi/ic_camera_green.png" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/angle.png", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-hdpi/angle.png" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-hdpi/ic_tag_magnet.png" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/ic_settings.png", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-hdpi/ic_settings.png" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-hdpi/ic_menu_tag.png" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-hdpi/ic_tag_tv.png" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-hdpi/ic_tag_game.png" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-hdpi/ic_tag_gift.png" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-hdpi/ic_launcher_background.png" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/drawable-hdpi/ic_delete_white_24dp.png" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-hdpi/ic_tag_rocket.png" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/ic_palette.png", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-hdpi/ic_palette.png" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-hdpi-v4/ic_monochrome.png", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-hdpi/ic_monochrome.png" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/single/drawable-ldpi-v4.json b/android/build/intermediates/blame/res/debug/single/drawable-ldpi-v4.json new file mode 100644 index 000000000..957dd7e56 --- /dev/null +++ b/android/build/intermediates/blame/res/debug/single/drawable-ldpi-v4.json @@ -0,0 +1,82 @@ +[ + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-ldpi/ic_tag_tv.png" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-ldpi/ic_tag_rocket.png" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-ldpi/ic_tag_game.png" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-ldpi/ic_camera_green.png" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-ldpi/ic_menu_tag.png" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-ldpi/ic_tag_bell.png" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-ldpi-v4/angle.png", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-ldpi/angle.png" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-ldpi/ic_tag_star.png" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-ldpi-v4/ic_palette.png", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-ldpi/ic_palette.png" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-ldpi-v4/ic_settings.png", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-ldpi/ic_settings.png" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-ldpi/ic_tag_gift.png" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-ldpi/ic_launcher_background.png" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-ldpi-v4/ic_monochrome.png", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-ldpi/ic_monochrome.png" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-ldpi/ic_tag_magnet.png" + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/single/drawable-ldrtl-hdpi-v17.json b/android/build/intermediates/blame/res/debug/single/drawable-ldrtl-hdpi-v17.json new file mode 100644 index 000000000..ea424ed7e --- /dev/null +++ b/android/build/intermediates/blame/res/debug/single/drawable-ldrtl-hdpi-v17.json @@ -0,0 +1,18 @@ +[ + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/single/drawable-ldrtl-mdpi-v17.json b/android/build/intermediates/blame/res/debug/single/drawable-ldrtl-mdpi-v17.json new file mode 100644 index 000000000..78e94d2db --- /dev/null +++ b/android/build/intermediates/blame/res/debug/single/drawable-ldrtl-mdpi-v17.json @@ -0,0 +1,18 @@ +[ + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/single/drawable-ldrtl-xhdpi-v17.json b/android/build/intermediates/blame/res/debug/single/drawable-ldrtl-xhdpi-v17.json new file mode 100644 index 000000000..4d633a9cf --- /dev/null +++ b/android/build/intermediates/blame/res/debug/single/drawable-ldrtl-xhdpi-v17.json @@ -0,0 +1,18 @@ +[ + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/single/drawable-ldrtl-xxhdpi-v17.json b/android/build/intermediates/blame/res/debug/single/drawable-ldrtl-xxhdpi-v17.json new file mode 100644 index 000000000..0385f65d4 --- /dev/null +++ b/android/build/intermediates/blame/res/debug/single/drawable-ldrtl-xxhdpi-v17.json @@ -0,0 +1,18 @@ +[ + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/single/drawable-ldrtl-xxxhdpi-v17.json b/android/build/intermediates/blame/res/debug/single/drawable-ldrtl-xxxhdpi-v17.json new file mode 100644 index 000000000..1062594fb --- /dev/null +++ b/android/build/intermediates/blame/res/debug/single/drawable-ldrtl-xxxhdpi-v17.json @@ -0,0 +1,18 @@ +[ + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/single/drawable-mdpi-v4.json b/android/build/intermediates/blame/res/debug/single/drawable-mdpi-v4.json new file mode 100644 index 000000000..b2e6e2c9e --- /dev/null +++ b/android/build/intermediates/blame/res/debug/single/drawable-mdpi-v4.json @@ -0,0 +1,274 @@ +[ + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/ic_monochrome.png", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-mdpi/ic_monochrome.png" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-mdpi/ic_tag_rocket.png" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/ic_settings.png", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-mdpi/ic_settings.png" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-mdpi/ic_camera_green.png" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-mdpi/ic_tag_magnet.png" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/ic_palette.png", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-mdpi/ic_palette.png" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-mdpi-v4/angle.png", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-mdpi/angle.png" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/drawable-mdpi/ic_delete_white_24dp.png" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-mdpi/ic_tag_star.png" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-mdpi/ic_tag_bell.png" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-mdpi/ic_tag_tv.png" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-mdpi/ic_tag_gift.png" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-mdpi/ic_launcher_background.png" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-mdpi/ic_menu_tag.png" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-mdpi/ic_tag_game.png" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/single/drawable-v21.json b/android/build/intermediates/blame/res/debug/single/drawable-v21.json new file mode 100644 index 000000000..fb74dc63b --- /dev/null +++ b/android/build/intermediates/blame/res/debug/single/drawable-v21.json @@ -0,0 +1,38 @@ +[ + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-v21/ic_menu_gallery.xml", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/drawable-v21/ic_menu_gallery.xml" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-v21/ic_menu_slideshow.xml", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/drawable-v21/ic_menu_slideshow.xml" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-v21/ic_menu_share.xml", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/drawable-v21/ic_menu_share.xml" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-v21/ic_menu_camera.xml", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/drawable-v21/ic_menu_camera.xml" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-v21/ic_menu_send.xml", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/drawable-v21/ic_menu_send.xml" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-v21/ic_menu_manage.xml", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/drawable-v21/ic_menu_manage.xml" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/single/drawable-v23.json b/android/build/intermediates/blame/res/debug/single/drawable-v23.json new file mode 100644 index 000000000..d7decf6db --- /dev/null +++ b/android/build/intermediates/blame/res/debug/single/drawable-v23.json @@ -0,0 +1,6 @@ +[ + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/single/drawable-v24.json b/android/build/intermediates/blame/res/debug/single/drawable-v24.json new file mode 100644 index 000000000..6e8d97601 --- /dev/null +++ b/android/build/intermediates/blame/res/debug/single/drawable-v24.json @@ -0,0 +1,6 @@ +[ + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-v24/ic_launcher_foreground.xml", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/drawable-v24/ic_launcher_foreground.xml" + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/single/drawable-xhdpi-v4.json b/android/build/intermediates/blame/res/debug/single/drawable-xhdpi-v4.json new file mode 100644 index 000000000..5fe9c3c99 --- /dev/null +++ b/android/build/intermediates/blame/res/debug/single/drawable-xhdpi-v4.json @@ -0,0 +1,274 @@ +[ + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xhdpi/ic_launcher_background.png" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xhdpi/ic_menu_tag.png" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/drawable-xhdpi/ic_delete_white_24dp.png" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xhdpi/ic_tag_magnet.png" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/ic_settings.png", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xhdpi/ic_settings.png" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/ic_monochrome.png", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xhdpi/ic_monochrome.png" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xhdpi/ic_camera_green.png" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xhdpi/ic_tag_rocket.png" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xhdpi/ic_tag_game.png" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/angle.png", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xhdpi/angle.png" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xhdpi-v4/ic_palette.png", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xhdpi/ic_palette.png" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xhdpi/ic_tag_tv.png" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xhdpi/ic_tag_bell.png" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xhdpi/ic_tag_star.png" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xhdpi/ic_tag_gift.png" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/single/drawable-xxhdpi-v4.json b/android/build/intermediates/blame/res/debug/single/drawable-xxhdpi-v4.json new file mode 100644 index 000000000..5108e610f --- /dev/null +++ b/android/build/intermediates/blame/res/debug/single/drawable-xxhdpi-v4.json @@ -0,0 +1,274 @@ +[ + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xxhdpi/ic_menu_tag.png" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xxhdpi/ic_tag_gift.png" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xxhdpi/ic_tag_rocket.png" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xxhdpi/ic_tag_bell.png" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xxhdpi/ic_tag_magnet.png" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/ic_monochrome.png", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xxhdpi/ic_monochrome.png" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xxhdpi/ic_camera_green.png" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/ic_settings.png", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xxhdpi/ic_settings.png" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/ic_palette.png", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xxhdpi/ic_palette.png" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xxhdpi/ic_tag_star.png" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/drawable-xxhdpi/ic_delete_white_24dp.png" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xxhdpi/ic_tag_game.png" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/angle.png", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xxhdpi/angle.png" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xxhdpi/ic_launcher_background.png" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xxhdpi/ic_tag_tv.png" + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/single/drawable-xxxhdpi-v4.json b/android/build/intermediates/blame/res/debug/single/drawable-xxxhdpi-v4.json new file mode 100644 index 000000000..d6cc40be6 --- /dev/null +++ b/android/build/intermediates/blame/res/debug/single/drawable-xxxhdpi-v4.json @@ -0,0 +1,186 @@ +[ + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_menu_tag.png" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_tag_gift.png" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/ic_monochrome.png", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_monochrome.png" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_tag_rocket.png" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_tag_magnet.png" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_camera_green.png" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_tag_bell.png" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_launcher_background.png" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/drawable-xxxhdpi/ic_delete_white_24dp.png" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_tag_game.png" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/angle.png", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xxxhdpi/angle.png" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/ic_palette.png", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_palette.png" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_tag_tv.png" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/ic_settings.png", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_settings.png" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_tag_star.png" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/single/drawable.json b/android/build/intermediates/blame/res/debug/single/drawable.json new file mode 100644 index 000000000..583ed89b7 --- /dev/null +++ b/android/build/intermediates/blame/res/debug/single/drawable.json @@ -0,0 +1,126 @@ +[ + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable/abc_btn_borderless_material.xml", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable/abc_edit_text_material.xml", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable/design_fab_background.xml", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable/abc_btn_radio_material.xml", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable/button_background.xml", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/drawable/button_background.xml" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable/abc_btn_check_material.xml", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable/abc_tab_indicator_material.xml", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable/abc_ratingbar_small_material.xml", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable/side_nav_bar.xml", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/drawable/side_nav_bar.xml" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable/abc_seekbar_thumb_material.xml", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable/abc_ratingbar_full_material.xml", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable/round_button.xml", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/drawable/round_button.xml" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable/abc_switch_thumb_material.xml", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable/abc_seekbar_track_material.xml", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable/abc_text_cursor_material.xml", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable/design_snackbar_background.xml", + "source": "/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable/abc_ratingbar_indicator_material.xml", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable/abc_btn_colored_material.xml", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/drawable/abc_textfield_search_material.xml", + "source": "/Users/andrejunqueira/Documents/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" + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/single/layout-sw600dp-v13.json b/android/build/intermediates/blame/res/debug/single/layout-sw600dp-v13.json new file mode 100644 index 000000000..e4386babb --- /dev/null +++ b/android/build/intermediates/blame/res/debug/single/layout-sw600dp-v13.json @@ -0,0 +1,6 @@ +[ + { + "merged": "/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", + "source": "/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" + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/single/layout.json b/android/build/intermediates/blame/res/debug/single/layout.json new file mode 100644 index 000000000..2408ce1f8 --- /dev/null +++ b/android/build/intermediates/blame/res/debug/single/layout.json @@ -0,0 +1,250 @@ +[ + { + "merged": "/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", + "source": "/Users/andrejunqueira/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/layout/design_layout_tab_icon.xml", + "source": "/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/layout/notification_template_part_chronometer.xml", + "source": "/Users/andrejunqueira/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/layout/design_navigation_item_header.xml", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/layout/design_bottom_sheet_dialog.xml", + "source": "/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/layout/notification_media_cancel_action.xml", + "source": "/Users/andrejunqueira/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/layout/activity_settings.xml", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/layout/activity_settings.xml" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/layout/abc_action_menu_layout.xml", + "source": "/Users/andrejunqueira/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/layout/design_layout_snackbar.xml", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/layout/design_navigation_item_subheader.xml", + "source": "/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/layout/abc_activity_chooser_view.xml", + "source": "/Users/andrejunqueira/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/layout/tageditor_view.xml", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/layout/tageditor_view.xml" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/layout/redbox_item_frame.xml", + "source": "/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/layout/design_navigation_item_separator.xml", + "source": "/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/layout/design_navigation_menu_item.xml", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/layout/select_dialog_singlechoice_material.xml", + "source": "/Users/andrejunqueira/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/layout/abc_dialog_title_material.xml", + "source": "/Users/andrejunqueira/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/layout/abc_expanded_menu_layout.xml", + "source": "/Users/andrejunqueira/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/layout/notification_media_action.xml", + "source": "/Users/andrejunqueira/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/layout/activity_gallery.xml", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/layout/activity_gallery.xml" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/layout/abc_screen_toolbar.xml", + "source": "/Users/andrejunqueira/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/layout/abc_screen_simple.xml", + "source": "/Users/andrejunqueira/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/layout/gallery_item.xml", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/layout/gallery_item.xml" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/layout/activity_fullscreen_view.xml", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/layout/activity_fullscreen_view.xml" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/layout/abc_select_dialog_material.xml", + "source": "/Users/andrejunqueira/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/layout/notification_template_part_time.xml", + "source": "/Users/andrejunqueira/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/layout/design_navigation_menu.xml", + "source": "/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/layout/redbox_view.xml", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/layout/design_layout_tab_text.xml", + "source": "/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/layout/design_layout_snackbar_include.xml", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/layout/activity_main.xml", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/layout/activity_main.xml" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/layout/abc_screen_content_include.xml", + "source": "/Users/andrejunqueira/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/layout/activity_open_note_scanner.xml", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/layout/activity_open_note_scanner.xml" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/layout/about_view.xml", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/layout/about_view.xml" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/layout/design_navigation_item.xml", + "source": "/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/layout/fps_view.xml", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/layout/layout_fullscreen_image.xml", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/layout/layout_fullscreen_image.xml" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/layout/redbox_item_title.xml", + "source": "/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/layout/abc_alert_dialog_material.xml", + "source": "/Users/andrejunqueira/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/layout/select_dialog_multichoice_material.xml", + "source": "/Users/andrejunqueira/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/layout/abc_search_view.xml", + "source": "/Users/andrejunqueira/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/layout/select_dialog_item_material.xml", + "source": "/Users/andrejunqueira/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/layout/notification_template_big_media.xml", + "source": "/Users/andrejunqueira/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/layout/abc_action_mode_bar.xml", + "source": "/Users/andrejunqueira/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/layout/notification_template_lines.xml", + "source": "/Users/andrejunqueira/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/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" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/layout/notification_template_media.xml", + "source": "/Users/andrejunqueira/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" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/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" + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/single/menu.json b/android/build/intermediates/blame/res/debug/single/menu.json new file mode 100644 index 000000000..61bd0eaa3 --- /dev/null +++ b/android/build/intermediates/blame/res/debug/single/menu.json @@ -0,0 +1,10 @@ +[ + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/menu/menu_gallery.xml", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/menu/menu_gallery.xml" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/menu/menu_imagepager.xml", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/menu/menu_imagepager.xml" + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/single/mipmap-anydpi-v26.json b/android/build/intermediates/blame/res/debug/single/mipmap-anydpi-v26.json new file mode 100644 index 000000000..5775327dc --- /dev/null +++ b/android/build/intermediates/blame/res/debug/single/mipmap-anydpi-v26.json @@ -0,0 +1,10 @@ +[ + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/mipmap-anydpi-v26/ic_launcher.xml", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/mipmap-anydpi-v26/ic_launcher.xml" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml" + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/single/mipmap-hdpi-v4.json b/android/build/intermediates/blame/res/debug/single/mipmap-hdpi-v4.json new file mode 100644 index 000000000..a24f34109 --- /dev/null +++ b/android/build/intermediates/blame/res/debug/single/mipmap-hdpi-v4.json @@ -0,0 +1,10 @@ +[ + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/mipmap-hdpi-v4/ic_launcher.png", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/mipmap-hdpi/ic_launcher.png" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/mipmap-hdpi/ic_launcher_round.png" + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/single/mipmap-mdpi-v4.json b/android/build/intermediates/blame/res/debug/single/mipmap-mdpi-v4.json new file mode 100644 index 000000000..3a7482692 --- /dev/null +++ b/android/build/intermediates/blame/res/debug/single/mipmap-mdpi-v4.json @@ -0,0 +1,10 @@ +[ + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/mipmap-mdpi/ic_launcher_round.png" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/mipmap-mdpi-v4/ic_launcher.png", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/mipmap-mdpi/ic_launcher.png" + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/single/mipmap-xhdpi-v4.json b/android/build/intermediates/blame/res/debug/single/mipmap-xhdpi-v4.json new file mode 100644 index 000000000..35b612f79 --- /dev/null +++ b/android/build/intermediates/blame/res/debug/single/mipmap-xhdpi-v4.json @@ -0,0 +1,10 @@ +[ + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/mipmap-xhdpi/ic_launcher_round.png" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/mipmap-xhdpi-v4/ic_launcher.png", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/mipmap-xhdpi/ic_launcher.png" + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/single/mipmap-xxhdpi-v4.json b/android/build/intermediates/blame/res/debug/single/mipmap-xxhdpi-v4.json new file mode 100644 index 000000000..fd35d7003 --- /dev/null +++ b/android/build/intermediates/blame/res/debug/single/mipmap-xxhdpi-v4.json @@ -0,0 +1,10 @@ +[ + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/mipmap-xxhdpi/ic_launcher_round.png" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/mipmap-xxhdpi-v4/ic_launcher.png", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/mipmap-xxhdpi/ic_launcher.png" + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/single/mipmap-xxxhdpi-v4.json b/android/build/intermediates/blame/res/debug/single/mipmap-xxxhdpi-v4.json new file mode 100644 index 000000000..ee0304cb8 --- /dev/null +++ b/android/build/intermediates/blame/res/debug/single/mipmap-xxxhdpi-v4.json @@ -0,0 +1,10 @@ +[ + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/mipmap-xxxhdpi-v4/ic_launcher.png", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/mipmap-xxxhdpi/ic_launcher.png" + }, + { + "merged": "/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", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png" + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/debug/single/xml.json b/android/build/intermediates/blame/res/debug/single/xml.json new file mode 100644 index 000000000..bb249cca0 --- /dev/null +++ b/android/build/intermediates/blame/res/debug/single/xml.json @@ -0,0 +1,10 @@ +[ + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/xml/settings.xml", + "source": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/src/main/res/xml/settings.xml" + }, + { + "merged": "/Users/andrejunqueira/Documents/workspace/Projetos/testescanner/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/debug/xml/preferences.xml", + "source": "/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" + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values-af.json b/android/build/intermediates/blame/res/release/multi-v2/values-af.json new file mode 100644 index 000000000..9fc7c9160 --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values-af.json @@ -0,0 +1,68 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-af/values-af.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-af/values-af.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,209,309,415,500,603,721,797,874,965,1058,1154,1248,1348,1441,1536,1635,1730,1824,1905,2012,2115,2212,2320,2422,2524,2678,2776", + "endColumns": "103,99,105,84,102,117,75,76,90,92,95,93,99,92,94,98,94,93,80,106,102,96,107,101,101,153,97,79", + "endOffsets": "204,304,410,495,598,716,792,869,960,1053,1149,1243,1343,1436,1531,1630,1725,1819,1900,2007,2110,2207,2315,2417,2519,2673,2771,2851" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-af/values-af.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2856", + "endColumns": "100", + "endOffsets": "2952" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values-af/values-af.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-af/values-af.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,209,309,415,500,603,721,797,874,965,1058,1154,1248,1348,1441,1536,1635,1730,1824,1905,2012,2115,2212,2320,2422,2524,2678,2776", + "endColumns": "103,99,105,84,102,117,75,76,90,92,95,93,99,92,94,98,94,93,80,106,102,96,107,101,101,153,97,79", + "endOffsets": "204,304,410,495,598,716,792,869,960,1053,1149,1243,1343,1436,1531,1630,1725,1819,1900,2007,2110,2207,2315,2417,2519,2673,2771,2851" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-af/values-af.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2856", + "endColumns": "100", + "endOffsets": "2952" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values-am.json b/android/build/intermediates/blame/res/release/multi-v2/values-am.json new file mode 100644 index 000000000..3accd3721 --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values-am.json @@ -0,0 +1,68 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values-am/values-am.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-am/values-am.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2817", + "endColumns": "100", + "endOffsets": "2913" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-am/values-am.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,207,306,412,498,601,714,792,870,961,1054,1147,1241,1342,1435,1530,1624,1715,1805,1884,1984,2084,2180,2283,2382,2489,2642,2738", + "endColumns": "101,98,105,85,102,112,77,77,90,92,92,93,100,92,94,93,90,89,78,99,99,95,102,98,106,152,95,78", + "endOffsets": "202,301,407,493,596,709,787,865,956,1049,1142,1236,1337,1430,1525,1619,1710,1800,1879,1979,2079,2175,2278,2377,2484,2637,2733,2812" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-am/values-am.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-am/values-am.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2817", + "endColumns": "100", + "endOffsets": "2913" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-am/values-am.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,207,306,412,498,601,714,792,870,961,1054,1147,1241,1342,1435,1530,1624,1715,1805,1884,1984,2084,2180,2283,2382,2489,2642,2738", + "endColumns": "101,98,105,85,102,112,77,77,90,92,92,93,100,92,94,93,90,89,78,99,99,95,102,98,106,152,95,78", + "endOffsets": "202,301,407,493,596,709,787,865,956,1049,1142,1236,1337,1430,1525,1619,1710,1800,1879,1979,2079,2175,2278,2377,2484,2637,2733,2812" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values-ar.json b/android/build/intermediates/blame/res/release/multi-v2/values-ar.json new file mode 100644 index 000000000..38979164a --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values-ar.json @@ -0,0 +1,68 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ar/values-ar.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-ar/values-ar.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,222,326,435,517,618,732,811,890,981,1074,1170,1264,1365,1458,1553,1647,1738,1832,1911,2016,2117,2213,2321,2424,2527,2682,2779", + "endColumns": "116,103,108,81,100,113,78,78,90,92,95,93,100,92,94,93,90,93,78,104,100,95,107,102,102,154,96,80", + "endOffsets": "217,321,430,512,613,727,806,885,976,1069,1165,1259,1360,1453,1548,1642,1733,1827,1906,2011,2112,2208,2316,2419,2522,2677,2774,2855" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-ar/values-ar.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2860", + "endColumns": "100", + "endOffsets": "2956" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values-ar/values-ar.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-ar/values-ar.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,222,326,435,517,618,732,811,890,981,1074,1170,1264,1365,1458,1553,1647,1738,1832,1911,2016,2117,2213,2321,2424,2527,2682,2779", + "endColumns": "116,103,108,81,100,113,78,78,90,92,95,93,100,92,94,93,90,93,78,104,100,95,107,102,102,154,96,80", + "endOffsets": "217,321,430,512,613,727,806,885,976,1069,1165,1259,1360,1453,1548,1642,1733,1827,1906,2011,2112,2208,2316,2419,2522,2677,2774,2855" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-ar/values-ar.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2860", + "endColumns": "100", + "endOffsets": "2956" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values-as.json b/android/build/intermediates/blame/res/release/multi-v2/values-as.json new file mode 100644 index 000000000..22eec4ea8 --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values-as.json @@ -0,0 +1,68 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-as/values-as.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-as/values-as.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,213,312,419,515,617,736,816,896,987,1080,1173,1268,1368,1461,1558,1652,1743,1834,1923,2025,2140,2243,2352,2471,2591,2758,2861", + "endColumns": "107,98,106,95,101,118,79,79,90,92,92,94,99,92,96,93,90,90,88,101,114,102,108,118,119,166,102,88", + "endOffsets": "208,307,414,510,612,731,811,891,982,1075,1168,1263,1363,1456,1553,1647,1738,1829,1918,2020,2135,2238,2347,2466,2586,2753,2856,2945" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-as/values-as.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2950", + "endColumns": "100", + "endOffsets": "3046" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values-as/values-as.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-as/values-as.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,213,312,419,515,617,736,816,896,987,1080,1173,1268,1368,1461,1558,1652,1743,1834,1923,2025,2140,2243,2352,2471,2591,2758,2861", + "endColumns": "107,98,106,95,101,118,79,79,90,92,92,94,99,92,96,93,90,90,88,101,114,102,108,118,119,166,102,88", + "endOffsets": "208,307,414,510,612,731,811,891,982,1075,1168,1263,1363,1456,1553,1647,1738,1829,1918,2020,2135,2238,2347,2466,2586,2753,2856,2945" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-as/values-as.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2950", + "endColumns": "100", + "endOffsets": "3046" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values-az.json b/android/build/intermediates/blame/res/release/multi-v2/values-az.json new file mode 100644 index 000000000..868300875 --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values-az.json @@ -0,0 +1,68 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values-az/values-az.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-az/values-az.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,213,312,424,512,619,733,814,893,984,1077,1172,1271,1372,1465,1560,1655,1746,1838,1923,2030,2137,2237,2346,2450,2560,2718,2820", + "endColumns": "107,98,111,87,106,113,80,78,90,92,94,98,100,92,94,94,90,91,84,106,106,99,108,103,109,157,101,82", + "endOffsets": "208,307,419,507,614,728,809,888,979,1072,1167,1266,1367,1460,1555,1650,1741,1833,1918,2025,2132,2232,2341,2445,2555,2713,2815,2898" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-az/values-az.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2903", + "endColumns": "100", + "endOffsets": "2999" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-az/values-az.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-az/values-az.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,213,312,424,512,619,733,814,893,984,1077,1172,1271,1372,1465,1560,1655,1746,1838,1923,2030,2137,2237,2346,2450,2560,2718,2820", + "endColumns": "107,98,111,87,106,113,80,78,90,92,94,98,100,92,94,94,90,91,84,106,106,99,108,103,109,157,101,82", + "endOffsets": "208,307,419,507,614,728,809,888,979,1072,1167,1266,1367,1460,1555,1650,1741,1833,1918,2025,2132,2232,2341,2445,2555,2713,2815,2898" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-az/values-az.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2903", + "endColumns": "100", + "endOffsets": "2999" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values-b+sr+Latn.json b/android/build/intermediates/blame/res/release/multi-v2/values-b+sr+Latn.json new file mode 100644 index 000000000..b0acb6362 --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values-b+sr+Latn.json @@ -0,0 +1,68 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values-b+sr+Latn/values-b+sr+Latn.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-b+sr+Latn/values-b+sr+Latn.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,214,318,424,510,614,732,814,895,986,1079,1175,1269,1370,1463,1558,1663,1754,1845,1933,2039,2147,2248,2353,2461,2562,2731,2828", + "endColumns": "108,103,105,85,103,117,81,80,90,92,95,93,100,92,94,104,90,90,87,105,107,100,104,107,100,168,96,83", + "endOffsets": "209,313,419,505,609,727,809,890,981,1074,1170,1264,1365,1458,1553,1658,1749,1840,1928,2034,2142,2243,2348,2456,2557,2726,2823,2907" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-b+sr+Latn/values-b+sr+Latn.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2912", + "endColumns": "100", + "endOffsets": "3008" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-b+sr+Latn/values-b+sr+Latn.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-b+sr+Latn/values-b+sr+Latn.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,214,318,424,510,614,732,814,895,986,1079,1175,1269,1370,1463,1558,1663,1754,1845,1933,2039,2147,2248,2353,2461,2562,2731,2828", + "endColumns": "108,103,105,85,103,117,81,80,90,92,95,93,100,92,94,104,90,90,87,105,107,100,104,107,100,168,96,83", + "endOffsets": "209,313,419,505,609,727,809,890,981,1074,1170,1264,1365,1458,1553,1658,1749,1840,1928,2034,2142,2243,2348,2456,2557,2726,2823,2907" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-b+sr+Latn/values-b+sr+Latn.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2912", + "endColumns": "100", + "endOffsets": "3008" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values-be.json b/android/build/intermediates/blame/res/release/multi-v2/values-be.json new file mode 100644 index 000000000..5d7d81d5c --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values-be.json @@ -0,0 +1,68 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values-be/values-be.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-be/values-be.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,225,328,444,530,638,756,835,913,1005,1099,1195,1289,1385,1479,1575,1670,1762,1854,1937,2043,2149,2247,2355,2460,2565,2734,2834", + "endColumns": "119,102,115,85,107,117,78,77,91,93,95,93,95,93,95,94,91,91,82,105,105,97,107,104,104,168,99,80", + "endOffsets": "220,323,439,525,633,751,830,908,1000,1094,1190,1284,1380,1474,1570,1665,1757,1849,1932,2038,2144,2242,2350,2455,2560,2729,2829,2910" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-be/values-be.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2915", + "endColumns": "100", + "endOffsets": "3011" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-be/values-be.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-be/values-be.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,225,328,444,530,638,756,835,913,1005,1099,1195,1289,1385,1479,1575,1670,1762,1854,1937,2043,2149,2247,2355,2460,2565,2734,2834", + "endColumns": "119,102,115,85,107,117,78,77,91,93,95,93,95,93,95,94,91,91,82,105,105,97,107,104,104,168,99,80", + "endOffsets": "220,323,439,525,633,751,830,908,1000,1094,1190,1284,1380,1474,1570,1665,1757,1849,1932,2038,2144,2242,2350,2455,2560,2729,2829,2910" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-be/values-be.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2915", + "endColumns": "100", + "endOffsets": "3011" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values-bg.json b/android/build/intermediates/blame/res/release/multi-v2/values-bg.json new file mode 100644 index 000000000..4ffcb0283 --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values-bg.json @@ -0,0 +1,68 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-bg/values-bg.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-bg/values-bg.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,220,327,432,518,623,744,823,901,992,1085,1181,1275,1376,1469,1564,1672,1763,1854,1937,2051,2160,2260,2374,2480,2588,2748,2847", + "endColumns": "114,106,104,85,104,120,78,77,90,92,95,93,100,92,94,107,90,90,82,113,108,99,113,105,107,159,98,82", + "endOffsets": "215,322,427,513,618,739,818,896,987,1080,1176,1270,1371,1464,1559,1667,1758,1849,1932,2046,2155,2255,2369,2475,2583,2743,2842,2925" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-bg/values-bg.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2930", + "endColumns": "100", + "endOffsets": "3026" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values-bg/values-bg.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-bg/values-bg.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,220,327,432,518,623,744,823,901,992,1085,1181,1275,1376,1469,1564,1672,1763,1854,1937,2051,2160,2260,2374,2480,2588,2748,2847", + "endColumns": "114,106,104,85,104,120,78,77,90,92,95,93,100,92,94,107,90,90,82,113,108,99,113,105,107,159,98,82", + "endOffsets": "215,322,427,513,618,739,818,896,987,1080,1176,1270,1371,1464,1559,1667,1758,1849,1932,2046,2155,2255,2369,2475,2583,2743,2842,2925" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-bg/values-bg.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2930", + "endColumns": "100", + "endOffsets": "3026" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values-bn.json b/android/build/intermediates/blame/res/release/multi-v2/values-bn.json new file mode 100644 index 000000000..6baccdb5a --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values-bn.json @@ -0,0 +1,68 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values-bn/values-bn.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-bn/values-bn.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2939", + "endColumns": "100", + "endOffsets": "3035" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-bn/values-bn.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,214,326,432,526,631,760,838,916,1007,1100,1195,1289,1390,1483,1578,1672,1763,1854,1941,2051,2159,2258,2368,2474,2587,2752,2857", + "endColumns": "108,111,105,93,104,128,77,77,90,92,94,93,100,92,94,93,90,90,86,109,107,98,109,105,112,164,104,81", + "endOffsets": "209,321,427,521,626,755,833,911,1002,1095,1190,1284,1385,1478,1573,1667,1758,1849,1936,2046,2154,2253,2363,2469,2582,2747,2852,2934" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-bn/values-bn.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-bn/values-bn.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2939", + "endColumns": "100", + "endOffsets": "3035" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-bn/values-bn.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,214,326,432,526,631,760,838,916,1007,1100,1195,1289,1390,1483,1578,1672,1763,1854,1941,2051,2159,2258,2368,2474,2587,2752,2857", + "endColumns": "108,111,105,93,104,128,77,77,90,92,94,93,100,92,94,93,90,90,86,109,107,98,109,105,112,164,104,81", + "endOffsets": "209,321,427,521,626,755,833,911,1002,1095,1190,1284,1385,1478,1573,1667,1758,1849,1936,2046,2154,2253,2363,2469,2582,2747,2852,2934" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values-bs.json b/android/build/intermediates/blame/res/release/multi-v2/values-bs.json new file mode 100644 index 000000000..1ae09673a --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values-bs.json @@ -0,0 +1,68 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-bs/values-bs.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-bs/values-bs.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,224,333,440,526,630,752,834,915,1006,1099,1195,1289,1390,1483,1578,1677,1768,1859,1945,2048,2153,2251,2356,2469,2572,2745,2842", + "endColumns": "118,108,106,85,103,121,81,80,90,92,95,93,100,92,94,98,90,90,85,102,104,97,104,112,102,172,96,83", + "endOffsets": "219,328,435,521,625,747,829,910,1001,1094,1190,1284,1385,1478,1573,1672,1763,1854,1940,2043,2148,2246,2351,2464,2567,2740,2837,2921" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-bs/values-bs.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2926", + "endColumns": "100", + "endOffsets": "3022" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values-bs/values-bs.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-bs/values-bs.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,224,333,440,526,630,752,834,915,1006,1099,1195,1289,1390,1483,1578,1677,1768,1859,1945,2048,2153,2251,2356,2469,2572,2745,2842", + "endColumns": "118,108,106,85,103,121,81,80,90,92,95,93,100,92,94,98,90,90,85,102,104,97,104,112,102,172,96,83", + "endOffsets": "219,328,435,521,625,747,829,910,1001,1094,1190,1284,1385,1478,1573,1672,1763,1854,1940,2043,2148,2246,2351,2464,2567,2740,2837,2921" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-bs/values-bs.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2926", + "endColumns": "100", + "endOffsets": "3022" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values-ca.json b/android/build/intermediates/blame/res/release/multi-v2/values-ca.json new file mode 100644 index 000000000..12ba1971a --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values-ca.json @@ -0,0 +1,68 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values-ca/values-ca.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-ca/values-ca.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2915", + "endColumns": "100", + "endOffsets": "3011" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-ca/values-ca.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,223,329,436,519,627,753,837,918,1009,1102,1196,1291,1390,1483,1576,1670,1761,1852,1935,2046,2155,2253,2363,2467,2575,2735,2834", + "endColumns": "117,105,106,82,107,125,83,80,90,92,93,94,98,92,92,93,90,90,82,110,108,97,109,103,107,159,98,80", + "endOffsets": "218,324,431,514,622,748,832,913,1004,1097,1191,1286,1385,1478,1571,1665,1756,1847,1930,2041,2150,2248,2358,2462,2570,2730,2829,2910" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ca/values-ca.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-ca/values-ca.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2915", + "endColumns": "100", + "endOffsets": "3011" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-ca/values-ca.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,223,329,436,519,627,753,837,918,1009,1102,1196,1291,1390,1483,1576,1670,1761,1852,1935,2046,2155,2253,2363,2467,2575,2735,2834", + "endColumns": "117,105,106,82,107,125,83,80,90,92,93,94,98,92,92,93,90,90,82,110,108,97,109,103,107,159,98,80", + "endOffsets": "218,324,431,514,622,748,832,913,1004,1097,1191,1286,1385,1478,1571,1665,1756,1847,1930,2041,2150,2248,2358,2462,2570,2730,2829,2910" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values-cs.json b/android/build/intermediates/blame/res/release/multi-v2/values-cs.json new file mode 100644 index 000000000..18a1078d8 --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values-cs.json @@ -0,0 +1,116 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-cs/values-cs.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/react-native-0.19.1.aar/4235edd25620896d6b8925991ca39618/res/values-cs/values-cs.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,109,181,260,331,399,455,514", + "endColumns": "53,71,78,70,67,55,58,73", + "endOffsets": "104,176,255,326,394,450,509,583" + }, + "to": { + "startLines": "29,30,31,32,33,34,35,36", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "2809,2863,2935,3014,3085,3153,3209,3268", + "endColumns": "53,71,78,70,67,55,58,73", + "endOffsets": "2858,2930,3009,3080,3148,3204,3263,3337" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-cs/values-cs.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "38", + "startColumns": "4", + "startOffsets": "3424", + "endColumns": "100", + "endOffsets": "3520" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-cs/values-cs.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,212,314,423,509,614,731,812,893,984,1077,1173,1267,1362,1455,1550,1647,1738,1829,1913,2017,2126,2225,2331,2441,2548,2711,2809", + "endColumns": "106,101,108,85,104,116,80,80,90,92,95,93,94,92,94,96,90,90,83,103,108,98,105,109,106,162,97,81", + "endOffsets": "207,309,418,504,609,726,807,888,979,1072,1168,1262,1357,1450,1545,1642,1733,1824,1908,2012,2121,2220,2326,2436,2543,2706,2804,2886" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,37", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,212,314,423,509,614,731,812,893,984,1077,1173,1267,1362,1455,1550,1647,1738,1829,1913,2017,2126,2225,2331,2441,2548,2711,3342", + "endColumns": "106,101,108,85,104,116,80,80,90,92,95,93,94,92,94,96,90,90,83,103,108,98,105,109,106,162,97,81", + "endOffsets": "207,309,418,504,609,726,807,888,979,1072,1168,1262,1357,1450,1545,1642,1733,1824,1908,2012,2121,2220,2326,2436,2543,2706,2804,3419" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values-cs/values-cs.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/react-native-0.19.1.aar/4235edd25620896d6b8925991ca39618/res/values-cs/values-cs.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,109,181,260,331,399,455,514", + "endColumns": "53,71,78,70,67,55,58,73", + "endOffsets": "104,176,255,326,394,450,509,583" + }, + "to": { + "startLines": "29,30,31,32,33,34,35,36", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "2809,2863,2935,3014,3085,3153,3209,3268", + "endColumns": "53,71,78,70,67,55,58,73", + "endOffsets": "2858,2930,3009,3080,3148,3204,3263,3337" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-cs/values-cs.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "38", + "startColumns": "4", + "startOffsets": "3424", + "endColumns": "100", + "endOffsets": "3520" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-cs/values-cs.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,212,314,423,509,614,731,812,893,984,1077,1173,1267,1362,1455,1550,1647,1738,1829,1913,2017,2126,2225,2331,2441,2548,2711,2809", + "endColumns": "106,101,108,85,104,116,80,80,90,92,95,93,94,92,94,96,90,90,83,103,108,98,105,109,106,162,97,81", + "endOffsets": "207,309,418,504,609,726,807,888,979,1072,1168,1262,1357,1450,1545,1642,1733,1824,1908,2012,2121,2220,2326,2436,2543,2706,2804,2886" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,37", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,212,314,423,509,614,731,812,893,984,1077,1173,1267,1362,1455,1550,1647,1738,1829,1913,2017,2126,2225,2331,2441,2548,2711,3342", + "endColumns": "106,101,108,85,104,116,80,80,90,92,95,93,94,92,94,96,90,90,83,103,108,98,105,109,106,162,97,81", + "endOffsets": "207,309,418,504,609,726,807,888,979,1072,1168,1262,1357,1450,1545,1642,1733,1824,1908,2012,2121,2220,2326,2436,2543,2706,2804,3419" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values-da.json b/android/build/intermediates/blame/res/release/multi-v2/values-da.json new file mode 100644 index 000000000..f5bf007cb --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values-da.json @@ -0,0 +1,116 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values-da/values-da.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-da/values-da.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,208,307,419,502,602,715,792,869,960,1053,1149,1243,1338,1431,1526,1624,1715,1806,1885,1994,2102,2198,2312,2414,2515,2668,2765", + "endColumns": "102,98,111,82,99,112,76,76,90,92,95,93,94,92,94,97,90,90,78,108,107,95,113,101,100,152,96,78", + "endOffsets": "203,302,414,497,597,710,787,864,955,1048,1144,1238,1333,1426,1521,1619,1710,1801,1880,1989,2097,2193,2307,2409,2510,2663,2760,2839" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,37", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,208,307,419,502,602,715,792,869,960,1053,1149,1243,1338,1431,1526,1624,1715,1806,1885,1994,2102,2198,2312,2414,2515,2668,3297", + "endColumns": "102,98,111,82,99,112,76,76,90,92,95,93,94,92,94,97,90,90,78,108,107,95,113,101,100,152,96,78", + "endOffsets": "203,302,414,497,597,710,787,864,955,1048,1144,1238,1333,1426,1521,1619,1710,1801,1880,1989,2097,2193,2307,2409,2510,2663,2760,3371" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-da/values-da.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "38", + "startColumns": "4", + "startOffsets": "3376", + "endColumns": "100", + "endOffsets": "3472" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/react-native-0.19.1.aar/4235edd25620896d6b8925991ca39618/res/values-da/values-da.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,109,181,260,331,398,454,513", + "endColumns": "53,71,78,70,66,55,58,73", + "endOffsets": "104,176,255,326,393,449,508,582" + }, + "to": { + "startLines": "29,30,31,32,33,34,35,36", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "2765,2819,2891,2970,3041,3108,3164,3223", + "endColumns": "53,71,78,70,66,55,58,73", + "endOffsets": "2814,2886,2965,3036,3103,3159,3218,3292" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-da/values-da.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-da/values-da.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,208,307,419,502,602,715,792,869,960,1053,1149,1243,1338,1431,1526,1624,1715,1806,1885,1994,2102,2198,2312,2414,2515,2668,2765", + "endColumns": "102,98,111,82,99,112,76,76,90,92,95,93,94,92,94,97,90,90,78,108,107,95,113,101,100,152,96,78", + "endOffsets": "203,302,414,497,597,710,787,864,955,1048,1144,1238,1333,1426,1521,1619,1710,1801,1880,1989,2097,2193,2307,2409,2510,2663,2760,2839" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,37", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,208,307,419,502,602,715,792,869,960,1053,1149,1243,1338,1431,1526,1624,1715,1806,1885,1994,2102,2198,2312,2414,2515,2668,3297", + "endColumns": "102,98,111,82,99,112,76,76,90,92,95,93,94,92,94,97,90,90,78,108,107,95,113,101,100,152,96,78", + "endOffsets": "203,302,414,497,597,710,787,864,955,1048,1144,1238,1333,1426,1521,1619,1710,1801,1880,1989,2097,2193,2307,2409,2510,2663,2760,3371" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-da/values-da.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "38", + "startColumns": "4", + "startOffsets": "3376", + "endColumns": "100", + "endOffsets": "3472" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/react-native-0.19.1.aar/4235edd25620896d6b8925991ca39618/res/values-da/values-da.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,109,181,260,331,398,454,513", + "endColumns": "53,71,78,70,66,55,58,73", + "endOffsets": "104,176,255,326,393,449,508,582" + }, + "to": { + "startLines": "29,30,31,32,33,34,35,36", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "2765,2819,2891,2970,3041,3108,3164,3223", + "endColumns": "53,71,78,70,66,55,58,73", + "endOffsets": "2814,2886,2965,3036,3103,3159,3218,3292" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values-de.json b/android/build/intermediates/blame/res/release/multi-v2/values-de.json new file mode 100644 index 000000000..b068dfea0 --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values-de.json @@ -0,0 +1,116 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-de/values-de.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-de/values-de.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,210,308,420,506,611,726,803,879,971,1065,1162,1263,1371,1471,1575,1675,1773,1870,1952,2063,2166,2265,2376,2478,2585,2741,2843", + "endColumns": "104,97,111,85,104,114,76,75,91,93,96,100,107,99,103,99,97,96,81,110,102,98,110,101,106,155,101,81", + "endOffsets": "205,303,415,501,606,721,798,874,966,1060,1157,1258,1366,1466,1570,1670,1768,1865,1947,2058,2161,2260,2371,2473,2580,2736,2838,2920" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,37", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,210,308,420,506,611,726,803,879,971,1065,1162,1263,1371,1471,1575,1675,1773,1870,1952,2063,2166,2265,2376,2478,2585,2741,3382", + "endColumns": "104,97,111,85,104,114,76,75,91,93,96,100,107,99,103,99,97,96,81,110,102,98,110,101,106,155,101,81", + "endOffsets": "205,303,415,501,606,721,798,874,966,1060,1157,1258,1366,1466,1570,1670,1768,1865,1947,2058,2161,2260,2371,2473,2580,2736,2838,3459" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-de/values-de.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "38", + "startColumns": "4", + "startOffsets": "3464", + "endColumns": "100", + "endOffsets": "3560" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/react-native-0.19.1.aar/4235edd25620896d6b8925991ca39618/res/values-de/values-de.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,109,184,263,334,405,461,520", + "endColumns": "53,74,78,70,70,55,58,73", + "endOffsets": "104,179,258,329,400,456,515,589" + }, + "to": { + "startLines": "29,30,31,32,33,34,35,36", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "2843,2897,2972,3051,3122,3193,3249,3308", + "endColumns": "53,74,78,70,70,55,58,73", + "endOffsets": "2892,2967,3046,3117,3188,3244,3303,3377" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values-de/values-de.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-de/values-de.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,210,308,420,506,611,726,803,879,971,1065,1162,1263,1371,1471,1575,1675,1773,1870,1952,2063,2166,2265,2376,2478,2585,2741,2843", + "endColumns": "104,97,111,85,104,114,76,75,91,93,96,100,107,99,103,99,97,96,81,110,102,98,110,101,106,155,101,81", + "endOffsets": "205,303,415,501,606,721,798,874,966,1060,1157,1258,1366,1466,1570,1670,1768,1865,1947,2058,2161,2260,2371,2473,2580,2736,2838,2920" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,37", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,210,308,420,506,611,726,803,879,971,1065,1162,1263,1371,1471,1575,1675,1773,1870,1952,2063,2166,2265,2376,2478,2585,2741,3382", + "endColumns": "104,97,111,85,104,114,76,75,91,93,96,100,107,99,103,99,97,96,81,110,102,98,110,101,106,155,101,81", + "endOffsets": "205,303,415,501,606,721,798,874,966,1060,1157,1258,1366,1466,1570,1670,1768,1865,1947,2058,2161,2260,2371,2473,2580,2736,2838,3459" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-de/values-de.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "38", + "startColumns": "4", + "startOffsets": "3464", + "endColumns": "100", + "endOffsets": "3560" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/react-native-0.19.1.aar/4235edd25620896d6b8925991ca39618/res/values-de/values-de.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,109,184,263,334,405,461,520", + "endColumns": "53,74,78,70,70,55,58,73", + "endOffsets": "104,179,258,329,400,456,515,589" + }, + "to": { + "startLines": "29,30,31,32,33,34,35,36", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "2843,2897,2972,3051,3122,3193,3249,3308", + "endColumns": "53,74,78,70,70,55,58,73", + "endOffsets": "2892,2967,3046,3117,3188,3244,3303,3377" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values-el.json b/android/build/intermediates/blame/res/release/multi-v2/values-el.json new file mode 100644 index 000000000..a458870ef --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values-el.json @@ -0,0 +1,116 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values-el/values-el.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-el/values-el.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "38", + "startColumns": "4", + "startOffsets": "3494", + "endColumns": "100", + "endOffsets": "3590" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/react-native-0.19.1.aar/4235edd25620896d6b8925991ca39618/res/values-el/values-el.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,109,182,261,332,396,452,511", + "endColumns": "53,72,78,70,63,55,58,73", + "endOffsets": "104,177,256,327,391,447,506,580" + }, + "to": { + "startLines": "29,30,31,32,33,34,35,36", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "2879,2933,3006,3085,3156,3220,3276,3335", + "endColumns": "53,72,78,70,63,55,58,73", + "endOffsets": "2928,3001,3080,3151,3215,3271,3330,3404" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-el/values-el.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,223,334,451,536,641,767,855,941,1032,1125,1221,1315,1416,1509,1604,1701,1792,1883,1968,2079,2189,2291,2402,2511,2619,2779,2879", + "endColumns": "117,110,116,84,104,125,87,85,90,92,95,93,100,92,94,96,90,90,84,110,109,101,110,108,107,159,99,84", + "endOffsets": "218,329,446,531,636,762,850,936,1027,1120,1216,1310,1411,1504,1599,1696,1787,1878,1963,2074,2184,2286,2397,2506,2614,2774,2874,2959" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,37", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,223,334,451,536,641,767,855,941,1032,1125,1221,1315,1416,1509,1604,1701,1792,1883,1968,2079,2189,2291,2402,2511,2619,2779,3409", + "endColumns": "117,110,116,84,104,125,87,85,90,92,95,93,100,92,94,96,90,90,84,110,109,101,110,108,107,159,99,84", + "endOffsets": "218,329,446,531,636,762,850,936,1027,1120,1216,1310,1411,1504,1599,1696,1787,1878,1963,2074,2184,2286,2397,2506,2614,2774,2874,3489" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-el/values-el.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-el/values-el.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "38", + "startColumns": "4", + "startOffsets": "3494", + "endColumns": "100", + "endOffsets": "3590" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/react-native-0.19.1.aar/4235edd25620896d6b8925991ca39618/res/values-el/values-el.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,109,182,261,332,396,452,511", + "endColumns": "53,72,78,70,63,55,58,73", + "endOffsets": "104,177,256,327,391,447,506,580" + }, + "to": { + "startLines": "29,30,31,32,33,34,35,36", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "2879,2933,3006,3085,3156,3220,3276,3335", + "endColumns": "53,72,78,70,63,55,58,73", + "endOffsets": "2928,3001,3080,3151,3215,3271,3330,3404" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-el/values-el.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,223,334,451,536,641,767,855,941,1032,1125,1221,1315,1416,1509,1604,1701,1792,1883,1968,2079,2189,2291,2402,2511,2619,2779,2879", + "endColumns": "117,110,116,84,104,125,87,85,90,92,95,93,100,92,94,96,90,90,84,110,109,101,110,108,107,159,99,84", + "endOffsets": "218,329,446,531,636,762,850,936,1027,1120,1216,1310,1411,1504,1599,1696,1787,1878,1963,2074,2184,2286,2397,2506,2614,2774,2874,2959" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,37", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,223,334,451,536,641,767,855,941,1032,1125,1221,1315,1416,1509,1604,1701,1792,1883,1968,2079,2189,2291,2402,2511,2619,2779,3409", + "endColumns": "117,110,116,84,104,125,87,85,90,92,95,93,100,92,94,96,90,90,84,110,109,101,110,108,107,159,99,84", + "endOffsets": "218,329,446,531,636,762,850,936,1027,1120,1216,1310,1411,1504,1599,1696,1787,1878,1963,2074,2184,2286,2397,2506,2614,2774,2874,3489" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values-en-rAU.json b/android/build/intermediates/blame/res/release/multi-v2/values-en-rAU.json new file mode 100644 index 000000000..b60e310d6 --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values-en-rAU.json @@ -0,0 +1,68 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-en-rAU/values-en-rAU.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-en-rAU/values-en-rAU.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2846", + "endColumns": "100", + "endOffsets": "2942" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-en-rAU/values-en-rAU.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,209,309,417,501,601,716,793,869,960,1053,1149,1243,1344,1437,1532,1626,1717,1808,1890,1993,2097,2196,2301,2404,2508,2664,2764", + "endColumns": "103,99,107,83,99,114,76,75,90,92,95,93,100,92,94,93,90,90,81,102,103,98,104,102,103,155,99,81", + "endOffsets": "204,304,412,496,596,711,788,864,955,1048,1144,1238,1339,1432,1527,1621,1712,1803,1885,1988,2092,2191,2296,2399,2503,2659,2759,2841" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values-en-rAU/values-en-rAU.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-en-rAU/values-en-rAU.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2846", + "endColumns": "100", + "endOffsets": "2942" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-en-rAU/values-en-rAU.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,209,309,417,501,601,716,793,869,960,1053,1149,1243,1344,1437,1532,1626,1717,1808,1890,1993,2097,2196,2301,2404,2508,2664,2764", + "endColumns": "103,99,107,83,99,114,76,75,90,92,95,93,100,92,94,93,90,90,81,102,103,98,104,102,103,155,99,81", + "endOffsets": "204,304,412,496,596,711,788,864,955,1048,1144,1238,1339,1432,1527,1621,1712,1803,1885,1988,2092,2191,2296,2399,2503,2659,2759,2841" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values-en-rCA.json b/android/build/intermediates/blame/res/release/multi-v2/values-en-rCA.json new file mode 100644 index 000000000..7d0ee07f4 --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values-en-rCA.json @@ -0,0 +1,68 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values-en-rCA/values-en-rCA.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-en-rCA/values-en-rCA.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,209,309,417,501,601,716,793,869,960,1053,1149,1243,1344,1437,1532,1626,1717,1808,1890,1993,2097,2196,2301,2404,2508,2664,2764", + "endColumns": "103,99,107,83,99,114,76,75,90,92,95,93,100,92,94,93,90,90,81,102,103,98,104,102,103,155,99,81", + "endOffsets": "204,304,412,496,596,711,788,864,955,1048,1144,1238,1339,1432,1527,1621,1712,1803,1885,1988,2092,2191,2296,2399,2503,2659,2759,2841" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-en-rCA/values-en-rCA.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2846", + "endColumns": "100", + "endOffsets": "2942" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-en-rCA/values-en-rCA.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-en-rCA/values-en-rCA.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,209,309,417,501,601,716,793,869,960,1053,1149,1243,1344,1437,1532,1626,1717,1808,1890,1993,2097,2196,2301,2404,2508,2664,2764", + "endColumns": "103,99,107,83,99,114,76,75,90,92,95,93,100,92,94,93,90,90,81,102,103,98,104,102,103,155,99,81", + "endOffsets": "204,304,412,496,596,711,788,864,955,1048,1144,1238,1339,1432,1527,1621,1712,1803,1885,1988,2092,2191,2296,2399,2503,2659,2759,2841" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-en-rCA/values-en-rCA.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2846", + "endColumns": "100", + "endOffsets": "2942" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values-en-rGB.json b/android/build/intermediates/blame/res/release/multi-v2/values-en-rGB.json new file mode 100644 index 000000000..cc5afb3ca --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values-en-rGB.json @@ -0,0 +1,116 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values-en-rGB/values-en-rGB.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/react-native-0.19.1.aar/4235edd25620896d6b8925991ca39618/res/values-en-rGB/values-en-rGB.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,109,179,258,329,394,450,509", + "endColumns": "53,69,78,70,64,55,58,73", + "endOffsets": "104,174,253,324,389,445,504,578" + }, + "to": { + "startLines": "29,30,31,32,33,34,35,36", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "2764,2818,2888,2967,3038,3103,3159,3218", + "endColumns": "53,69,78,70,64,55,58,73", + "endOffsets": "2813,2883,2962,3033,3098,3154,3213,3287" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-en-rGB/values-en-rGB.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "38", + "startColumns": "4", + "startOffsets": "3374", + "endColumns": "100", + "endOffsets": "3470" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-en-rGB/values-en-rGB.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,209,309,417,501,601,716,793,869,960,1053,1149,1243,1344,1437,1532,1626,1717,1808,1890,1993,2097,2196,2301,2404,2508,2664,2764", + "endColumns": "103,99,107,83,99,114,76,75,90,92,95,93,100,92,94,93,90,90,81,102,103,98,104,102,103,155,99,81", + "endOffsets": "204,304,412,496,596,711,788,864,955,1048,1144,1238,1339,1432,1527,1621,1712,1803,1885,1988,2092,2191,2296,2399,2503,2659,2759,2841" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,37", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,209,309,417,501,601,716,793,869,960,1053,1149,1243,1344,1437,1532,1626,1717,1808,1890,1993,2097,2196,2301,2404,2508,2664,3292", + "endColumns": "103,99,107,83,99,114,76,75,90,92,95,93,100,92,94,93,90,90,81,102,103,98,104,102,103,155,99,81", + "endOffsets": "204,304,412,496,596,711,788,864,955,1048,1144,1238,1339,1432,1527,1621,1712,1803,1885,1988,2092,2191,2296,2399,2503,2659,2759,3369" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-en-rGB/values-en-rGB.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/react-native-0.19.1.aar/4235edd25620896d6b8925991ca39618/res/values-en-rGB/values-en-rGB.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,109,179,258,329,394,450,509", + "endColumns": "53,69,78,70,64,55,58,73", + "endOffsets": "104,174,253,324,389,445,504,578" + }, + "to": { + "startLines": "29,30,31,32,33,34,35,36", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "2764,2818,2888,2967,3038,3103,3159,3218", + "endColumns": "53,69,78,70,64,55,58,73", + "endOffsets": "2813,2883,2962,3033,3098,3154,3213,3287" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-en-rGB/values-en-rGB.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "38", + "startColumns": "4", + "startOffsets": "3374", + "endColumns": "100", + "endOffsets": "3470" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-en-rGB/values-en-rGB.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,209,309,417,501,601,716,793,869,960,1053,1149,1243,1344,1437,1532,1626,1717,1808,1890,1993,2097,2196,2301,2404,2508,2664,2764", + "endColumns": "103,99,107,83,99,114,76,75,90,92,95,93,100,92,94,93,90,90,81,102,103,98,104,102,103,155,99,81", + "endOffsets": "204,304,412,496,596,711,788,864,955,1048,1144,1238,1339,1432,1527,1621,1712,1803,1885,1988,2092,2191,2296,2399,2503,2659,2759,2841" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,37", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,209,309,417,501,601,716,793,869,960,1053,1149,1243,1344,1437,1532,1626,1717,1808,1890,1993,2097,2196,2301,2404,2508,2664,3292", + "endColumns": "103,99,107,83,99,114,76,75,90,92,95,93,100,92,94,93,90,90,81,102,103,98,104,102,103,155,99,81", + "endOffsets": "204,304,412,496,596,711,788,864,955,1048,1144,1238,1339,1432,1527,1621,1712,1803,1885,1988,2092,2191,2296,2399,2503,2659,2759,3369" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values-en-rIN.json b/android/build/intermediates/blame/res/release/multi-v2/values-en-rIN.json new file mode 100644 index 000000000..03b38c7cf --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values-en-rIN.json @@ -0,0 +1,68 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values-en-rIN/values-en-rIN.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-en-rIN/values-en-rIN.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2846", + "endColumns": "100", + "endOffsets": "2942" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-en-rIN/values-en-rIN.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,209,309,417,501,601,716,793,869,960,1053,1149,1243,1344,1437,1532,1626,1717,1808,1890,1993,2097,2196,2301,2404,2508,2664,2764", + "endColumns": "103,99,107,83,99,114,76,75,90,92,95,93,100,92,94,93,90,90,81,102,103,98,104,102,103,155,99,81", + "endOffsets": "204,304,412,496,596,711,788,864,955,1048,1144,1238,1339,1432,1527,1621,1712,1803,1885,1988,2092,2191,2296,2399,2503,2659,2759,2841" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-en-rIN/values-en-rIN.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-en-rIN/values-en-rIN.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2846", + "endColumns": "100", + "endOffsets": "2942" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-en-rIN/values-en-rIN.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,209,309,417,501,601,716,793,869,960,1053,1149,1243,1344,1437,1532,1626,1717,1808,1890,1993,2097,2196,2301,2404,2508,2664,2764", + "endColumns": "103,99,107,83,99,114,76,75,90,92,95,93,100,92,94,93,90,90,81,102,103,98,104,102,103,155,99,81", + "endOffsets": "204,304,412,496,596,711,788,864,955,1048,1144,1238,1339,1432,1527,1621,1712,1803,1885,1988,2092,2191,2296,2399,2503,2659,2759,2841" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values-en-rXC.json b/android/build/intermediates/blame/res/release/multi-v2/values-en-rXC.json new file mode 100644 index 000000000..ae075b4d5 --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values-en-rXC.json @@ -0,0 +1,68 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values-en-rXC/values-en-rXC.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-en-rXC/values-en-rXC.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,310,510,719,904,1106,1321,1494,1671,1862,2055,2253,2449,2652,2847,3044,3239,3432,3623,3807,4011,4216,4417,4624,4826,5031,5303,5503", + "endColumns": "204,199,208,184,201,214,172,176,190,192,197,195,202,194,196,194,192,190,183,203,204,200,206,201,204,271,199,178", + "endOffsets": "305,505,714,899,1101,1316,1489,1666,1857,2050,2248,2444,2647,2842,3039,3234,3427,3618,3802,4006,4211,4412,4619,4821,5026,5298,5498,5677" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-en-rXC/values-en-rXC.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "202", + "endOffsets": "253" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "5682", + "endColumns": "202", + "endOffsets": "5880" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-en-rXC/values-en-rXC.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-en-rXC/values-en-rXC.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,310,510,719,904,1106,1321,1494,1671,1862,2055,2253,2449,2652,2847,3044,3239,3432,3623,3807,4011,4216,4417,4624,4826,5031,5303,5503", + "endColumns": "204,199,208,184,201,214,172,176,190,192,197,195,202,194,196,194,192,190,183,203,204,200,206,201,204,271,199,178", + "endOffsets": "305,505,714,899,1101,1316,1489,1666,1857,2050,2248,2444,2647,2842,3039,3234,3427,3618,3802,4006,4211,4412,4619,4821,5026,5298,5498,5677" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-en-rXC/values-en-rXC.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "202", + "endOffsets": "253" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "5682", + "endColumns": "202", + "endOffsets": "5880" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values-es-rES.json b/android/build/intermediates/blame/res/release/multi-v2/values-es-rES.json new file mode 100644 index 000000000..bd97a3ab4 --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values-es-rES.json @@ -0,0 +1,34 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values-es-rES/values-es-rES.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/react-native-0.19.1.aar/4235edd25620896d6b8925991ca39618/res/values-es-rES/values-es-rES.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,109,186,265,336,396,452,511", + "endColumns": "53,76,78,70,59,55,58,73", + "endOffsets": "104,181,260,331,391,447,506,580" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-es-rES/values-es-rES.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/react-native-0.19.1.aar/4235edd25620896d6b8925991ca39618/res/values-es-rES/values-es-rES.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,109,186,265,336,396,452,511", + "endColumns": "53,76,78,70,59,55,58,73", + "endOffsets": "104,181,260,331,391,447,506,580" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values-es-rUS.json b/android/build/intermediates/blame/res/release/multi-v2/values-es-rUS.json new file mode 100644 index 000000000..b45d6014f --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values-es-rUS.json @@ -0,0 +1,68 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values-es-rUS/values-es-rUS.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-es-rUS/values-es-rUS.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2920", + "endColumns": "100", + "endOffsets": "3016" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-es-rUS/values-es-rUS.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,225,334,442,527,628,751,836,918,1009,1102,1198,1292,1392,1485,1584,1680,1771,1862,1944,2056,2156,2257,2365,2472,2579,2738,2838", + "endColumns": "119,108,107,84,100,122,84,81,90,92,95,93,99,92,98,95,90,90,81,111,99,100,107,106,106,158,99,81", + "endOffsets": "220,329,437,522,623,746,831,913,1004,1097,1193,1287,1387,1480,1579,1675,1766,1857,1939,2051,2151,2252,2360,2467,2574,2733,2833,2915" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-es-rUS/values-es-rUS.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-es-rUS/values-es-rUS.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2920", + "endColumns": "100", + "endOffsets": "3016" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-es-rUS/values-es-rUS.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,225,334,442,527,628,751,836,918,1009,1102,1198,1292,1392,1485,1584,1680,1771,1862,1944,2056,2156,2257,2365,2472,2579,2738,2838", + "endColumns": "119,108,107,84,100,122,84,81,90,92,95,93,99,92,98,95,90,90,81,111,99,100,107,106,106,158,99,81", + "endOffsets": "220,329,437,522,623,746,831,913,1004,1097,1193,1287,1387,1480,1579,1675,1766,1857,1939,2051,2151,2252,2360,2467,2574,2733,2833,2915" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values-es.json b/android/build/intermediates/blame/res/release/multi-v2/values-es.json new file mode 100644 index 000000000..77d9d76d4 --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values-es.json @@ -0,0 +1,116 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-es/values-es.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-es/values-es.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,222,335,443,528,629,757,842,924,1016,1110,1208,1302,1403,1497,1593,1689,1781,1873,1955,2062,2162,2261,2369,2476,2583,2742,2842", + "endColumns": "116,112,107,84,100,127,84,81,91,93,97,93,100,93,95,95,91,91,81,106,99,98,107,106,106,158,99,81", + "endOffsets": "217,330,438,523,624,752,837,919,1011,1105,1203,1297,1398,1492,1588,1684,1776,1868,1950,2057,2157,2256,2364,2471,2578,2737,2837,2919" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,37", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,222,335,443,528,629,757,842,924,1016,1110,1208,1302,1403,1497,1593,1689,1781,1873,1955,2062,2162,2261,2369,2476,2583,2742,3372", + "endColumns": "116,112,107,84,100,127,84,81,91,93,97,93,100,93,95,95,91,91,81,106,99,98,107,106,106,158,99,81", + "endOffsets": "217,330,438,523,624,752,837,919,1011,1105,1203,1297,1398,1492,1588,1684,1776,1868,1950,2057,2157,2256,2364,2471,2578,2737,2837,3449" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/react-native-0.19.1.aar/4235edd25620896d6b8925991ca39618/res/values-es/values-es.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,109,186,265,336,396,452,511", + "endColumns": "53,76,78,70,59,55,58,73", + "endOffsets": "104,181,260,331,391,447,506,580" + }, + "to": { + "startLines": "29,30,31,32,33,34,35,36", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "2842,2896,2973,3052,3123,3183,3239,3298", + "endColumns": "53,76,78,70,59,55,58,73", + "endOffsets": "2891,2968,3047,3118,3178,3234,3293,3367" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-es/values-es.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "38", + "startColumns": "4", + "startOffsets": "3454", + "endColumns": "100", + "endOffsets": "3550" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values-es/values-es.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-es/values-es.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,222,335,443,528,629,757,842,924,1016,1110,1208,1302,1403,1497,1593,1689,1781,1873,1955,2062,2162,2261,2369,2476,2583,2742,2842", + "endColumns": "116,112,107,84,100,127,84,81,91,93,97,93,100,93,95,95,91,91,81,106,99,98,107,106,106,158,99,81", + "endOffsets": "217,330,438,523,624,752,837,919,1011,1105,1203,1297,1398,1492,1588,1684,1776,1868,1950,2057,2157,2256,2364,2471,2578,2737,2837,2919" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,37", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,222,335,443,528,629,757,842,924,1016,1110,1208,1302,1403,1497,1593,1689,1781,1873,1955,2062,2162,2261,2369,2476,2583,2742,3372", + "endColumns": "116,112,107,84,100,127,84,81,91,93,97,93,100,93,95,95,91,91,81,106,99,98,107,106,106,158,99,81", + "endOffsets": "217,330,438,523,624,752,837,919,1011,1105,1203,1297,1398,1492,1588,1684,1776,1868,1950,2057,2157,2256,2364,2471,2578,2737,2837,3449" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/react-native-0.19.1.aar/4235edd25620896d6b8925991ca39618/res/values-es/values-es.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,109,186,265,336,396,452,511", + "endColumns": "53,76,78,70,59,55,58,73", + "endOffsets": "104,181,260,331,391,447,506,580" + }, + "to": { + "startLines": "29,30,31,32,33,34,35,36", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "2842,2896,2973,3052,3123,3183,3239,3298", + "endColumns": "53,76,78,70,59,55,58,73", + "endOffsets": "2891,2968,3047,3118,3178,3234,3293,3367" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-es/values-es.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "38", + "startColumns": "4", + "startOffsets": "3454", + "endColumns": "100", + "endOffsets": "3550" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values-et.json b/android/build/intermediates/blame/res/release/multi-v2/values-et.json new file mode 100644 index 000000000..423ffa7a4 --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values-et.json @@ -0,0 +1,68 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values-et/values-et.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-et/values-et.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,222,329,440,526,628,745,825,903,995,1089,1194,1296,1406,1500,1601,1695,1787,1880,1963,2074,2179,2278,2388,2489,2592,2758,2860", + "endColumns": "116,106,110,85,101,116,79,77,91,93,104,101,109,93,100,93,91,92,82,110,104,98,109,100,102,165,101,81", + "endOffsets": "217,324,435,521,623,740,820,898,990,1084,1189,1291,1401,1495,1596,1690,1782,1875,1958,2069,2174,2273,2383,2484,2587,2753,2855,2937" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-et/values-et.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2942", + "endColumns": "100", + "endOffsets": "3038" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-et/values-et.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-et/values-et.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,222,329,440,526,628,745,825,903,995,1089,1194,1296,1406,1500,1601,1695,1787,1880,1963,2074,2179,2278,2388,2489,2592,2758,2860", + "endColumns": "116,106,110,85,101,116,79,77,91,93,104,101,109,93,100,93,91,92,82,110,104,98,109,100,102,165,101,81", + "endOffsets": "217,324,435,521,623,740,820,898,990,1084,1189,1291,1401,1495,1596,1690,1782,1875,1958,2069,2174,2273,2383,2484,2587,2753,2855,2937" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-et/values-et.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2942", + "endColumns": "100", + "endOffsets": "3038" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values-eu.json b/android/build/intermediates/blame/res/release/multi-v2/values-eu.json new file mode 100644 index 000000000..77e243d18 --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values-eu.json @@ -0,0 +1,68 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values-eu/values-eu.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-eu/values-eu.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2938", + "endColumns": "100", + "endOffsets": "3034" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-eu/values-eu.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,214,312,422,508,614,738,825,909,1001,1095,1192,1286,1388,1482,1578,1675,1767,1860,1942,2051,2161,2260,2369,2475,2586,2757,2856", + "endColumns": "108,97,109,85,105,123,86,83,91,93,96,93,101,93,95,96,91,92,81,108,109,98,108,105,110,170,98,81", + "endOffsets": "209,307,417,503,609,733,820,904,996,1090,1187,1281,1383,1477,1573,1670,1762,1855,1937,2046,2156,2255,2364,2470,2581,2752,2851,2933" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-eu/values-eu.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-eu/values-eu.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2938", + "endColumns": "100", + "endOffsets": "3034" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-eu/values-eu.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,214,312,422,508,614,738,825,909,1001,1095,1192,1286,1388,1482,1578,1675,1767,1860,1942,2051,2161,2260,2369,2475,2586,2757,2856", + "endColumns": "108,97,109,85,105,123,86,83,91,93,96,93,101,93,95,96,91,92,81,108,109,98,108,105,110,170,98,81", + "endOffsets": "209,307,417,503,609,733,820,904,996,1090,1187,1281,1383,1477,1573,1670,1762,1855,1937,2046,2156,2255,2364,2470,2581,2752,2851,2933" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values-fa.json b/android/build/intermediates/blame/res/release/multi-v2/values-fa.json new file mode 100644 index 000000000..34cd7c0ae --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values-fa.json @@ -0,0 +1,68 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-fa/values-fa.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-fa/values-fa.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2903", + "endColumns": "100", + "endOffsets": "2999" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-fa/values-fa.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,215,318,429,513,616,731,810,888,981,1076,1172,1266,1369,1464,1561,1660,1753,1843,1924,2036,2139,2237,2347,2451,2560,2721,2822", + "endColumns": "109,102,110,83,102,114,78,77,92,94,95,93,102,94,96,98,92,89,80,111,102,97,109,103,108,160,100,80", + "endOffsets": "210,313,424,508,611,726,805,883,976,1071,1167,1261,1364,1459,1556,1655,1748,1838,1919,2031,2134,2232,2342,2446,2555,2716,2817,2898" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values-fa/values-fa.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-fa/values-fa.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2903", + "endColumns": "100", + "endOffsets": "2999" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-fa/values-fa.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,215,318,429,513,616,731,810,888,981,1076,1172,1266,1369,1464,1561,1660,1753,1843,1924,2036,2139,2237,2347,2451,2560,2721,2822", + "endColumns": "109,102,110,83,102,114,78,77,92,94,95,93,102,94,96,98,92,89,80,111,102,97,109,103,108,160,100,80", + "endOffsets": "210,313,424,508,611,726,805,883,976,1071,1167,1261,1364,1459,1556,1655,1748,1838,1919,2031,2134,2232,2342,2446,2555,2716,2817,2898" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values-fb-rLL.json b/android/build/intermediates/blame/res/release/multi-v2/values-fb-rLL.json new file mode 100644 index 000000000..c168b97af --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values-fb-rLL.json @@ -0,0 +1,34 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values-fb-rLL/values-fb-rLL.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/react-native-0.19.1.aar/4235edd25620896d6b8925991ca39618/res/values-fb-rLL/values-fb-rLL.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,109,190,269,340,419,475,534", + "endColumns": "53,80,78,70,78,55,58,73", + "endOffsets": "104,185,264,335,414,470,529,603" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-fb-rLL/values-fb-rLL.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/react-native-0.19.1.aar/4235edd25620896d6b8925991ca39618/res/values-fb-rLL/values-fb-rLL.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,109,190,269,340,419,475,534", + "endColumns": "53,80,78,70,78,55,58,73", + "endOffsets": "104,185,264,335,414,470,529,603" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values-fb.json b/android/build/intermediates/blame/res/release/multi-v2/values-fb.json new file mode 100644 index 000000000..fff1bb85b --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values-fb.json @@ -0,0 +1,34 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values-fb/values-fb.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/react-native-0.19.1.aar/4235edd25620896d6b8925991ca39618/res/values-fb/values-fb.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,146,253,369,477,579,672,768", + "endColumns": "90,106,115,107,101,92,95,110", + "endOffsets": "141,248,364,472,574,667,763,874" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-fb/values-fb.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/react-native-0.19.1.aar/4235edd25620896d6b8925991ca39618/res/values-fb/values-fb.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,146,253,369,477,579,672,768", + "endColumns": "90,106,115,107,101,92,95,110", + "endOffsets": "141,248,364,472,574,667,763,874" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values-fi.json b/android/build/intermediates/blame/res/release/multi-v2/values-fi.json new file mode 100644 index 000000000..6ed91be7a --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values-fi.json @@ -0,0 +1,116 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values-fi/values-fi.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-fi/values-fi.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,213,313,414,500,605,723,810,892,983,1076,1172,1266,1361,1454,1550,1649,1740,1834,1914,2021,2124,2221,2327,2426,2530,2693,2792", + "endColumns": "107,99,100,85,104,117,86,81,90,92,95,93,94,92,95,98,90,93,79,106,102,96,105,98,103,162,98,79", + "endOffsets": "208,308,409,495,600,718,805,887,978,1071,1167,1261,1356,1449,1545,1644,1735,1829,1909,2016,2119,2216,2322,2421,2525,2688,2787,2867" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,37", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,213,313,414,500,605,723,810,892,983,1076,1172,1266,1361,1454,1550,1649,1740,1834,1914,2021,2124,2221,2327,2426,2530,2693,3316", + "endColumns": "107,99,100,85,104,117,86,81,90,92,95,93,94,92,95,98,90,93,79,106,102,96,105,98,103,162,98,79", + "endOffsets": "208,308,409,495,600,718,805,887,978,1071,1167,1261,1356,1449,1545,1644,1735,1829,1909,2016,2119,2216,2322,2421,2525,2688,2787,3391" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-fi/values-fi.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "38", + "startColumns": "4", + "startOffsets": "3396", + "endColumns": "100", + "endOffsets": "3492" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/react-native-0.19.1.aar/4235edd25620896d6b8925991ca39618/res/values-fi/values-fi.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,109,183,262,333,390,446,505", + "endColumns": "53,73,78,70,56,55,58,73", + "endOffsets": "104,178,257,328,385,441,500,574" + }, + "to": { + "startLines": "29,30,31,32,33,34,35,36", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "2792,2846,2920,2999,3070,3127,3183,3242", + "endColumns": "53,73,78,70,56,55,58,73", + "endOffsets": "2841,2915,2994,3065,3122,3178,3237,3311" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-fi/values-fi.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-fi/values-fi.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,213,313,414,500,605,723,810,892,983,1076,1172,1266,1361,1454,1550,1649,1740,1834,1914,2021,2124,2221,2327,2426,2530,2693,2792", + "endColumns": "107,99,100,85,104,117,86,81,90,92,95,93,94,92,95,98,90,93,79,106,102,96,105,98,103,162,98,79", + "endOffsets": "208,308,409,495,600,718,805,887,978,1071,1167,1261,1356,1449,1545,1644,1735,1829,1909,2016,2119,2216,2322,2421,2525,2688,2787,2867" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,37", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,213,313,414,500,605,723,810,892,983,1076,1172,1266,1361,1454,1550,1649,1740,1834,1914,2021,2124,2221,2327,2426,2530,2693,3316", + "endColumns": "107,99,100,85,104,117,86,81,90,92,95,93,94,92,95,98,90,93,79,106,102,96,105,98,103,162,98,79", + "endOffsets": "208,308,409,495,600,718,805,887,978,1071,1167,1261,1356,1449,1545,1644,1735,1829,1909,2016,2119,2216,2322,2421,2525,2688,2787,3391" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-fi/values-fi.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "38", + "startColumns": "4", + "startOffsets": "3396", + "endColumns": "100", + "endOffsets": "3492" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/react-native-0.19.1.aar/4235edd25620896d6b8925991ca39618/res/values-fi/values-fi.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,109,183,262,333,390,446,505", + "endColumns": "53,73,78,70,56,55,58,73", + "endOffsets": "104,178,257,328,385,441,500,574" + }, + "to": { + "startLines": "29,30,31,32,33,34,35,36", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "2792,2846,2920,2999,3070,3127,3183,3242", + "endColumns": "53,73,78,70,56,55,58,73", + "endOffsets": "2841,2915,2994,3065,3122,3178,3237,3311" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values-fr-rCA.json b/android/build/intermediates/blame/res/release/multi-v2/values-fr-rCA.json new file mode 100644 index 000000000..4c44ef5fc --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values-fr-rCA.json @@ -0,0 +1,68 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-fr-rCA/values-fr-rCA.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-fr-rCA/values-fr-rCA.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,216,331,442,529,645,775,858,938,1029,1122,1221,1316,1417,1510,1603,1698,1789,1880,1976,2086,2198,2301,2412,2519,2621,2780,2879", + "endColumns": "110,114,110,86,115,129,82,79,90,92,98,94,100,92,92,94,90,90,95,109,111,102,110,106,101,158,98,85", + "endOffsets": "211,326,437,524,640,770,853,933,1024,1117,1216,1311,1412,1505,1598,1693,1784,1875,1971,2081,2193,2296,2407,2514,2616,2775,2874,2960" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-fr-rCA/values-fr-rCA.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2965", + "endColumns": "100", + "endOffsets": "3061" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values-fr-rCA/values-fr-rCA.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-fr-rCA/values-fr-rCA.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,216,331,442,529,645,775,858,938,1029,1122,1221,1316,1417,1510,1603,1698,1789,1880,1976,2086,2198,2301,2412,2519,2621,2780,2879", + "endColumns": "110,114,110,86,115,129,82,79,90,92,98,94,100,92,92,94,90,90,95,109,111,102,110,106,101,158,98,85", + "endOffsets": "211,326,437,524,640,770,853,933,1024,1117,1216,1311,1412,1505,1598,1693,1784,1875,1971,2081,2193,2296,2407,2514,2616,2775,2874,2960" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-fr-rCA/values-fr-rCA.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2965", + "endColumns": "100", + "endOffsets": "3061" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values-fr.json b/android/build/intermediates/blame/res/release/multi-v2/values-fr.json new file mode 100644 index 000000000..6d7493793 --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values-fr.json @@ -0,0 +1,116 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-fr/values-fr.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/react-native-0.19.1.aar/4235edd25620896d6b8925991ca39618/res/values-fr/values-fr.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,109,184,263,334,406,462,521", + "endColumns": "53,74,78,70,71,55,58,73", + "endOffsets": "104,179,258,329,401,457,516,590" + }, + "to": { + "startLines": "29,30,31,32,33,34,35,36", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "2859,2913,2988,3067,3138,3210,3266,3325", + "endColumns": "53,74,78,70,71,55,58,73", + "endOffsets": "2908,2983,3062,3133,3205,3261,3320,3394" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-fr/values-fr.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "38", + "startColumns": "4", + "startOffsets": "3485", + "endColumns": "100", + "endOffsets": "3581" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-fr/values-fr.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,216,331,442,524,630,760,843,923,1014,1107,1206,1301,1402,1495,1588,1683,1774,1865,1951,2061,2173,2276,2387,2494,2601,2760,2859", + "endColumns": "110,114,110,81,105,129,82,79,90,92,98,94,100,92,92,94,90,90,85,109,111,102,110,106,106,158,98,85", + "endOffsets": "211,326,437,519,625,755,838,918,1009,1102,1201,1296,1397,1490,1583,1678,1769,1860,1946,2056,2168,2271,2382,2489,2596,2755,2854,2940" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,37", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,216,331,442,524,630,760,843,923,1014,1107,1206,1301,1402,1495,1588,1683,1774,1865,1951,2061,2173,2276,2387,2494,2601,2760,3399", + "endColumns": "110,114,110,81,105,129,82,79,90,92,98,94,100,92,92,94,90,90,85,109,111,102,110,106,106,158,98,85", + "endOffsets": "211,326,437,519,625,755,838,918,1009,1102,1201,1296,1397,1490,1583,1678,1769,1860,1946,2056,2168,2271,2382,2489,2596,2755,2854,3480" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values-fr/values-fr.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/react-native-0.19.1.aar/4235edd25620896d6b8925991ca39618/res/values-fr/values-fr.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,109,184,263,334,406,462,521", + "endColumns": "53,74,78,70,71,55,58,73", + "endOffsets": "104,179,258,329,401,457,516,590" + }, + "to": { + "startLines": "29,30,31,32,33,34,35,36", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "2859,2913,2988,3067,3138,3210,3266,3325", + "endColumns": "53,74,78,70,71,55,58,73", + "endOffsets": "2908,2983,3062,3133,3205,3261,3320,3394" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-fr/values-fr.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "38", + "startColumns": "4", + "startOffsets": "3485", + "endColumns": "100", + "endOffsets": "3581" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-fr/values-fr.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,216,331,442,524,630,760,843,923,1014,1107,1206,1301,1402,1495,1588,1683,1774,1865,1951,2061,2173,2276,2387,2494,2601,2760,2859", + "endColumns": "110,114,110,81,105,129,82,79,90,92,98,94,100,92,92,94,90,90,85,109,111,102,110,106,106,158,98,85", + "endOffsets": "211,326,437,519,625,755,838,918,1009,1102,1201,1296,1397,1490,1583,1678,1769,1860,1946,2056,2168,2271,2382,2489,2596,2755,2854,2940" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,37", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,216,331,442,524,630,760,843,923,1014,1107,1206,1301,1402,1495,1588,1683,1774,1865,1951,2061,2173,2276,2387,2494,2601,2760,3399", + "endColumns": "110,114,110,81,105,129,82,79,90,92,98,94,100,92,92,94,90,90,85,109,111,102,110,106,106,158,98,85", + "endOffsets": "211,326,437,519,625,755,838,918,1009,1102,1201,1296,1397,1490,1583,1678,1769,1860,1946,2056,2168,2271,2382,2489,2596,2755,2854,3480" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values-gl.json b/android/build/intermediates/blame/res/release/multi-v2/values-gl.json new file mode 100644 index 000000000..bfb43a089 --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values-gl.json @@ -0,0 +1,68 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-gl/values-gl.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-gl/values-gl.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,217,329,437,522,624,750,834,915,1007,1101,1199,1293,1394,1488,1584,1679,1771,1863,1945,2052,2161,2260,2368,2472,2579,2738,2838", + "endColumns": "111,111,107,84,101,125,83,80,91,93,97,93,100,93,95,94,91,91,81,106,108,98,107,103,106,158,99,81", + "endOffsets": "212,324,432,517,619,745,829,910,1002,1096,1194,1288,1389,1483,1579,1674,1766,1858,1940,2047,2156,2255,2363,2467,2574,2733,2833,2915" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-gl/values-gl.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2920", + "endColumns": "100", + "endOffsets": "3016" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values-gl/values-gl.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-gl/values-gl.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,217,329,437,522,624,750,834,915,1007,1101,1199,1293,1394,1488,1584,1679,1771,1863,1945,2052,2161,2260,2368,2472,2579,2738,2838", + "endColumns": "111,111,107,84,101,125,83,80,91,93,97,93,100,93,95,94,91,91,81,106,108,98,107,103,106,158,99,81", + "endOffsets": "212,324,432,517,619,745,829,910,1002,1096,1194,1288,1389,1483,1579,1674,1766,1858,1940,2047,2156,2255,2363,2467,2574,2733,2833,2915" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-gl/values-gl.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2920", + "endColumns": "100", + "endOffsets": "3016" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values-gu.json b/android/build/intermediates/blame/res/release/multi-v2/values-gu.json new file mode 100644 index 000000000..36946a11a --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values-gu.json @@ -0,0 +1,68 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-gu/values-gu.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-gu/values-gu.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2882", + "endColumns": "100", + "endOffsets": "2978" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-gu/values-gu.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,214,318,425,512,613,736,813,891,982,1075,1174,1268,1369,1462,1557,1654,1745,1836,1916,2022,2124,2221,2330,2429,2539,2699,2802", + "endColumns": "108,103,106,86,100,122,76,77,90,92,98,93,100,92,94,96,90,90,79,105,101,96,108,98,109,159,102,79", + "endOffsets": "209,313,420,507,608,731,808,886,977,1070,1169,1263,1364,1457,1552,1649,1740,1831,1911,2017,2119,2216,2325,2424,2534,2694,2797,2877" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values-gu/values-gu.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-gu/values-gu.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2882", + "endColumns": "100", + "endOffsets": "2978" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-gu/values-gu.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,214,318,425,512,613,736,813,891,982,1075,1174,1268,1369,1462,1557,1654,1745,1836,1916,2022,2124,2221,2330,2429,2539,2699,2802", + "endColumns": "108,103,106,86,100,122,76,77,90,92,98,93,100,92,94,96,90,90,79,105,101,96,108,98,109,159,102,79", + "endOffsets": "209,313,420,507,608,731,808,886,977,1070,1169,1263,1364,1457,1552,1649,1740,1831,1911,2017,2119,2216,2325,2424,2534,2694,2797,2877" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values-h720dp-v13.json b/android/build/intermediates/blame/res/release/multi-v2/values-h720dp-v13.json new file mode 100644 index 000000000..5bdef3f40 --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values-h720dp-v13.json @@ -0,0 +1,34 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-h720dp-v13/values-h720dp-v13.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-h720dp-v13/values-h720dp-v13.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "66", + "endOffsets": "117" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values-h720dp-v13/values-h720dp-v13.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-h720dp-v13/values-h720dp-v13.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "66", + "endOffsets": "117" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values-hdpi-v4.json b/android/build/intermediates/blame/res/release/multi-v2/values-hdpi-v4.json new file mode 100644 index 000000000..7d69f3cd7 --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values-hdpi-v4.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values-hdpi-v4/values-hdpi-v4.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-hdpi-v4/values-hdpi-v4.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endLines": "6", + "endColumns": "13", + "endOffsets": "327" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-hdpi-v4/values-hdpi-v4.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-hdpi-v4/values-hdpi-v4.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endLines": "6", + "endColumns": "13", + "endOffsets": "327" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values-hi.json b/android/build/intermediates/blame/res/release/multi-v2/values-hi.json new file mode 100644 index 000000000..4472652c9 --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values-hi.json @@ -0,0 +1,68 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values-hi/values-hi.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-hi/values-hi.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,211,308,418,504,606,728,805,883,974,1067,1163,1257,1358,1451,1546,1640,1731,1822,1912,2021,2124,2226,2336,2437,2549,2711,2812", + "endColumns": "105,96,109,85,101,121,76,77,90,92,95,93,100,92,94,93,90,90,89,108,102,101,109,100,111,161,100,79", + "endOffsets": "206,303,413,499,601,723,800,878,969,1062,1158,1252,1353,1446,1541,1635,1726,1817,1907,2016,2119,2221,2331,2432,2544,2706,2807,2887" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-hi/values-hi.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2892", + "endColumns": "100", + "endOffsets": "2988" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-hi/values-hi.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-hi/values-hi.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,211,308,418,504,606,728,805,883,974,1067,1163,1257,1358,1451,1546,1640,1731,1822,1912,2021,2124,2226,2336,2437,2549,2711,2812", + "endColumns": "105,96,109,85,101,121,76,77,90,92,95,93,100,92,94,93,90,90,89,108,102,101,109,100,111,161,100,79", + "endOffsets": "206,303,413,499,601,723,800,878,969,1062,1158,1252,1353,1446,1541,1635,1726,1817,1907,2016,2119,2221,2331,2432,2544,2706,2807,2887" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-hi/values-hi.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2892", + "endColumns": "100", + "endOffsets": "2988" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values-hr.json b/android/build/intermediates/blame/res/release/multi-v2/values-hr.json new file mode 100644 index 000000000..8fce45da2 --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values-hr.json @@ -0,0 +1,68 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values-hr/values-hr.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-hr/values-hr.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2926", + "endColumns": "100", + "endOffsets": "3022" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-hr/values-hr.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,210,307,417,503,607,726,810,893,984,1077,1173,1267,1368,1461,1556,1655,1746,1837,1923,2027,2140,2246,2351,2464,2571,2740,2837", + "endColumns": "104,96,109,85,103,118,83,82,90,92,95,93,100,92,94,98,90,90,85,103,112,105,104,112,106,168,96,88", + "endOffsets": "205,302,412,498,602,721,805,888,979,1072,1168,1262,1363,1456,1551,1650,1741,1832,1918,2022,2135,2241,2346,2459,2566,2735,2832,2921" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-hr/values-hr.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-hr/values-hr.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2926", + "endColumns": "100", + "endOffsets": "3022" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-hr/values-hr.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,210,307,417,503,607,726,810,893,984,1077,1173,1267,1368,1461,1556,1655,1746,1837,1923,2027,2140,2246,2351,2464,2571,2740,2837", + "endColumns": "104,96,109,85,103,118,83,82,90,92,95,93,100,92,94,98,90,90,85,103,112,105,104,112,106,168,96,88", + "endOffsets": "205,302,412,498,602,721,805,888,979,1072,1168,1262,1363,1456,1551,1650,1741,1832,1918,2022,2135,2241,2346,2459,2566,2735,2832,2921" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values-hu.json b/android/build/intermediates/blame/res/release/multi-v2/values-hu.json new file mode 100644 index 000000000..f63bbe691 --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values-hu.json @@ -0,0 +1,116 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-hu/values-hu.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/react-native-0.19.1.aar/4235edd25620896d6b8925991ca39618/res/values-hu/values-hu.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,109,182,261,332,398,454,513", + "endColumns": "53,72,78,70,65,55,58,73", + "endOffsets": "104,177,256,327,393,449,508,582" + }, + "to": { + "startLines": "29,30,31,32,33,34,35,36", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "2878,2932,3005,3084,3155,3221,3277,3336", + "endColumns": "53,72,78,70,65,55,58,73", + "endOffsets": "2927,3000,3079,3150,3216,3272,3331,3405" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-hu/values-hu.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,213,318,433,517,629,759,835,911,1002,1095,1191,1285,1386,1479,1574,1669,1760,1851,1934,2044,2155,2255,2366,2474,2593,2775,2878", + "endColumns": "107,104,114,83,111,129,75,75,90,92,95,93,100,92,94,94,90,90,82,109,110,99,110,107,118,181,102,82", + "endOffsets": "208,313,428,512,624,754,830,906,997,1090,1186,1280,1381,1474,1569,1664,1755,1846,1929,2039,2150,2250,2361,2469,2588,2770,2873,2956" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,37", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,213,318,433,517,629,759,835,911,1002,1095,1191,1285,1386,1479,1574,1669,1760,1851,1934,2044,2155,2255,2366,2474,2593,2775,3410", + "endColumns": "107,104,114,83,111,129,75,75,90,92,95,93,100,92,94,94,90,90,82,109,110,99,110,107,118,181,102,82", + "endOffsets": "208,313,428,512,624,754,830,906,997,1090,1186,1280,1381,1474,1569,1664,1755,1846,1929,2039,2150,2250,2361,2469,2588,2770,2873,3488" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-hu/values-hu.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "38", + "startColumns": "4", + "startOffsets": "3493", + "endColumns": "100", + "endOffsets": "3589" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values-hu/values-hu.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/react-native-0.19.1.aar/4235edd25620896d6b8925991ca39618/res/values-hu/values-hu.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,109,182,261,332,398,454,513", + "endColumns": "53,72,78,70,65,55,58,73", + "endOffsets": "104,177,256,327,393,449,508,582" + }, + "to": { + "startLines": "29,30,31,32,33,34,35,36", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "2878,2932,3005,3084,3155,3221,3277,3336", + "endColumns": "53,72,78,70,65,55,58,73", + "endOffsets": "2927,3000,3079,3150,3216,3272,3331,3405" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-hu/values-hu.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,213,318,433,517,629,759,835,911,1002,1095,1191,1285,1386,1479,1574,1669,1760,1851,1934,2044,2155,2255,2366,2474,2593,2775,2878", + "endColumns": "107,104,114,83,111,129,75,75,90,92,95,93,100,92,94,94,90,90,82,109,110,99,110,107,118,181,102,82", + "endOffsets": "208,313,428,512,624,754,830,906,997,1090,1186,1280,1381,1474,1569,1664,1755,1846,1929,2039,2150,2250,2361,2469,2588,2770,2873,2956" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,37", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,213,318,433,517,629,759,835,911,1002,1095,1191,1285,1386,1479,1574,1669,1760,1851,1934,2044,2155,2255,2366,2474,2593,2775,3410", + "endColumns": "107,104,114,83,111,129,75,75,90,92,95,93,100,92,94,94,90,90,82,109,110,99,110,107,118,181,102,82", + "endOffsets": "208,313,428,512,624,754,830,906,997,1090,1186,1280,1381,1474,1569,1664,1755,1846,1929,2039,2150,2250,2361,2469,2588,2770,2873,3488" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-hu/values-hu.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "38", + "startColumns": "4", + "startOffsets": "3493", + "endColumns": "100", + "endOffsets": "3589" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values-hy.json b/android/build/intermediates/blame/res/release/multi-v2/values-hy.json new file mode 100644 index 000000000..2504318a4 --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values-hy.json @@ -0,0 +1,68 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-hy/values-hy.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-hy/values-hy.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,208,309,419,508,614,729,811,892,983,1076,1172,1266,1367,1460,1555,1649,1740,1831,1916,2023,2130,2229,2339,2446,2546,2703,2802", + "endColumns": "102,100,109,88,105,114,81,80,90,92,95,93,100,92,94,93,90,90,84,106,106,98,109,106,99,156,98,81", + "endOffsets": "203,304,414,503,609,724,806,887,978,1071,1167,1261,1362,1455,1550,1644,1735,1826,1911,2018,2125,2224,2334,2441,2541,2698,2797,2879" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-hy/values-hy.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2884", + "endColumns": "100", + "endOffsets": "2980" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values-hy/values-hy.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-hy/values-hy.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,208,309,419,508,614,729,811,892,983,1076,1172,1266,1367,1460,1555,1649,1740,1831,1916,2023,2130,2229,2339,2446,2546,2703,2802", + "endColumns": "102,100,109,88,105,114,81,80,90,92,95,93,100,92,94,93,90,90,84,106,106,98,109,106,99,156,98,81", + "endOffsets": "203,304,414,503,609,724,806,887,978,1071,1167,1261,1362,1455,1550,1644,1735,1826,1911,2018,2125,2224,2334,2441,2541,2698,2797,2879" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-hy/values-hy.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2884", + "endColumns": "100", + "endOffsets": "2980" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values-in.json b/android/build/intermediates/blame/res/release/multi-v2/values-in.json new file mode 100644 index 000000000..b38f0a7c6 --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values-in.json @@ -0,0 +1,116 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-in/values-in.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/react-native-0.19.1.aar/4235edd25620896d6b8925991ca39618/res/values-in/values-in.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,109,179,258,329,395,451,510", + "endColumns": "53,69,78,70,65,55,58,73", + "endOffsets": "104,174,253,324,390,446,505,579" + }, + "to": { + "startLines": "29,30,31,32,33,34,35,36", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "2803,2857,2927,3006,3077,3143,3199,3258", + "endColumns": "53,69,78,70,65,55,58,73", + "endOffsets": "2852,2922,3001,3072,3138,3194,3253,3327" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-in/values-in.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,215,317,422,509,613,729,811,890,981,1074,1170,1264,1365,1458,1553,1647,1738,1829,1915,2018,2127,2228,2332,2440,2548,2704,2803", + "endColumns": "109,101,104,86,103,115,81,78,90,92,95,93,100,92,94,93,90,90,85,102,108,100,103,107,107,155,98,83", + "endOffsets": "210,312,417,504,608,724,806,885,976,1069,1165,1259,1360,1453,1548,1642,1733,1824,1910,2013,2122,2223,2327,2435,2543,2699,2798,2882" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,37", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,215,317,422,509,613,729,811,890,981,1074,1170,1264,1365,1458,1553,1647,1738,1829,1915,2018,2127,2228,2332,2440,2548,2704,3332", + "endColumns": "109,101,104,86,103,115,81,78,90,92,95,93,100,92,94,93,90,90,85,102,108,100,103,107,107,155,98,83", + "endOffsets": "210,312,417,504,608,724,806,885,976,1069,1165,1259,1360,1453,1548,1642,1733,1824,1910,2013,2122,2223,2327,2435,2543,2699,2798,3411" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-in/values-in.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "38", + "startColumns": "4", + "startOffsets": "3416", + "endColumns": "100", + "endOffsets": "3512" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values-in/values-in.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/react-native-0.19.1.aar/4235edd25620896d6b8925991ca39618/res/values-in/values-in.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,109,179,258,329,395,451,510", + "endColumns": "53,69,78,70,65,55,58,73", + "endOffsets": "104,174,253,324,390,446,505,579" + }, + "to": { + "startLines": "29,30,31,32,33,34,35,36", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "2803,2857,2927,3006,3077,3143,3199,3258", + "endColumns": "53,69,78,70,65,55,58,73", + "endOffsets": "2852,2922,3001,3072,3138,3194,3253,3327" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-in/values-in.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,215,317,422,509,613,729,811,890,981,1074,1170,1264,1365,1458,1553,1647,1738,1829,1915,2018,2127,2228,2332,2440,2548,2704,2803", + "endColumns": "109,101,104,86,103,115,81,78,90,92,95,93,100,92,94,93,90,90,85,102,108,100,103,107,107,155,98,83", + "endOffsets": "210,312,417,504,608,724,806,885,976,1069,1165,1259,1360,1453,1548,1642,1733,1824,1910,2013,2122,2223,2327,2435,2543,2699,2798,2882" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,37", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,215,317,422,509,613,729,811,890,981,1074,1170,1264,1365,1458,1553,1647,1738,1829,1915,2018,2127,2228,2332,2440,2548,2704,3332", + "endColumns": "109,101,104,86,103,115,81,78,90,92,95,93,100,92,94,93,90,90,85,102,108,100,103,107,107,155,98,83", + "endOffsets": "210,312,417,504,608,724,806,885,976,1069,1165,1259,1360,1453,1548,1642,1733,1824,1910,2013,2122,2223,2327,2435,2543,2699,2798,3411" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-in/values-in.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "38", + "startColumns": "4", + "startOffsets": "3416", + "endColumns": "100", + "endOffsets": "3512" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values-is.json b/android/build/intermediates/blame/res/release/multi-v2/values-is.json new file mode 100644 index 000000000..6cbf51f7b --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values-is.json @@ -0,0 +1,68 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-is/values-is.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-is/values-is.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,205,302,414,499,600,714,794,874,965,1058,1154,1248,1355,1448,1543,1638,1729,1823,1904,2014,2122,2220,2329,2428,2531,2686,2784", + "endColumns": "99,96,111,84,100,113,79,79,90,92,95,93,106,92,94,94,90,93,80,109,107,97,108,98,102,154,97,80", + "endOffsets": "200,297,409,494,595,709,789,869,960,1053,1149,1243,1350,1443,1538,1633,1724,1818,1899,2009,2117,2215,2324,2423,2526,2681,2779,2860" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-is/values-is.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2865", + "endColumns": "100", + "endOffsets": "2961" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values-is/values-is.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-is/values-is.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,205,302,414,499,600,714,794,874,965,1058,1154,1248,1355,1448,1543,1638,1729,1823,1904,2014,2122,2220,2329,2428,2531,2686,2784", + "endColumns": "99,96,111,84,100,113,79,79,90,92,95,93,106,92,94,94,90,93,80,109,107,97,108,98,102,154,97,80", + "endOffsets": "200,297,409,494,595,709,789,869,960,1053,1149,1243,1350,1443,1538,1633,1724,1818,1899,2009,2117,2215,2324,2423,2526,2681,2779,2860" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-is/values-is.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2865", + "endColumns": "100", + "endOffsets": "2961" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values-it.json b/android/build/intermediates/blame/res/release/multi-v2/values-it.json new file mode 100644 index 000000000..e31654b01 --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values-it.json @@ -0,0 +1,116 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-it/values-it.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/react-native-0.19.1.aar/4235edd25620896d6b8925991ca39618/res/values-it/values-it.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,109,181,260,331,392,448,507", + "endColumns": "53,71,78,70,60,55,58,73", + "endOffsets": "104,176,255,326,387,443,502,576" + }, + "to": { + "startLines": "29,30,31,32,33,34,35,36", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "2823,2877,2949,3028,3099,3160,3216,3275", + "endColumns": "53,71,78,70,60,55,58,73", + "endOffsets": "2872,2944,3023,3094,3155,3211,3270,3344" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-it/values-it.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "38", + "startColumns": "4", + "startOffsets": "3432", + "endColumns": "100", + "endOffsets": "3528" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-it/values-it.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,214,314,423,507,616,741,818,894,986,1080,1174,1268,1370,1464,1561,1667,1759,1851,1932,2038,2146,2244,2348,2453,2560,2723,2823", + "endColumns": "108,99,108,83,108,124,76,75,91,93,93,93,101,93,96,105,91,91,80,105,107,97,103,104,106,162,99,82", + "endOffsets": "209,309,418,502,611,736,813,889,981,1075,1169,1263,1365,1459,1556,1662,1754,1846,1927,2033,2141,2239,2343,2448,2555,2718,2818,2901" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,37", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,214,314,423,507,616,741,818,894,986,1080,1174,1268,1370,1464,1561,1667,1759,1851,1932,2038,2146,2244,2348,2453,2560,2723,3349", + "endColumns": "108,99,108,83,108,124,76,75,91,93,93,93,101,93,96,105,91,91,80,105,107,97,103,104,106,162,99,82", + "endOffsets": "209,309,418,502,611,736,813,889,981,1075,1169,1263,1365,1459,1556,1662,1754,1846,1927,2033,2141,2239,2343,2448,2555,2718,2818,3427" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values-it/values-it.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/react-native-0.19.1.aar/4235edd25620896d6b8925991ca39618/res/values-it/values-it.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,109,181,260,331,392,448,507", + "endColumns": "53,71,78,70,60,55,58,73", + "endOffsets": "104,176,255,326,387,443,502,576" + }, + "to": { + "startLines": "29,30,31,32,33,34,35,36", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "2823,2877,2949,3028,3099,3160,3216,3275", + "endColumns": "53,71,78,70,60,55,58,73", + "endOffsets": "2872,2944,3023,3094,3155,3211,3270,3344" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-it/values-it.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "38", + "startColumns": "4", + "startOffsets": "3432", + "endColumns": "100", + "endOffsets": "3528" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-it/values-it.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,214,314,423,507,616,741,818,894,986,1080,1174,1268,1370,1464,1561,1667,1759,1851,1932,2038,2146,2244,2348,2453,2560,2723,2823", + "endColumns": "108,99,108,83,108,124,76,75,91,93,93,93,101,93,96,105,91,91,80,105,107,97,103,104,106,162,99,82", + "endOffsets": "209,309,418,502,611,736,813,889,981,1075,1169,1263,1365,1459,1556,1662,1754,1846,1927,2033,2141,2239,2343,2448,2555,2718,2818,2901" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,37", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,214,314,423,507,616,741,818,894,986,1080,1174,1268,1370,1464,1561,1667,1759,1851,1932,2038,2146,2244,2348,2453,2560,2723,3349", + "endColumns": "108,99,108,83,108,124,76,75,91,93,93,93,101,93,96,105,91,91,80,105,107,97,103,104,106,162,99,82", + "endOffsets": "209,309,418,502,611,736,813,889,981,1075,1169,1263,1365,1459,1556,1662,1754,1846,1927,2033,2141,2239,2343,2448,2555,2718,2818,3427" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values-iw.json b/android/build/intermediates/blame/res/release/multi-v2/values-iw.json new file mode 100644 index 000000000..b68176bd2 --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values-iw.json @@ -0,0 +1,68 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-iw/values-iw.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-iw/values-iw.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2832", + "endColumns": "100", + "endOffsets": "2928" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-iw/values-iw.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,209,308,416,500,600,714,792,870,961,1055,1151,1245,1346,1439,1534,1631,1722,1814,1895,1997,2101,2199,2302,2403,2503,2655,2751", + "endColumns": "103,98,107,83,99,113,77,77,90,93,95,93,100,92,94,96,90,91,80,101,103,97,102,100,99,151,95,80", + "endOffsets": "204,303,411,495,595,709,787,865,956,1050,1146,1240,1341,1434,1529,1626,1717,1809,1890,1992,2096,2194,2297,2398,2498,2650,2746,2827" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values-iw/values-iw.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-iw/values-iw.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2832", + "endColumns": "100", + "endOffsets": "2928" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-iw/values-iw.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,209,308,416,500,600,714,792,870,961,1055,1151,1245,1346,1439,1534,1631,1722,1814,1895,1997,2101,2199,2302,2403,2503,2655,2751", + "endColumns": "103,98,107,83,99,113,77,77,90,93,95,93,100,92,94,96,90,91,80,101,103,97,102,100,99,151,95,80", + "endOffsets": "204,303,411,495,595,709,787,865,956,1050,1146,1240,1341,1434,1529,1626,1717,1809,1890,1992,2096,2194,2297,2398,2498,2650,2746,2827" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values-ja.json b/android/build/intermediates/blame/res/release/multi-v2/values-ja.json new file mode 100644 index 000000000..30e452c19 --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values-ja.json @@ -0,0 +1,116 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values-ja/values-ja.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-ja/values-ja.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "38", + "startColumns": "4", + "startOffsets": "3287", + "endColumns": "100", + "endOffsets": "3383" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-ja/values-ja.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,202,295,400,482,580,688,765,841,932,1025,1121,1215,1316,1409,1504,1598,1689,1780,1858,1960,2059,2154,2257,2352,2448,2596,2693", + "endColumns": "96,92,104,81,97,107,76,75,90,92,95,93,100,92,94,93,90,90,77,101,98,94,102,94,95,147,96,77", + "endOffsets": "197,290,395,477,575,683,760,836,927,1020,1116,1210,1311,1404,1499,1593,1684,1775,1853,1955,2054,2149,2252,2347,2443,2591,2688,2766" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,37", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,202,295,400,482,580,688,765,841,932,1025,1121,1215,1316,1409,1504,1598,1689,1780,1858,1960,2059,2154,2257,2352,2448,2596,3209", + "endColumns": "96,92,104,81,97,107,76,75,90,92,95,93,100,92,94,93,90,90,77,101,98,94,102,94,95,147,96,77", + "endOffsets": "197,290,395,477,575,683,760,836,927,1020,1116,1210,1311,1404,1499,1593,1684,1775,1853,1955,2054,2149,2252,2347,2443,2591,2688,3282" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/react-native-0.19.1.aar/4235edd25620896d6b8925991ca39618/res/values-ja/values-ja.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,109,170,249,320,382,438,497", + "endColumns": "53,60,78,70,61,55,58,73", + "endOffsets": "104,165,244,315,377,433,492,566" + }, + "to": { + "startLines": "29,30,31,32,33,34,35,36", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "2693,2747,2808,2887,2958,3020,3076,3135", + "endColumns": "53,60,78,70,61,55,58,73", + "endOffsets": "2742,2803,2882,2953,3015,3071,3130,3204" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ja/values-ja.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-ja/values-ja.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "38", + "startColumns": "4", + "startOffsets": "3287", + "endColumns": "100", + "endOffsets": "3383" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-ja/values-ja.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,202,295,400,482,580,688,765,841,932,1025,1121,1215,1316,1409,1504,1598,1689,1780,1858,1960,2059,2154,2257,2352,2448,2596,2693", + "endColumns": "96,92,104,81,97,107,76,75,90,92,95,93,100,92,94,93,90,90,77,101,98,94,102,94,95,147,96,77", + "endOffsets": "197,290,395,477,575,683,760,836,927,1020,1116,1210,1311,1404,1499,1593,1684,1775,1853,1955,2054,2149,2252,2347,2443,2591,2688,2766" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,37", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,202,295,400,482,580,688,765,841,932,1025,1121,1215,1316,1409,1504,1598,1689,1780,1858,1960,2059,2154,2257,2352,2448,2596,3209", + "endColumns": "96,92,104,81,97,107,76,75,90,92,95,93,100,92,94,93,90,90,77,101,98,94,102,94,95,147,96,77", + "endOffsets": "197,290,395,477,575,683,760,836,927,1020,1116,1210,1311,1404,1499,1593,1684,1775,1853,1955,2054,2149,2252,2347,2443,2591,2688,3282" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/react-native-0.19.1.aar/4235edd25620896d6b8925991ca39618/res/values-ja/values-ja.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,109,170,249,320,382,438,497", + "endColumns": "53,60,78,70,61,55,58,73", + "endOffsets": "104,165,244,315,377,433,492,566" + }, + "to": { + "startLines": "29,30,31,32,33,34,35,36", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "2693,2747,2808,2887,2958,3020,3076,3135", + "endColumns": "53,60,78,70,61,55,58,73", + "endOffsets": "2742,2803,2882,2953,3015,3071,3130,3204" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values-ka.json b/android/build/intermediates/blame/res/release/multi-v2/values-ka.json new file mode 100644 index 000000000..4debde193 --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values-ka.json @@ -0,0 +1,68 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ka/values-ka.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-ka/values-ka.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,214,318,429,517,622,735,819,901,992,1085,1180,1276,1377,1470,1565,1659,1750,1841,1924,2037,2144,2242,2355,2459,2563,2720,2818", + "endColumns": "108,103,110,87,104,112,83,81,90,92,94,95,100,92,94,93,90,90,82,112,106,97,112,103,103,156,97,80", + "endOffsets": "209,313,424,512,617,730,814,896,987,1080,1175,1271,1372,1465,1560,1654,1745,1836,1919,2032,2139,2237,2350,2454,2558,2715,2813,2894" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-ka/values-ka.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2899", + "endColumns": "100", + "endOffsets": "2995" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values-ka/values-ka.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-ka/values-ka.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,214,318,429,517,622,735,819,901,992,1085,1180,1276,1377,1470,1565,1659,1750,1841,1924,2037,2144,2242,2355,2459,2563,2720,2818", + "endColumns": "108,103,110,87,104,112,83,81,90,92,94,95,100,92,94,93,90,90,82,112,106,97,112,103,103,156,97,80", + "endOffsets": "209,313,424,512,617,730,814,896,987,1080,1175,1271,1372,1465,1560,1654,1745,1836,1919,2032,2139,2237,2350,2454,2558,2715,2813,2894" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-ka/values-ka.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2899", + "endColumns": "100", + "endOffsets": "2995" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values-kk.json b/android/build/intermediates/blame/res/release/multi-v2/values-kk.json new file mode 100644 index 000000000..8b1b4ddce --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values-kk.json @@ -0,0 +1,68 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values-kk/values-kk.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-kk/values-kk.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2893", + "endColumns": "100", + "endOffsets": "2989" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-kk/values-kk.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,217,320,430,515,621,740,821,901,992,1085,1181,1275,1376,1469,1564,1661,1752,1844,1925,2028,2133,2231,2338,2447,2547,2713,2812", + "endColumns": "111,102,109,84,105,118,80,79,90,92,95,93,100,92,94,96,90,91,80,102,104,97,106,108,99,165,98,80", + "endOffsets": "212,315,425,510,616,735,816,896,987,1080,1176,1270,1371,1464,1559,1656,1747,1839,1920,2023,2128,2226,2333,2442,2542,2708,2807,2888" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-kk/values-kk.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-kk/values-kk.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2893", + "endColumns": "100", + "endOffsets": "2989" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-kk/values-kk.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,217,320,430,515,621,740,821,901,992,1085,1181,1275,1376,1469,1564,1661,1752,1844,1925,2028,2133,2231,2338,2447,2547,2713,2812", + "endColumns": "111,102,109,84,105,118,80,79,90,92,95,93,100,92,94,96,90,91,80,102,104,97,106,108,99,165,98,80", + "endOffsets": "212,315,425,510,616,735,816,896,987,1080,1176,1270,1371,1464,1559,1656,1747,1839,1920,2023,2128,2226,2333,2442,2542,2708,2807,2888" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values-km.json b/android/build/intermediates/blame/res/release/multi-v2/values-km.json new file mode 100644 index 000000000..e23ceb21f --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values-km.json @@ -0,0 +1,68 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-km/values-km.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-km/values-km.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,208,308,420,507,611,729,806,883,974,1067,1163,1257,1358,1451,1546,1640,1731,1822,1905,2009,2114,2214,2324,2431,2539,2701,2799", + "endColumns": "102,99,111,86,103,117,76,76,90,92,95,93,100,92,94,93,90,90,82,103,104,99,109,106,107,161,97,82", + "endOffsets": "203,303,415,502,606,724,801,878,969,1062,1158,1252,1353,1446,1541,1635,1726,1817,1900,2004,2109,2209,2319,2426,2534,2696,2794,2877" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-km/values-km.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2882", + "endColumns": "100", + "endOffsets": "2978" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values-km/values-km.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-km/values-km.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,208,308,420,507,611,729,806,883,974,1067,1163,1257,1358,1451,1546,1640,1731,1822,1905,2009,2114,2214,2324,2431,2539,2701,2799", + "endColumns": "102,99,111,86,103,117,76,76,90,92,95,93,100,92,94,93,90,90,82,103,104,99,109,106,107,161,97,82", + "endOffsets": "203,303,415,502,606,724,801,878,969,1062,1158,1252,1353,1446,1541,1635,1726,1817,1900,2004,2109,2209,2319,2426,2534,2696,2794,2877" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-km/values-km.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2882", + "endColumns": "100", + "endOffsets": "2978" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values-kn.json b/android/build/intermediates/blame/res/release/multi-v2/values-kn.json new file mode 100644 index 000000000..af383f8fa --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values-kn.json @@ -0,0 +1,68 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values-kn/values-kn.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-kn/values-kn.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,223,335,448,536,643,770,847,924,1015,1108,1204,1298,1399,1492,1587,1681,1772,1863,1945,2061,2172,2271,2384,2488,2602,2766,2866", + "endColumns": "117,111,112,87,106,126,76,76,90,92,95,93,100,92,94,93,90,90,81,115,110,98,112,103,113,163,99,81", + "endOffsets": "218,330,443,531,638,765,842,919,1010,1103,1199,1293,1394,1487,1582,1676,1767,1858,1940,2056,2167,2266,2379,2483,2597,2761,2861,2943" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-kn/values-kn.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2948", + "endColumns": "100", + "endOffsets": "3044" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-kn/values-kn.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-kn/values-kn.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,223,335,448,536,643,770,847,924,1015,1108,1204,1298,1399,1492,1587,1681,1772,1863,1945,2061,2172,2271,2384,2488,2602,2766,2866", + "endColumns": "117,111,112,87,106,126,76,76,90,92,95,93,100,92,94,93,90,90,81,115,110,98,112,103,113,163,99,81", + "endOffsets": "218,330,443,531,638,765,842,919,1010,1103,1199,1293,1394,1487,1582,1676,1767,1858,1940,2056,2167,2266,2379,2483,2597,2761,2861,2943" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-kn/values-kn.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2948", + "endColumns": "100", + "endOffsets": "3044" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values-ko.json b/android/build/intermediates/blame/res/release/multi-v2/values-ko.json new file mode 100644 index 000000000..a2ac419a8 --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values-ko.json @@ -0,0 +1,116 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values-ko/values-ko.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/react-native-0.19.1.aar/4235edd25620896d6b8925991ca39618/res/values-ko/values-ko.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,109,170,249,320,380,436,495", + "endColumns": "53,60,78,70,59,55,58,73", + "endOffsets": "104,165,244,315,375,431,490,564" + }, + "to": { + "startLines": "29,30,31,32,33,34,35,36", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "2678,2732,2793,2872,2943,3003,3059,3118", + "endColumns": "53,60,78,70,59,55,58,73", + "endOffsets": "2727,2788,2867,2938,2998,3054,3113,3187" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-ko/values-ko.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "38", + "startColumns": "4", + "startOffsets": "3270", + "endColumns": "100", + "endOffsets": "3366" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-ko/values-ko.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,200,294,396,478,576,682,761,837,928,1021,1113,1204,1305,1398,1493,1587,1678,1769,1849,1947,2042,2137,2237,2333,2432,2584,2678", + "endColumns": "94,93,101,81,97,105,78,75,90,92,91,90,100,92,94,93,90,90,79,97,94,94,99,95,98,151,93,77", + "endOffsets": "195,289,391,473,571,677,756,832,923,1016,1108,1199,1300,1393,1488,1582,1673,1764,1844,1942,2037,2132,2232,2328,2427,2579,2673,2751" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,37", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,200,294,396,478,576,682,761,837,928,1021,1113,1204,1305,1398,1493,1587,1678,1769,1849,1947,2042,2137,2237,2333,2432,2584,3192", + "endColumns": "94,93,101,81,97,105,78,75,90,92,91,90,100,92,94,93,90,90,79,97,94,94,99,95,98,151,93,77", + "endOffsets": "195,289,391,473,571,677,756,832,923,1016,1108,1199,1300,1393,1488,1582,1673,1764,1844,1942,2037,2132,2232,2328,2427,2579,2673,3265" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ko/values-ko.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/react-native-0.19.1.aar/4235edd25620896d6b8925991ca39618/res/values-ko/values-ko.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,109,170,249,320,380,436,495", + "endColumns": "53,60,78,70,59,55,58,73", + "endOffsets": "104,165,244,315,375,431,490,564" + }, + "to": { + "startLines": "29,30,31,32,33,34,35,36", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "2678,2732,2793,2872,2943,3003,3059,3118", + "endColumns": "53,60,78,70,59,55,58,73", + "endOffsets": "2727,2788,2867,2938,2998,3054,3113,3187" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-ko/values-ko.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "38", + "startColumns": "4", + "startOffsets": "3270", + "endColumns": "100", + "endOffsets": "3366" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-ko/values-ko.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,200,294,396,478,576,682,761,837,928,1021,1113,1204,1305,1398,1493,1587,1678,1769,1849,1947,2042,2137,2237,2333,2432,2584,2678", + "endColumns": "94,93,101,81,97,105,78,75,90,92,91,90,100,92,94,93,90,90,79,97,94,94,99,95,98,151,93,77", + "endOffsets": "195,289,391,473,571,677,756,832,923,1016,1108,1199,1300,1393,1488,1582,1673,1764,1844,1942,2037,2132,2232,2328,2427,2579,2673,2751" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,37", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,200,294,396,478,576,682,761,837,928,1021,1113,1204,1305,1398,1493,1587,1678,1769,1849,1947,2042,2137,2237,2333,2432,2584,3192", + "endColumns": "94,93,101,81,97,105,78,75,90,92,91,90,100,92,94,93,90,90,79,97,94,94,99,95,98,151,93,77", + "endOffsets": "195,289,391,473,571,677,756,832,923,1016,1108,1199,1300,1393,1488,1582,1673,1764,1844,1942,2037,2132,2232,2328,2427,2579,2673,3265" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values-ky.json b/android/build/intermediates/blame/res/release/multi-v2/values-ky.json new file mode 100644 index 000000000..ecbc89796 --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values-ky.json @@ -0,0 +1,68 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ky/values-ky.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-ky/values-ky.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,209,304,423,507,614,731,809,888,979,1072,1168,1262,1363,1456,1551,1646,1737,1828,1909,2019,2126,2224,2330,2437,2538,2699,2802", + "endColumns": "103,94,118,83,106,116,77,78,90,92,95,93,100,92,94,94,90,90,80,109,106,97,105,106,100,160,102,80", + "endOffsets": "204,299,418,502,609,726,804,883,974,1067,1163,1257,1358,1451,1546,1641,1732,1823,1904,2014,2121,2219,2325,2432,2533,2694,2797,2878" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-ky/values-ky.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2883", + "endColumns": "100", + "endOffsets": "2979" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values-ky/values-ky.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-ky/values-ky.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,209,304,423,507,614,731,809,888,979,1072,1168,1262,1363,1456,1551,1646,1737,1828,1909,2019,2126,2224,2330,2437,2538,2699,2802", + "endColumns": "103,94,118,83,106,116,77,78,90,92,95,93,100,92,94,94,90,90,80,109,106,97,105,106,100,160,102,80", + "endOffsets": "204,299,418,502,609,726,804,883,974,1067,1163,1257,1358,1451,1546,1641,1732,1823,1904,2014,2121,2219,2325,2432,2533,2694,2797,2878" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-ky/values-ky.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2883", + "endColumns": "100", + "endOffsets": "2979" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values-land.json b/android/build/intermediates/blame/res/release/multi-v2/values-land.json new file mode 100644 index 000000000..ea6c46bc4 --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values-land.json @@ -0,0 +1,72 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-land/values-land.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/values-land/values-land.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endLines": "5", + "endColumns": "10", + "endOffsets": "222" + }, + "to": { + "startLines": "5", + "startColumns": "4", + "startOffsets": "264", + "endLines": "8", + "endColumns": "10", + "endOffsets": "431" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-land/values-land.xml", + "from": { + "startLines": "2,3,4", + "startColumns": "4,4,4", + "startOffsets": "55,125,196", + "endColumns": "69,70,67", + "endOffsets": "120,191,259" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values-land/values-land.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/values-land/values-land.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endLines": "5", + "endColumns": "10", + "endOffsets": "222" + }, + "to": { + "startLines": "5", + "startColumns": "4", + "startOffsets": "264", + "endLines": "8", + "endColumns": "10", + "endOffsets": "431" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-land/values-land.xml", + "from": { + "startLines": "2,3,4", + "startColumns": "4,4,4", + "startOffsets": "55,125,196", + "endColumns": "69,70,67", + "endOffsets": "120,191,259" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values-large-v4.json b/android/build/intermediates/blame/res/release/multi-v2/values-large-v4.json new file mode 100644 index 000000000..5d313e0f0 --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values-large-v4.json @@ -0,0 +1,68 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values-large-v4/values-large-v4.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/values-large-v4/values-large-v4.xml", + "from": { + "startLines": "2,3", + "startColumns": "4,4", + "startOffsets": "55,177", + "endColumns": "121,133", + "endOffsets": "172,306" + }, + "to": { + "startLines": "11,12", + "startColumns": "4,4", + "startOffsets": "752,874", + "endColumns": "121,133", + "endOffsets": "869,1003" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-large-v4/values-large-v4.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10", + "startColumns": "4,4,4,4,4,4,4,4,4", + "startOffsets": "55,114,185,256,326,396,464,532,636", + "endColumns": "58,70,70,69,69,67,67,103,115", + "endOffsets": "109,180,251,321,391,459,527,631,747" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-large-v4/values-large-v4.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/values-large-v4/values-large-v4.xml", + "from": { + "startLines": "2,3", + "startColumns": "4,4", + "startOffsets": "55,177", + "endColumns": "121,133", + "endOffsets": "172,306" + }, + "to": { + "startLines": "11,12", + "startColumns": "4,4", + "startOffsets": "752,874", + "endColumns": "121,133", + "endOffsets": "869,1003" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-large-v4/values-large-v4.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10", + "startColumns": "4,4,4,4,4,4,4,4,4", + "startOffsets": "55,114,185,256,326,396,464,532,636", + "endColumns": "58,70,70,69,69,67,67,103,115", + "endOffsets": "109,180,251,321,391,459,527,631,747" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values-ldltr-v21.json b/android/build/intermediates/blame/res/release/multi-v2/values-ldltr-v21.json new file mode 100644 index 000000000..072a80fb8 --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values-ldltr-v21.json @@ -0,0 +1,34 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values-ldltr-v21/values-ldltr-v21.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-ldltr-v21/values-ldltr-v21.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "112", + "endOffsets": "163" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ldltr-v21/values-ldltr-v21.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-ldltr-v21/values-ldltr-v21.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "112", + "endOffsets": "163" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values-lo.json b/android/build/intermediates/blame/res/release/multi-v2/values-lo.json new file mode 100644 index 000000000..02b0dd02c --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values-lo.json @@ -0,0 +1,68 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-lo/values-lo.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-lo/values-lo.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,208,305,412,497,602,714,791,869,960,1053,1149,1243,1344,1437,1532,1626,1717,1808,1888,1995,2092,2190,2295,2398,2502,2659,2755", + "endColumns": "102,96,106,84,104,111,76,77,90,92,95,93,100,92,94,93,90,90,79,106,96,97,104,102,103,156,95,80", + "endOffsets": "203,300,407,492,597,709,786,864,955,1048,1144,1238,1339,1432,1527,1621,1712,1803,1883,1990,2087,2185,2290,2393,2497,2654,2750,2831" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-lo/values-lo.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2836", + "endColumns": "100", + "endOffsets": "2932" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values-lo/values-lo.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-lo/values-lo.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,208,305,412,497,602,714,791,869,960,1053,1149,1243,1344,1437,1532,1626,1717,1808,1888,1995,2092,2190,2295,2398,2502,2659,2755", + "endColumns": "102,96,106,84,104,111,76,77,90,92,95,93,100,92,94,93,90,90,79,106,96,97,104,102,103,156,95,80", + "endOffsets": "203,300,407,492,597,709,786,864,955,1048,1144,1238,1339,1432,1527,1621,1712,1803,1883,1990,2087,2185,2290,2393,2497,2654,2750,2831" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-lo/values-lo.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2836", + "endColumns": "100", + "endOffsets": "2932" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values-lt.json b/android/build/intermediates/blame/res/release/multi-v2/values-lt.json new file mode 100644 index 000000000..765ad38b2 --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values-lt.json @@ -0,0 +1,68 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values-lt/values-lt.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-lt/values-lt.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2978", + "endColumns": "100", + "endOffsets": "3074" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-lt/values-lt.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,221,322,435,522,631,752,834,915,1009,1105,1203,1299,1403,1499,1597,1700,1794,1888,1973,2082,2191,2291,2401,2505,2618,2794,2895", + "endColumns": "115,100,112,86,108,120,81,80,93,95,97,95,103,95,97,102,93,93,84,108,108,99,109,103,112,175,100,82", + "endOffsets": "216,317,430,517,626,747,829,910,1004,1100,1198,1294,1398,1494,1592,1695,1789,1883,1968,2077,2186,2286,2396,2500,2613,2789,2890,2973" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-lt/values-lt.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-lt/values-lt.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2978", + "endColumns": "100", + "endOffsets": "3074" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-lt/values-lt.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,221,322,435,522,631,752,834,915,1009,1105,1203,1299,1403,1499,1597,1700,1794,1888,1973,2082,2191,2291,2401,2505,2618,2794,2895", + "endColumns": "115,100,112,86,108,120,81,80,93,95,97,95,103,95,97,102,93,93,84,108,108,99,109,103,112,175,100,82", + "endOffsets": "216,317,430,517,626,747,829,910,1004,1100,1198,1294,1398,1494,1592,1695,1789,1883,1968,2077,2186,2286,2396,2500,2613,2789,2890,2973" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values-lv.json b/android/build/intermediates/blame/res/release/multi-v2/values-lv.json new file mode 100644 index 000000000..048f910e1 --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values-lv.json @@ -0,0 +1,68 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-lv/values-lv.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-lv/values-lv.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "3076", + "endColumns": "100", + "endOffsets": "3172" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-lv/values-lv.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,225,333,442,528,632,754,836,918,1028,1136,1243,1352,1464,1567,1679,1786,1891,1991,2076,2185,2297,2396,2507,2616,2721,2895,2994", + "endColumns": "119,107,108,85,103,121,81,81,109,107,106,108,111,102,111,106,104,99,84,108,111,98,110,108,104,173,98,81", + "endOffsets": "220,328,437,523,627,749,831,913,1023,1131,1238,1347,1459,1562,1674,1781,1886,1986,2071,2180,2292,2391,2502,2611,2716,2890,2989,3071" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values-lv/values-lv.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-lv/values-lv.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "3076", + "endColumns": "100", + "endOffsets": "3172" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-lv/values-lv.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,225,333,442,528,632,754,836,918,1028,1136,1243,1352,1464,1567,1679,1786,1891,1991,2076,2185,2297,2396,2507,2616,2721,2895,2994", + "endColumns": "119,107,108,85,103,121,81,81,109,107,106,108,111,102,111,106,104,99,84,108,111,98,110,108,104,173,98,81", + "endOffsets": "220,328,437,523,627,749,831,913,1023,1131,1238,1347,1459,1562,1674,1781,1886,1986,2071,2180,2292,2391,2502,2611,2716,2890,2989,3071" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values-mk.json b/android/build/intermediates/blame/res/release/multi-v2/values-mk.json new file mode 100644 index 000000000..29a9174d8 --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values-mk.json @@ -0,0 +1,68 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-mk/values-mk.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-mk/values-mk.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2945", + "endColumns": "100", + "endOffsets": "3041" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-mk/values-mk.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,213,317,425,511,616,735,818,900,997,1096,1193,1293,1400,1499,1600,1696,1793,1884,1971,2077,2184,2285,2392,2503,2607,2763,2861", + "endColumns": "107,103,107,85,104,118,82,81,96,98,96,99,106,98,100,95,96,90,86,105,106,100,106,110,103,155,97,83", + "endOffsets": "208,312,420,506,611,730,813,895,992,1091,1188,1288,1395,1494,1595,1691,1788,1879,1966,2072,2179,2280,2387,2498,2602,2758,2856,2940" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values-mk/values-mk.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-mk/values-mk.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2945", + "endColumns": "100", + "endOffsets": "3041" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-mk/values-mk.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,213,317,425,511,616,735,818,900,997,1096,1193,1293,1400,1499,1600,1696,1793,1884,1971,2077,2184,2285,2392,2503,2607,2763,2861", + "endColumns": "107,103,107,85,104,118,82,81,96,98,96,99,106,98,100,95,96,90,86,105,106,100,106,110,103,155,97,83", + "endOffsets": "208,312,420,506,611,730,813,895,992,1091,1188,1288,1395,1494,1595,1691,1788,1879,1966,2072,2179,2280,2387,2498,2602,2758,2856,2940" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values-ml.json b/android/build/intermediates/blame/res/release/multi-v2/values-ml.json new file mode 100644 index 000000000..eeb3611cc --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values-ml.json @@ -0,0 +1,68 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values-ml/values-ml.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-ml/values-ml.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,224,342,457,550,655,787,864,940,1031,1124,1226,1320,1421,1515,1610,1709,1800,1891,1973,2084,2190,2288,2402,2502,2613,2772,2873", + "endColumns": "118,117,114,92,104,131,76,75,90,92,101,93,100,93,94,98,90,90,81,110,105,97,113,99,110,158,100,81", + "endOffsets": "219,337,452,545,650,782,859,935,1026,1119,1221,1315,1416,1510,1605,1704,1795,1886,1968,2079,2185,2283,2397,2497,2608,2767,2868,2950" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-ml/values-ml.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2955", + "endColumns": "100", + "endOffsets": "3051" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ml/values-ml.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-ml/values-ml.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,224,342,457,550,655,787,864,940,1031,1124,1226,1320,1421,1515,1610,1709,1800,1891,1973,2084,2190,2288,2402,2502,2613,2772,2873", + "endColumns": "118,117,114,92,104,131,76,75,90,92,101,93,100,93,94,98,90,90,81,110,105,97,113,99,110,158,100,81", + "endOffsets": "219,337,452,545,650,782,859,935,1026,1119,1221,1315,1416,1510,1605,1704,1795,1886,1968,2079,2185,2283,2397,2497,2608,2767,2868,2950" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-ml/values-ml.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2955", + "endColumns": "100", + "endOffsets": "3051" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values-mn.json b/android/build/intermediates/blame/res/release/multi-v2/values-mn.json new file mode 100644 index 000000000..ecd2600bd --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values-mn.json @@ -0,0 +1,68 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values-mn/values-mn.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-mn/values-mn.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,218,318,431,518,624,736,818,900,991,1084,1180,1276,1374,1467,1562,1654,1745,1835,1917,2026,2130,2227,2335,2436,2539,2698,2795", + "endColumns": "112,99,112,86,105,111,81,81,90,92,95,95,97,92,94,91,90,89,81,108,103,96,107,100,102,158,96,80", + "endOffsets": "213,313,426,513,619,731,813,895,986,1079,1175,1271,1369,1462,1557,1649,1740,1830,1912,2021,2125,2222,2330,2431,2534,2693,2790,2871" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-mn/values-mn.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2876", + "endColumns": "100", + "endOffsets": "2972" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-mn/values-mn.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-mn/values-mn.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,218,318,431,518,624,736,818,900,991,1084,1180,1276,1374,1467,1562,1654,1745,1835,1917,2026,2130,2227,2335,2436,2539,2698,2795", + "endColumns": "112,99,112,86,105,111,81,81,90,92,95,95,97,92,94,91,90,89,81,108,103,96,107,100,102,158,96,80", + "endOffsets": "213,313,426,513,619,731,813,895,986,1079,1175,1271,1369,1462,1557,1649,1740,1830,1912,2021,2125,2222,2330,2431,2534,2693,2790,2871" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-mn/values-mn.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2876", + "endColumns": "100", + "endOffsets": "2972" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values-mr.json b/android/build/intermediates/blame/res/release/multi-v2/values-mr.json new file mode 100644 index 000000000..ae96a6657 --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values-mr.json @@ -0,0 +1,68 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-mr/values-mr.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-mr/values-mr.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,216,322,429,519,620,735,812,890,981,1074,1168,1265,1366,1459,1554,1651,1742,1833,1913,2025,2127,2223,2332,2433,2545,2702,2807", + "endColumns": "110,105,106,89,100,114,76,77,90,92,93,96,100,92,94,96,90,90,79,111,101,95,108,100,111,156,104,79", + "endOffsets": "211,317,424,514,615,730,807,885,976,1069,1163,1260,1361,1454,1549,1646,1737,1828,1908,2020,2122,2218,2327,2428,2540,2697,2802,2882" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-mr/values-mr.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2887", + "endColumns": "100", + "endOffsets": "2983" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values-mr/values-mr.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-mr/values-mr.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,216,322,429,519,620,735,812,890,981,1074,1168,1265,1366,1459,1554,1651,1742,1833,1913,2025,2127,2223,2332,2433,2545,2702,2807", + "endColumns": "110,105,106,89,100,114,76,77,90,92,93,96,100,92,94,96,90,90,79,111,101,95,108,100,111,156,104,79", + "endOffsets": "211,317,424,514,615,730,807,885,976,1069,1163,1260,1361,1454,1549,1646,1737,1828,1908,2020,2122,2218,2327,2428,2540,2697,2802,2882" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-mr/values-mr.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2887", + "endColumns": "100", + "endOffsets": "2983" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values-ms.json b/android/build/intermediates/blame/res/release/multi-v2/values-ms.json new file mode 100644 index 000000000..3994ac19c --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values-ms.json @@ -0,0 +1,68 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ms/values-ms.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-ms/values-ms.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,216,321,429,516,620,731,809,888,979,1072,1167,1261,1360,1453,1548,1642,1733,1824,1904,2016,2125,2222,2331,2434,2541,2700,2801", + "endColumns": "110,104,107,86,103,110,77,78,90,92,94,93,98,92,94,93,90,90,79,111,108,96,108,102,106,158,100,79", + "endOffsets": "211,316,424,511,615,726,804,883,974,1067,1162,1256,1355,1448,1543,1637,1728,1819,1899,2011,2120,2217,2326,2429,2536,2695,2796,2876" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-ms/values-ms.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2881", + "endColumns": "100", + "endOffsets": "2977" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values-ms/values-ms.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-ms/values-ms.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,216,321,429,516,620,731,809,888,979,1072,1167,1261,1360,1453,1548,1642,1733,1824,1904,2016,2125,2222,2331,2434,2541,2700,2801", + "endColumns": "110,104,107,86,103,110,77,78,90,92,94,93,98,92,94,93,90,90,79,111,108,96,108,102,106,158,100,79", + "endOffsets": "211,316,424,511,615,726,804,883,974,1067,1162,1256,1355,1448,1543,1637,1728,1819,1899,2011,2120,2217,2326,2429,2536,2695,2796,2876" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-ms/values-ms.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2881", + "endColumns": "100", + "endOffsets": "2977" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values-my.json b/android/build/intermediates/blame/res/release/multi-v2/values-my.json new file mode 100644 index 000000000..05f15b8a0 --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values-my.json @@ -0,0 +1,68 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-my/values-my.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-my/values-my.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2979", + "endColumns": "100", + "endOffsets": "3075" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-my/values-my.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,214,319,436,529,641,769,847,926,1017,1110,1206,1300,1401,1494,1589,1683,1774,1865,1951,2074,2186,2288,2414,2525,2635,2795,2895", + "endColumns": "108,104,116,92,111,127,77,78,90,92,95,93,100,92,94,93,90,90,85,122,111,101,125,110,109,159,99,83", + "endOffsets": "209,314,431,524,636,764,842,921,1012,1105,1201,1295,1396,1489,1584,1678,1769,1860,1946,2069,2181,2283,2409,2520,2630,2790,2890,2974" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values-my/values-my.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-my/values-my.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2979", + "endColumns": "100", + "endOffsets": "3075" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-my/values-my.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,214,319,436,529,641,769,847,926,1017,1110,1206,1300,1401,1494,1589,1683,1774,1865,1951,2074,2186,2288,2414,2525,2635,2795,2895", + "endColumns": "108,104,116,92,111,127,77,78,90,92,95,93,100,92,94,93,90,90,85,122,111,101,125,110,109,159,99,83", + "endOffsets": "209,314,431,524,636,764,842,921,1012,1105,1201,1295,1396,1489,1584,1678,1769,1860,1946,2069,2181,2283,2409,2520,2630,2790,2890,2974" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values-nb.json b/android/build/intermediates/blame/res/release/multi-v2/values-nb.json new file mode 100644 index 000000000..2951a37ce --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values-nb.json @@ -0,0 +1,116 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values-nb/values-nb.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-nb/values-nb.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "38", + "startColumns": "4", + "startOffsets": "3355", + "endColumns": "100", + "endOffsets": "3451" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-nb/values-nb.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,213,308,422,508,608,721,797,873,964,1057,1153,1247,1348,1441,1536,1634,1725,1816,1896,1999,2098,2194,2298,2396,2497,2650,2747", + "endColumns": "107,94,113,85,99,112,75,75,90,92,95,93,100,92,94,97,90,90,79,102,98,95,103,97,100,152,96,78", + "endOffsets": "208,303,417,503,603,716,792,868,959,1052,1148,1242,1343,1436,1531,1629,1720,1811,1891,1994,2093,2189,2293,2391,2492,2645,2742,2821" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,37", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,213,308,422,508,608,721,797,873,964,1057,1153,1247,1348,1441,1536,1634,1725,1816,1896,1999,2098,2194,2298,2396,2497,2650,3276", + "endColumns": "107,94,113,85,99,112,75,75,90,92,95,93,100,92,94,97,90,90,79,102,98,95,103,97,100,152,96,78", + "endOffsets": "208,303,417,503,603,716,792,868,959,1052,1148,1242,1343,1436,1531,1629,1720,1811,1891,1994,2093,2189,2293,2391,2492,2645,2742,3350" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/react-native-0.19.1.aar/4235edd25620896d6b8925991ca39618/res/values-nb/values-nb.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,109,181,260,331,395,451,510", + "endColumns": "53,71,78,70,63,55,58,73", + "endOffsets": "104,176,255,326,390,446,505,579" + }, + "to": { + "startLines": "29,30,31,32,33,34,35,36", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "2747,2801,2873,2952,3023,3087,3143,3202", + "endColumns": "53,71,78,70,63,55,58,73", + "endOffsets": "2796,2868,2947,3018,3082,3138,3197,3271" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-nb/values-nb.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-nb/values-nb.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "38", + "startColumns": "4", + "startOffsets": "3355", + "endColumns": "100", + "endOffsets": "3451" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-nb/values-nb.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,213,308,422,508,608,721,797,873,964,1057,1153,1247,1348,1441,1536,1634,1725,1816,1896,1999,2098,2194,2298,2396,2497,2650,2747", + "endColumns": "107,94,113,85,99,112,75,75,90,92,95,93,100,92,94,97,90,90,79,102,98,95,103,97,100,152,96,78", + "endOffsets": "208,303,417,503,603,716,792,868,959,1052,1148,1242,1343,1436,1531,1629,1720,1811,1891,1994,2093,2189,2293,2391,2492,2645,2742,2821" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,37", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,213,308,422,508,608,721,797,873,964,1057,1153,1247,1348,1441,1536,1634,1725,1816,1896,1999,2098,2194,2298,2396,2497,2650,3276", + "endColumns": "107,94,113,85,99,112,75,75,90,92,95,93,100,92,94,97,90,90,79,102,98,95,103,97,100,152,96,78", + "endOffsets": "208,303,417,503,603,716,792,868,959,1052,1148,1242,1343,1436,1531,1629,1720,1811,1891,1994,2093,2189,2293,2391,2492,2645,2742,3350" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/react-native-0.19.1.aar/4235edd25620896d6b8925991ca39618/res/values-nb/values-nb.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,109,181,260,331,395,451,510", + "endColumns": "53,71,78,70,63,55,58,73", + "endOffsets": "104,176,255,326,390,446,505,579" + }, + "to": { + "startLines": "29,30,31,32,33,34,35,36", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "2747,2801,2873,2952,3023,3087,3143,3202", + "endColumns": "53,71,78,70,63,55,58,73", + "endOffsets": "2796,2868,2947,3018,3082,3138,3197,3271" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values-ne.json b/android/build/intermediates/blame/res/release/multi-v2/values-ne.json new file mode 100644 index 000000000..abcfff55a --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values-ne.json @@ -0,0 +1,68 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values-ne/values-ne.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-ne/values-ne.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,210,314,422,513,620,747,841,931,1022,1115,1211,1305,1406,1499,1594,1688,1779,1870,1958,2068,2184,2287,2402,2504,2619,2790,2902", + "endColumns": "104,103,107,90,106,126,93,89,90,92,95,93,100,92,94,93,90,90,87,109,115,102,114,101,114,170,111,85", + "endOffsets": "205,309,417,508,615,742,836,926,1017,1110,1206,1300,1401,1494,1589,1683,1774,1865,1953,2063,2179,2282,2397,2499,2614,2785,2897,2983" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-ne/values-ne.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2988", + "endColumns": "100", + "endOffsets": "3084" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ne/values-ne.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-ne/values-ne.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,210,314,422,513,620,747,841,931,1022,1115,1211,1305,1406,1499,1594,1688,1779,1870,1958,2068,2184,2287,2402,2504,2619,2790,2902", + "endColumns": "104,103,107,90,106,126,93,89,90,92,95,93,100,92,94,93,90,90,87,109,115,102,114,101,114,170,111,85", + "endOffsets": "205,309,417,508,615,742,836,926,1017,1110,1206,1300,1401,1494,1589,1683,1774,1865,1953,2063,2179,2282,2397,2499,2614,2785,2897,2983" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-ne/values-ne.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2988", + "endColumns": "100", + "endOffsets": "3084" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values-night-v8.json b/android/build/intermediates/blame/res/release/multi-v2/values-night-v8.json new file mode 100644 index 000000000..5ca753879 --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values-night-v8.json @@ -0,0 +1,34 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-night-v8/values-night-v8.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-night-v8/values-night-v8.xml", + "from": { + "startLines": "2,3,4,5,6,7,8", + "startColumns": "4,4,4,4,4,4,4", + "startOffsets": "55,125,209,293,389,491,593", + "endColumns": "69,83,83,95,101,101,93", + "endOffsets": "120,204,288,384,486,588,682" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values-night-v8/values-night-v8.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-night-v8/values-night-v8.xml", + "from": { + "startLines": "2,3,4,5,6,7,8", + "startColumns": "4,4,4,4,4,4,4", + "startOffsets": "55,125,209,293,389,491,593", + "endColumns": "69,83,83,95,101,101,93", + "endOffsets": "120,204,288,384,486,588,682" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values-nl.json b/android/build/intermediates/blame/res/release/multi-v2/values-nl.json new file mode 100644 index 000000000..bc1786ae5 --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values-nl.json @@ -0,0 +1,116 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values-nl/values-nl.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-nl/values-nl.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "38", + "startColumns": "4", + "startOffsets": "3454", + "endColumns": "100", + "endOffsets": "3550" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-nl/values-nl.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,223,328,435,521,629,749,826,903,995,1089,1190,1284,1385,1479,1575,1670,1762,1854,1936,2047,2151,2250,2365,2478,2581,2736,2839", + "endColumns": "117,104,106,85,107,119,76,76,91,93,100,93,100,93,95,94,91,91,81,110,103,98,114,112,102,154,102,81", + "endOffsets": "218,323,430,516,624,744,821,898,990,1084,1185,1279,1380,1474,1570,1665,1757,1849,1931,2042,2146,2245,2360,2473,2576,2731,2834,2916" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,37", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,223,328,435,521,629,749,826,903,995,1089,1190,1284,1385,1479,1575,1670,1762,1854,1936,2047,2151,2250,2365,2478,2581,2736,3372", + "endColumns": "117,104,106,85,107,119,76,76,91,93,100,93,100,93,95,94,91,91,81,110,103,98,114,112,102,154,102,81", + "endOffsets": "218,323,430,516,624,744,821,898,990,1084,1185,1279,1380,1474,1570,1665,1757,1849,1931,2042,2146,2245,2360,2473,2576,2731,2834,3449" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/react-native-0.19.1.aar/4235edd25620896d6b8925991ca39618/res/values-nl/values-nl.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,109,184,263,334,399,455,514", + "endColumns": "53,74,78,70,64,55,58,73", + "endOffsets": "104,179,258,329,394,450,509,583" + }, + "to": { + "startLines": "29,30,31,32,33,34,35,36", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "2839,2893,2968,3047,3118,3183,3239,3298", + "endColumns": "53,74,78,70,64,55,58,73", + "endOffsets": "2888,2963,3042,3113,3178,3234,3293,3367" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-nl/values-nl.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-nl/values-nl.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "38", + "startColumns": "4", + "startOffsets": "3454", + "endColumns": "100", + "endOffsets": "3550" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-nl/values-nl.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,223,328,435,521,629,749,826,903,995,1089,1190,1284,1385,1479,1575,1670,1762,1854,1936,2047,2151,2250,2365,2478,2581,2736,2839", + "endColumns": "117,104,106,85,107,119,76,76,91,93,100,93,100,93,95,94,91,91,81,110,103,98,114,112,102,154,102,81", + "endOffsets": "218,323,430,516,624,744,821,898,990,1084,1185,1279,1380,1474,1570,1665,1757,1849,1931,2042,2146,2245,2360,2473,2576,2731,2834,2916" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,37", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,223,328,435,521,629,749,826,903,995,1089,1190,1284,1385,1479,1575,1670,1762,1854,1936,2047,2151,2250,2365,2478,2581,2736,3372", + "endColumns": "117,104,106,85,107,119,76,76,91,93,100,93,100,93,95,94,91,91,81,110,103,98,114,112,102,154,102,81", + "endOffsets": "218,323,430,516,624,744,821,898,990,1084,1185,1279,1380,1474,1570,1665,1757,1849,1931,2042,2146,2245,2360,2473,2576,2731,2834,3449" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/react-native-0.19.1.aar/4235edd25620896d6b8925991ca39618/res/values-nl/values-nl.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,109,184,263,334,399,455,514", + "endColumns": "53,74,78,70,64,55,58,73", + "endOffsets": "104,179,258,329,394,450,509,583" + }, + "to": { + "startLines": "29,30,31,32,33,34,35,36", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "2839,2893,2968,3047,3118,3183,3239,3298", + "endColumns": "53,74,78,70,64,55,58,73", + "endOffsets": "2888,2963,3042,3113,3178,3234,3293,3367" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values-or.json b/android/build/intermediates/blame/res/release/multi-v2/values-or.json new file mode 100644 index 000000000..664f3fb72 --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values-or.json @@ -0,0 +1,68 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values-or/values-or.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-or/values-or.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,224,334,441,527,631,751,828,905,996,1089,1186,1281,1382,1475,1570,1666,1757,1847,1929,2039,2144,2250,2361,2464,2582,2745,2847", + "endColumns": "118,109,106,85,103,119,76,76,90,92,96,94,100,92,94,95,90,89,81,109,104,105,110,102,117,162,101,88", + "endOffsets": "219,329,436,522,626,746,823,900,991,1084,1181,1276,1377,1470,1565,1661,1752,1842,1924,2034,2139,2245,2356,2459,2577,2740,2842,2931" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-or/values-or.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2936", + "endColumns": "100", + "endOffsets": "3032" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-or/values-or.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-or/values-or.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,224,334,441,527,631,751,828,905,996,1089,1186,1281,1382,1475,1570,1666,1757,1847,1929,2039,2144,2250,2361,2464,2582,2745,2847", + "endColumns": "118,109,106,85,103,119,76,76,90,92,96,94,100,92,94,95,90,89,81,109,104,105,110,102,117,162,101,88", + "endOffsets": "219,329,436,522,626,746,823,900,991,1084,1181,1276,1377,1470,1565,1661,1752,1842,1924,2034,2139,2245,2356,2459,2577,2740,2842,2931" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-or/values-or.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2936", + "endColumns": "100", + "endOffsets": "3032" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values-pa.json b/android/build/intermediates/blame/res/release/multi-v2/values-pa.json new file mode 100644 index 000000000..773dd0f20 --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values-pa.json @@ -0,0 +1,68 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-pa/values-pa.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-pa/values-pa.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,208,305,410,496,596,709,786,862,953,1046,1142,1236,1337,1430,1525,1619,1710,1801,1880,1981,2085,2182,2291,2390,2500,2659,2759", + "endColumns": "102,96,104,85,99,112,76,75,90,92,95,93,100,92,94,93,90,90,78,100,103,96,108,98,109,158,99,79", + "endOffsets": "203,300,405,491,591,704,781,857,948,1041,1137,1231,1332,1425,1520,1614,1705,1796,1875,1976,2080,2177,2286,2385,2495,2654,2754,2834" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-pa/values-pa.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2839", + "endColumns": "100", + "endOffsets": "2935" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values-pa/values-pa.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-pa/values-pa.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,208,305,410,496,596,709,786,862,953,1046,1142,1236,1337,1430,1525,1619,1710,1801,1880,1981,2085,2182,2291,2390,2500,2659,2759", + "endColumns": "102,96,104,85,99,112,76,75,90,92,95,93,100,92,94,93,90,90,78,100,103,96,108,98,109,158,99,79", + "endOffsets": "203,300,405,491,591,704,781,857,948,1041,1137,1231,1332,1425,1520,1614,1705,1796,1875,1976,2080,2177,2286,2385,2495,2654,2754,2834" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-pa/values-pa.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2839", + "endColumns": "100", + "endOffsets": "2935" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values-pl.json b/android/build/intermediates/blame/res/release/multi-v2/values-pl.json new file mode 100644 index 000000000..e0d21d044 --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values-pl.json @@ -0,0 +1,116 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values-pl/values-pl.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/react-native-0.19.1.aar/4235edd25620896d6b8925991ca39618/res/values-pl/values-pl.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,109,179,258,329,391,447,506", + "endColumns": "53,69,78,70,61,55,58,73", + "endOffsets": "104,174,253,324,386,442,501,575" + }, + "to": { + "startLines": "29,30,31,32,33,34,35,36", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "2827,2881,2951,3030,3101,3163,3219,3278", + "endColumns": "53,69,78,70,61,55,58,73", + "endOffsets": "2876,2946,3025,3096,3158,3214,3273,3347" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-pl/values-pl.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "38", + "startColumns": "4", + "startOffsets": "3434", + "endColumns": "100", + "endOffsets": "3530" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-pl/values-pl.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,221,323,431,517,626,745,823,900,991,1084,1180,1274,1376,1469,1564,1659,1750,1841,1923,2032,2141,2240,2349,2460,2568,2731,2827", + "endColumns": "115,101,107,85,108,118,77,76,90,92,95,93,101,92,94,94,90,90,81,108,108,98,108,110,107,162,95,81", + "endOffsets": "216,318,426,512,621,740,818,895,986,1079,1175,1269,1371,1464,1559,1654,1745,1836,1918,2027,2136,2235,2344,2455,2563,2726,2822,2904" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,37", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,221,323,431,517,626,745,823,900,991,1084,1180,1274,1376,1469,1564,1659,1750,1841,1923,2032,2141,2240,2349,2460,2568,2731,3352", + "endColumns": "115,101,107,85,108,118,77,76,90,92,95,93,101,92,94,94,90,90,81,108,108,98,108,110,107,162,95,81", + "endOffsets": "216,318,426,512,621,740,818,895,986,1079,1175,1269,1371,1464,1559,1654,1745,1836,1918,2027,2136,2235,2344,2455,2563,2726,2822,3429" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-pl/values-pl.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/react-native-0.19.1.aar/4235edd25620896d6b8925991ca39618/res/values-pl/values-pl.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,109,179,258,329,391,447,506", + "endColumns": "53,69,78,70,61,55,58,73", + "endOffsets": "104,174,253,324,386,442,501,575" + }, + "to": { + "startLines": "29,30,31,32,33,34,35,36", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "2827,2881,2951,3030,3101,3163,3219,3278", + "endColumns": "53,69,78,70,61,55,58,73", + "endOffsets": "2876,2946,3025,3096,3158,3214,3273,3347" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-pl/values-pl.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "38", + "startColumns": "4", + "startOffsets": "3434", + "endColumns": "100", + "endOffsets": "3530" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-pl/values-pl.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,221,323,431,517,626,745,823,900,991,1084,1180,1274,1376,1469,1564,1659,1750,1841,1923,2032,2141,2240,2349,2460,2568,2731,2827", + "endColumns": "115,101,107,85,108,118,77,76,90,92,95,93,101,92,94,94,90,90,81,108,108,98,108,110,107,162,95,81", + "endOffsets": "216,318,426,512,621,740,818,895,986,1079,1175,1269,1371,1464,1559,1654,1745,1836,1918,2027,2136,2235,2344,2455,2563,2726,2822,2904" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,37", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,221,323,431,517,626,745,823,900,991,1084,1180,1274,1376,1469,1564,1659,1750,1841,1923,2032,2141,2240,2349,2460,2568,2731,3352", + "endColumns": "115,101,107,85,108,118,77,76,90,92,95,93,101,92,94,94,90,90,81,108,108,98,108,110,107,162,95,81", + "endOffsets": "216,318,426,512,621,740,818,895,986,1079,1175,1269,1371,1464,1559,1654,1745,1836,1918,2027,2136,2235,2344,2455,2563,2726,2822,3429" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values-port.json b/android/build/intermediates/blame/res/release/multi-v2/values-port.json new file mode 100644 index 000000000..6822c2f3d --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values-port.json @@ -0,0 +1,34 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-port/values-port.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-port/values-port.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "55", + "endOffsets": "106" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values-port/values-port.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-port/values-port.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "55", + "endOffsets": "106" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values-pt-rBR.json b/android/build/intermediates/blame/res/release/multi-v2/values-pt-rBR.json new file mode 100644 index 000000000..4069718b9 --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values-pt-rBR.json @@ -0,0 +1,68 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values-pt-rBR/values-pt-rBR.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-pt-rBR/values-pt-rBR.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,225,331,438,527,628,746,829,909,1000,1093,1189,1283,1384,1477,1572,1667,1758,1849,1936,2043,2155,2257,2365,2472,2582,2744,2844", + "endColumns": "119,105,106,88,100,117,82,79,90,92,95,93,100,92,94,94,90,90,86,106,111,101,107,106,109,161,99,84", + "endOffsets": "220,326,433,522,623,741,824,904,995,1088,1184,1278,1379,1472,1567,1662,1753,1844,1931,2038,2150,2252,2360,2467,2577,2739,2839,2924" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-pt-rBR/values-pt-rBR.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2929", + "endColumns": "100", + "endOffsets": "3025" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-pt-rBR/values-pt-rBR.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-pt-rBR/values-pt-rBR.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,225,331,438,527,628,746,829,909,1000,1093,1189,1283,1384,1477,1572,1667,1758,1849,1936,2043,2155,2257,2365,2472,2582,2744,2844", + "endColumns": "119,105,106,88,100,117,82,79,90,92,95,93,100,92,94,94,90,90,86,106,111,101,107,106,109,161,99,84", + "endOffsets": "220,326,433,522,623,741,824,904,995,1088,1184,1278,1379,1472,1567,1662,1753,1844,1931,2038,2150,2252,2360,2467,2577,2739,2839,2924" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-pt-rBR/values-pt-rBR.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2929", + "endColumns": "100", + "endOffsets": "3025" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values-pt-rPT.json b/android/build/intermediates/blame/res/release/multi-v2/values-pt-rPT.json new file mode 100644 index 000000000..c3ac758ce --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values-pt-rPT.json @@ -0,0 +1,116 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values-pt-rPT/values-pt-rPT.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-pt-rPT/values-pt-rPT.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "38", + "startColumns": "4", + "startOffsets": "3473", + "endColumns": "100", + "endOffsets": "3569" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-pt-rPT/values-pt-rPT.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,225,331,438,527,628,752,836,917,1009,1103,1201,1295,1395,1489,1585,1680,1772,1864,1951,2058,2170,2272,2380,2487,2594,2765,2864", + "endColumns": "119,105,106,88,100,123,83,80,91,93,97,93,99,93,95,94,91,91,86,106,111,101,107,106,106,170,98,84", + "endOffsets": "220,326,433,522,623,747,831,912,1004,1098,1196,1290,1390,1484,1580,1675,1767,1859,1946,2053,2165,2267,2375,2482,2589,2760,2859,2944" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,37", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,225,331,438,527,628,752,836,917,1009,1103,1201,1295,1395,1489,1585,1680,1772,1864,1951,2058,2170,2272,2380,2487,2594,2765,3388", + "endColumns": "119,105,106,88,100,123,83,80,91,93,97,93,99,93,95,94,91,91,86,106,111,101,107,106,106,170,98,84", + "endOffsets": "220,326,433,522,623,747,831,912,1004,1098,1196,1290,1390,1484,1580,1675,1767,1859,1946,2053,2165,2267,2375,2482,2589,2760,2859,3468" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/react-native-0.19.1.aar/4235edd25620896d6b8925991ca39618/res/values-pt-rPT/values-pt-rPT.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,109,179,258,329,390,446,505", + "endColumns": "53,69,78,70,60,55,58,73", + "endOffsets": "104,174,253,324,385,441,500,574" + }, + "to": { + "startLines": "29,30,31,32,33,34,35,36", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "2864,2918,2988,3067,3138,3199,3255,3314", + "endColumns": "53,69,78,70,60,55,58,73", + "endOffsets": "2913,2983,3062,3133,3194,3250,3309,3383" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-pt-rPT/values-pt-rPT.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-pt-rPT/values-pt-rPT.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "38", + "startColumns": "4", + "startOffsets": "3473", + "endColumns": "100", + "endOffsets": "3569" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-pt-rPT/values-pt-rPT.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,225,331,438,527,628,752,836,917,1009,1103,1201,1295,1395,1489,1585,1680,1772,1864,1951,2058,2170,2272,2380,2487,2594,2765,2864", + "endColumns": "119,105,106,88,100,123,83,80,91,93,97,93,99,93,95,94,91,91,86,106,111,101,107,106,106,170,98,84", + "endOffsets": "220,326,433,522,623,747,831,912,1004,1098,1196,1290,1390,1484,1580,1675,1767,1859,1946,2053,2165,2267,2375,2482,2589,2760,2859,2944" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,37", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,225,331,438,527,628,752,836,917,1009,1103,1201,1295,1395,1489,1585,1680,1772,1864,1951,2058,2170,2272,2380,2487,2594,2765,3388", + "endColumns": "119,105,106,88,100,123,83,80,91,93,97,93,99,93,95,94,91,91,86,106,111,101,107,106,106,170,98,84", + "endOffsets": "220,326,433,522,623,747,831,912,1004,1098,1196,1290,1390,1484,1580,1675,1767,1859,1946,2053,2165,2267,2375,2482,2589,2760,2859,3468" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/react-native-0.19.1.aar/4235edd25620896d6b8925991ca39618/res/values-pt-rPT/values-pt-rPT.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,109,179,258,329,390,446,505", + "endColumns": "53,69,78,70,60,55,58,73", + "endOffsets": "104,174,253,324,385,441,500,574" + }, + "to": { + "startLines": "29,30,31,32,33,34,35,36", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "2864,2918,2988,3067,3138,3199,3255,3314", + "endColumns": "53,69,78,70,60,55,58,73", + "endOffsets": "2913,2983,3062,3133,3194,3250,3309,3383" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values-pt.json b/android/build/intermediates/blame/res/release/multi-v2/values-pt.json new file mode 100644 index 000000000..ed2f3d157 --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values-pt.json @@ -0,0 +1,116 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-pt/values-pt.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/react-native-0.19.1.aar/4235edd25620896d6b8925991ca39618/res/values-pt/values-pt.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,109,179,258,329,390,446,505", + "endColumns": "53,69,78,70,60,55,58,73", + "endOffsets": "104,174,253,324,385,441,500,574" + }, + "to": { + "startLines": "29,30,31,32,33,34,35,36", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "2844,2898,2968,3047,3118,3179,3235,3294", + "endColumns": "53,69,78,70,60,55,58,73", + "endOffsets": "2893,2963,3042,3113,3174,3230,3289,3363" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-pt/values-pt.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "38", + "startColumns": "4", + "startOffsets": "3453", + "endColumns": "100", + "endOffsets": "3549" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-pt/values-pt.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,225,331,438,527,628,746,829,909,1000,1093,1189,1283,1384,1477,1572,1667,1758,1849,1936,2043,2155,2257,2365,2472,2582,2744,2844", + "endColumns": "119,105,106,88,100,117,82,79,90,92,95,93,100,92,94,94,90,90,86,106,111,101,107,106,109,161,99,84", + "endOffsets": "220,326,433,522,623,741,824,904,995,1088,1184,1278,1379,1472,1567,1662,1753,1844,1931,2038,2150,2252,2360,2467,2577,2739,2839,2924" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,37", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,225,331,438,527,628,746,829,909,1000,1093,1189,1283,1384,1477,1572,1667,1758,1849,1936,2043,2155,2257,2365,2472,2582,2744,3368", + "endColumns": "119,105,106,88,100,117,82,79,90,92,95,93,100,92,94,94,90,90,86,106,111,101,107,106,109,161,99,84", + "endOffsets": "220,326,433,522,623,741,824,904,995,1088,1184,1278,1379,1472,1567,1662,1753,1844,1931,2038,2150,2252,2360,2467,2577,2739,2839,3448" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values-pt/values-pt.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/react-native-0.19.1.aar/4235edd25620896d6b8925991ca39618/res/values-pt/values-pt.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,109,179,258,329,390,446,505", + "endColumns": "53,69,78,70,60,55,58,73", + "endOffsets": "104,174,253,324,385,441,500,574" + }, + "to": { + "startLines": "29,30,31,32,33,34,35,36", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "2844,2898,2968,3047,3118,3179,3235,3294", + "endColumns": "53,69,78,70,60,55,58,73", + "endOffsets": "2893,2963,3042,3113,3174,3230,3289,3363" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-pt/values-pt.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "38", + "startColumns": "4", + "startOffsets": "3453", + "endColumns": "100", + "endOffsets": "3549" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-pt/values-pt.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,225,331,438,527,628,746,829,909,1000,1093,1189,1283,1384,1477,1572,1667,1758,1849,1936,2043,2155,2257,2365,2472,2582,2744,2844", + "endColumns": "119,105,106,88,100,117,82,79,90,92,95,93,100,92,94,94,90,90,86,106,111,101,107,106,109,161,99,84", + "endOffsets": "220,326,433,522,623,741,824,904,995,1088,1184,1278,1379,1472,1567,1662,1753,1844,1931,2038,2150,2252,2360,2467,2577,2739,2839,2924" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,37", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,225,331,438,527,628,746,829,909,1000,1093,1189,1283,1384,1477,1572,1667,1758,1849,1936,2043,2155,2257,2365,2472,2582,2744,3368", + "endColumns": "119,105,106,88,100,117,82,79,90,92,95,93,100,92,94,94,90,90,86,106,111,101,107,106,109,161,99,84", + "endOffsets": "220,326,433,522,623,741,824,904,995,1088,1184,1278,1379,1472,1567,1662,1753,1844,1931,2038,2150,2252,2360,2467,2577,2739,2839,3448" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values-ro.json b/android/build/intermediates/blame/res/release/multi-v2/values-ro.json new file mode 100644 index 000000000..e6892e927 --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values-ro.json @@ -0,0 +1,116 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values-ro/values-ro.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-ro/values-ro.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,226,330,443,531,643,764,849,930,1021,1114,1210,1304,1404,1497,1592,1687,1778,1870,1953,2065,2178,2278,2392,2497,2603,2767,2870", + "endColumns": "120,103,112,87,111,120,84,80,90,92,95,93,99,92,94,94,90,91,82,111,112,99,113,104,105,163,102,82", + "endOffsets": "221,325,438,526,638,759,844,925,1016,1109,1205,1299,1399,1492,1587,1682,1773,1865,1948,2060,2173,2273,2387,2492,2598,2762,2865,2948" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,37", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,226,330,443,531,643,764,849,930,1021,1114,1210,1304,1404,1497,1592,1687,1778,1870,1953,2065,2178,2278,2392,2497,2603,2767,3398", + "endColumns": "120,103,112,87,111,120,84,80,90,92,95,93,99,92,94,94,90,91,82,111,112,99,113,104,105,163,102,82", + "endOffsets": "221,325,438,526,638,759,844,925,1016,1109,1205,1299,1399,1492,1587,1682,1773,1865,1948,2060,2173,2273,2387,2492,2598,2762,2865,3476" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-ro/values-ro.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "38", + "startColumns": "4", + "startOffsets": "3481", + "endColumns": "100", + "endOffsets": "3577" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/react-native-0.19.1.aar/4235edd25620896d6b8925991ca39618/res/values-ro/values-ro.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,109,179,258,329,394,450,509", + "endColumns": "53,69,78,70,64,55,58,73", + "endOffsets": "104,174,253,324,389,445,504,578" + }, + "to": { + "startLines": "29,30,31,32,33,34,35,36", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "2870,2924,2994,3073,3144,3209,3265,3324", + "endColumns": "53,69,78,70,64,55,58,73", + "endOffsets": "2919,2989,3068,3139,3204,3260,3319,3393" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ro/values-ro.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-ro/values-ro.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,226,330,443,531,643,764,849,930,1021,1114,1210,1304,1404,1497,1592,1687,1778,1870,1953,2065,2178,2278,2392,2497,2603,2767,2870", + "endColumns": "120,103,112,87,111,120,84,80,90,92,95,93,99,92,94,94,90,91,82,111,112,99,113,104,105,163,102,82", + "endOffsets": "221,325,438,526,638,759,844,925,1016,1109,1205,1299,1399,1492,1587,1682,1773,1865,1948,2060,2173,2273,2387,2492,2598,2762,2865,2948" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,37", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,226,330,443,531,643,764,849,930,1021,1114,1210,1304,1404,1497,1592,1687,1778,1870,1953,2065,2178,2278,2392,2497,2603,2767,3398", + "endColumns": "120,103,112,87,111,120,84,80,90,92,95,93,99,92,94,94,90,91,82,111,112,99,113,104,105,163,102,82", + "endOffsets": "221,325,438,526,638,759,844,925,1016,1109,1205,1299,1399,1492,1587,1682,1773,1865,1948,2060,2173,2273,2387,2492,2598,2762,2865,3476" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-ro/values-ro.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "38", + "startColumns": "4", + "startOffsets": "3481", + "endColumns": "100", + "endOffsets": "3577" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/react-native-0.19.1.aar/4235edd25620896d6b8925991ca39618/res/values-ro/values-ro.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,109,179,258,329,394,450,509", + "endColumns": "53,69,78,70,64,55,58,73", + "endOffsets": "104,174,253,324,389,445,504,578" + }, + "to": { + "startLines": "29,30,31,32,33,34,35,36", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "2870,2924,2994,3073,3144,3209,3265,3324", + "endColumns": "53,69,78,70,64,55,58,73", + "endOffsets": "2919,2989,3068,3139,3204,3260,3319,3393" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values-ru.json b/android/build/intermediates/blame/res/release/multi-v2/values-ru.json new file mode 100644 index 000000000..2d337dea5 --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values-ru.json @@ -0,0 +1,116 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values-ru/values-ru.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-ru/values-ru.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,220,322,434,520,625,745,824,902,994,1088,1184,1277,1373,1467,1563,1658,1750,1842,1922,2028,2136,2234,2343,2449,2557,2732,2832", + "endColumns": "114,101,111,85,104,119,78,77,91,93,95,92,95,93,95,94,91,91,79,105,107,97,108,105,107,174,99,80", + "endOffsets": "215,317,429,515,620,740,819,897,989,1083,1179,1272,1368,1462,1558,1653,1745,1837,1917,2023,2131,2229,2338,2444,2552,2727,2827,2908" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,37", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,220,322,434,520,625,745,824,902,994,1088,1184,1277,1373,1467,1563,1658,1750,1842,1922,2028,2136,2234,2343,2449,2557,2732,3361", + "endColumns": "114,101,111,85,104,119,78,77,91,93,95,92,95,93,95,94,91,91,79,105,107,97,108,105,107,174,99,80", + "endOffsets": "215,317,429,515,620,740,819,897,989,1083,1179,1272,1368,1462,1558,1653,1745,1837,1917,2023,2131,2229,2338,2444,2552,2727,2827,3437" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-ru/values-ru.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "38", + "startColumns": "4", + "startOffsets": "3442", + "endColumns": "100", + "endOffsets": "3538" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/react-native-0.19.1.aar/4235edd25620896d6b8925991ca39618/res/values-ru/values-ru.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,109,182,261,332,395,451,510", + "endColumns": "53,72,78,70,62,55,58,73", + "endOffsets": "104,177,256,327,390,446,505,579" + }, + "to": { + "startLines": "29,30,31,32,33,34,35,36", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "2832,2886,2959,3038,3109,3172,3228,3287", + "endColumns": "53,72,78,70,62,55,58,73", + "endOffsets": "2881,2954,3033,3104,3167,3223,3282,3356" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ru/values-ru.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-ru/values-ru.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,220,322,434,520,625,745,824,902,994,1088,1184,1277,1373,1467,1563,1658,1750,1842,1922,2028,2136,2234,2343,2449,2557,2732,2832", + "endColumns": "114,101,111,85,104,119,78,77,91,93,95,92,95,93,95,94,91,91,79,105,107,97,108,105,107,174,99,80", + "endOffsets": "215,317,429,515,620,740,819,897,989,1083,1179,1272,1368,1462,1558,1653,1745,1837,1917,2023,2131,2229,2338,2444,2552,2727,2827,2908" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,37", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,220,322,434,520,625,745,824,902,994,1088,1184,1277,1373,1467,1563,1658,1750,1842,1922,2028,2136,2234,2343,2449,2557,2732,3361", + "endColumns": "114,101,111,85,104,119,78,77,91,93,95,92,95,93,95,94,91,91,79,105,107,97,108,105,107,174,99,80", + "endOffsets": "215,317,429,515,620,740,819,897,989,1083,1179,1272,1368,1462,1558,1653,1745,1837,1917,2023,2131,2229,2338,2444,2552,2727,2827,3437" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-ru/values-ru.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "38", + "startColumns": "4", + "startOffsets": "3442", + "endColumns": "100", + "endOffsets": "3538" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/react-native-0.19.1.aar/4235edd25620896d6b8925991ca39618/res/values-ru/values-ru.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,109,182,261,332,395,451,510", + "endColumns": "53,72,78,70,62,55,58,73", + "endOffsets": "104,177,256,327,390,446,505,579" + }, + "to": { + "startLines": "29,30,31,32,33,34,35,36", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "2832,2886,2959,3038,3109,3172,3228,3287", + "endColumns": "53,72,78,70,62,55,58,73", + "endOffsets": "2881,2954,3033,3104,3167,3223,3282,3356" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values-si.json b/android/build/intermediates/blame/res/release/multi-v2/values-si.json new file mode 100644 index 000000000..e032b7601 --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values-si.json @@ -0,0 +1,68 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-si/values-si.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-si/values-si.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2903", + "endColumns": "100", + "endOffsets": "2999" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-si/values-si.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,215,322,429,517,622,738,827,914,1005,1098,1193,1287,1388,1481,1576,1670,1761,1852,1936,2045,2150,2248,2358,2457,2563,2722,2821", + "endColumns": "109,106,106,87,104,115,88,86,90,92,94,93,100,92,94,93,90,90,83,108,104,97,109,98,105,158,98,81", + "endOffsets": "210,317,424,512,617,733,822,909,1000,1093,1188,1282,1383,1476,1571,1665,1756,1847,1931,2040,2145,2243,2353,2452,2558,2717,2816,2898" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values-si/values-si.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-si/values-si.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2903", + "endColumns": "100", + "endOffsets": "2999" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-si/values-si.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,215,322,429,517,622,738,827,914,1005,1098,1193,1287,1388,1481,1576,1670,1761,1852,1936,2045,2150,2248,2358,2457,2563,2722,2821", + "endColumns": "109,106,106,87,104,115,88,86,90,92,94,93,100,92,94,93,90,90,83,108,104,97,109,98,105,158,98,81", + "endOffsets": "210,317,424,512,617,733,822,909,1000,1093,1188,1282,1383,1476,1571,1665,1756,1847,1931,2040,2145,2243,2353,2452,2558,2717,2816,2898" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values-sk.json b/android/build/intermediates/blame/res/release/multi-v2/values-sk.json new file mode 100644 index 000000000..94713ebce --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values-sk.json @@ -0,0 +1,68 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-sk/values-sk.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-sk/values-sk.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2918", + "endColumns": "100", + "endOffsets": "3014" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-sk/values-sk.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,212,312,423,509,617,735,816,897,988,1081,1180,1274,1375,1468,1563,1661,1752,1843,1927,2032,2141,2240,2346,2457,2566,2732,2830", + "endColumns": "106,99,110,85,107,117,80,80,90,92,98,93,100,92,94,97,90,90,83,104,108,98,105,110,108,165,97,87", + "endOffsets": "207,307,418,504,612,730,811,892,983,1076,1175,1269,1370,1463,1558,1656,1747,1838,1922,2027,2136,2235,2341,2452,2561,2727,2825,2913" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values-sk/values-sk.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-sk/values-sk.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2918", + "endColumns": "100", + "endOffsets": "3014" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-sk/values-sk.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,212,312,423,509,617,735,816,897,988,1081,1180,1274,1375,1468,1563,1661,1752,1843,1927,2032,2141,2240,2346,2457,2566,2732,2830", + "endColumns": "106,99,110,85,107,117,80,80,90,92,98,93,100,92,94,97,90,90,83,104,108,98,105,110,108,165,97,87", + "endOffsets": "207,307,418,504,612,730,811,892,983,1076,1175,1269,1370,1463,1558,1656,1747,1838,1922,2027,2136,2235,2341,2452,2561,2727,2825,2913" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values-sl.json b/android/build/intermediates/blame/res/release/multi-v2/values-sl.json new file mode 100644 index 000000000..8ffe348ef --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values-sl.json @@ -0,0 +1,68 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-sl/values-sl.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-sl/values-sl.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,212,319,427,514,617,736,821,905,997,1091,1187,1281,1377,1471,1567,1667,1759,1851,1935,2043,2152,2252,2365,2472,2576,2756,2853", + "endColumns": "106,106,107,86,102,118,84,83,91,93,95,93,95,93,95,99,91,91,83,107,108,99,112,106,103,179,96,82", + "endOffsets": "207,314,422,509,612,731,816,900,992,1086,1182,1276,1372,1466,1562,1662,1754,1846,1930,2038,2147,2247,2360,2467,2571,2751,2848,2931" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-sl/values-sl.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2936", + "endColumns": "100", + "endOffsets": "3032" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values-sl/values-sl.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-sl/values-sl.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,212,319,427,514,617,736,821,905,997,1091,1187,1281,1377,1471,1567,1667,1759,1851,1935,2043,2152,2252,2365,2472,2576,2756,2853", + "endColumns": "106,106,107,86,102,118,84,83,91,93,95,93,95,93,95,99,91,91,83,107,108,99,112,106,103,179,96,82", + "endOffsets": "207,314,422,509,612,731,816,900,992,1086,1182,1276,1372,1466,1562,1662,1754,1846,1930,2038,2147,2247,2360,2467,2571,2751,2848,2931" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-sl/values-sl.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2936", + "endColumns": "100", + "endOffsets": "3032" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values-sq.json b/android/build/intermediates/blame/res/release/multi-v2/values-sq.json new file mode 100644 index 000000000..7da3f3353 --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values-sq.json @@ -0,0 +1,68 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values-sq/values-sq.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-sq/values-sq.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,219,319,431,518,628,751,832,911,1002,1095,1191,1285,1387,1480,1575,1672,1763,1856,1939,2045,2150,2248,2354,2457,2573,2727,2826", + "endColumns": "113,99,111,86,109,122,80,78,90,92,95,93,101,92,94,96,90,92,82,105,104,97,105,102,115,153,98,80", + "endOffsets": "214,314,426,513,623,746,827,906,997,1090,1186,1280,1382,1475,1570,1667,1758,1851,1934,2040,2145,2243,2349,2452,2568,2722,2821,2902" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-sq/values-sq.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2907", + "endColumns": "100", + "endOffsets": "3003" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-sq/values-sq.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-sq/values-sq.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,219,319,431,518,628,751,832,911,1002,1095,1191,1285,1387,1480,1575,1672,1763,1856,1939,2045,2150,2248,2354,2457,2573,2727,2826", + "endColumns": "113,99,111,86,109,122,80,78,90,92,95,93,101,92,94,96,90,92,82,105,104,97,105,102,115,153,98,80", + "endOffsets": "214,314,426,513,623,746,827,906,997,1090,1186,1280,1382,1475,1570,1667,1758,1851,1934,2040,2145,2243,2349,2452,2568,2722,2821,2902" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-sq/values-sq.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2907", + "endColumns": "100", + "endOffsets": "3003" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values-sr.json b/android/build/intermediates/blame/res/release/multi-v2/values-sr.json new file mode 100644 index 000000000..d21be4db3 --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values-sr.json @@ -0,0 +1,68 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values-sr/values-sr.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-sr/values-sr.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,214,317,423,509,613,731,812,892,983,1076,1172,1266,1367,1460,1555,1660,1751,1842,1930,2035,2143,2244,2348,2456,2557,2724,2821", + "endColumns": "108,102,105,85,103,117,80,79,90,92,95,93,100,92,94,104,90,90,87,104,107,100,103,107,100,166,96,83", + "endOffsets": "209,312,418,504,608,726,807,887,978,1071,1167,1261,1362,1455,1550,1655,1746,1837,1925,2030,2138,2239,2343,2451,2552,2719,2816,2900" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-sr/values-sr.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2905", + "endColumns": "100", + "endOffsets": "3001" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-sr/values-sr.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-sr/values-sr.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,214,317,423,509,613,731,812,892,983,1076,1172,1266,1367,1460,1555,1660,1751,1842,1930,2035,2143,2244,2348,2456,2557,2724,2821", + "endColumns": "108,102,105,85,103,117,80,79,90,92,95,93,100,92,94,104,90,90,87,104,107,100,103,107,100,166,96,83", + "endOffsets": "209,312,418,504,608,726,807,887,978,1071,1167,1261,1362,1455,1550,1655,1746,1837,1925,2030,2138,2239,2343,2451,2552,2719,2816,2900" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-sr/values-sr.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2905", + "endColumns": "100", + "endOffsets": "3001" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values-sv.json b/android/build/intermediates/blame/res/release/multi-v2/values-sv.json new file mode 100644 index 000000000..771f7837f --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values-sv.json @@ -0,0 +1,116 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-sv/values-sv.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/react-native-0.19.1.aar/4235edd25620896d6b8925991ca39618/res/values-sv/values-sv.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,109,183,262,333,393,449,508", + "endColumns": "53,73,78,70,59,55,58,73", + "endOffsets": "104,178,257,328,388,444,503,577" + }, + "to": { + "startLines": "29,30,31,32,33,34,35,36", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "2784,2838,2912,2991,3062,3122,3178,3237", + "endColumns": "53,73,78,70,59,55,58,73", + "endOffsets": "2833,2907,2986,3057,3117,3173,3232,3306" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-sv/values-sv.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,211,314,425,510,612,725,801,877,970,1065,1161,1255,1358,1453,1550,1648,1744,1837,1917,2023,2123,2219,2324,2426,2528,2682,2784", + "endColumns": "105,102,110,84,101,112,75,75,92,94,95,93,102,94,96,97,95,92,79,105,99,95,104,101,101,153,101,78", + "endOffsets": "206,309,420,505,607,720,796,872,965,1060,1156,1250,1353,1448,1545,1643,1739,1832,1912,2018,2118,2214,2319,2421,2523,2677,2779,2858" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,37", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,211,314,425,510,612,725,801,877,970,1065,1161,1255,1358,1453,1550,1648,1744,1837,1917,2023,2123,2219,2324,2426,2528,2682,3311", + "endColumns": "105,102,110,84,101,112,75,75,92,94,95,93,102,94,96,97,95,92,79,105,99,95,104,101,101,153,101,78", + "endOffsets": "206,309,420,505,607,720,796,872,965,1060,1156,1250,1353,1448,1545,1643,1739,1832,1912,2018,2118,2214,2319,2421,2523,2677,2779,3385" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-sv/values-sv.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "38", + "startColumns": "4", + "startOffsets": "3390", + "endColumns": "100", + "endOffsets": "3486" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values-sv/values-sv.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/react-native-0.19.1.aar/4235edd25620896d6b8925991ca39618/res/values-sv/values-sv.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,109,183,262,333,393,449,508", + "endColumns": "53,73,78,70,59,55,58,73", + "endOffsets": "104,178,257,328,388,444,503,577" + }, + "to": { + "startLines": "29,30,31,32,33,34,35,36", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "2784,2838,2912,2991,3062,3122,3178,3237", + "endColumns": "53,73,78,70,59,55,58,73", + "endOffsets": "2833,2907,2986,3057,3117,3173,3232,3306" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-sv/values-sv.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,211,314,425,510,612,725,801,877,970,1065,1161,1255,1358,1453,1550,1648,1744,1837,1917,2023,2123,2219,2324,2426,2528,2682,2784", + "endColumns": "105,102,110,84,101,112,75,75,92,94,95,93,102,94,96,97,95,92,79,105,99,95,104,101,101,153,101,78", + "endOffsets": "206,309,420,505,607,720,796,872,965,1060,1156,1250,1353,1448,1545,1643,1739,1832,1912,2018,2118,2214,2319,2421,2523,2677,2779,2858" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,37", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,211,314,425,510,612,725,801,877,970,1065,1161,1255,1358,1453,1550,1648,1744,1837,1917,2023,2123,2219,2324,2426,2528,2682,3311", + "endColumns": "105,102,110,84,101,112,75,75,92,94,95,93,102,94,96,97,95,92,79,105,99,95,104,101,101,153,101,78", + "endOffsets": "206,309,420,505,607,720,796,872,965,1060,1156,1250,1353,1448,1545,1643,1739,1832,1912,2018,2118,2214,2319,2421,2523,2677,2779,3385" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-sv/values-sv.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "38", + "startColumns": "4", + "startOffsets": "3390", + "endColumns": "100", + "endOffsets": "3486" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values-sw.json b/android/build/intermediates/blame/res/release/multi-v2/values-sw.json new file mode 100644 index 000000000..a93e82581 --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values-sw.json @@ -0,0 +1,68 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-sw/values-sw.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-sw/values-sw.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,208,306,414,504,609,726,808,891,982,1075,1169,1263,1364,1457,1552,1647,1738,1830,1912,2013,2122,2221,2328,2437,2542,2704,2801", + "endColumns": "102,97,107,89,104,116,81,82,90,92,93,93,100,92,94,94,90,91,81,100,108,98,106,108,104,161,96,81", + "endOffsets": "203,301,409,499,604,721,803,886,977,1070,1164,1258,1359,1452,1547,1642,1733,1825,1907,2008,2117,2216,2323,2432,2537,2699,2796,2878" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-sw/values-sw.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2883", + "endColumns": "100", + "endOffsets": "2979" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values-sw/values-sw.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-sw/values-sw.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,208,306,414,504,609,726,808,891,982,1075,1169,1263,1364,1457,1552,1647,1738,1830,1912,2013,2122,2221,2328,2437,2542,2704,2801", + "endColumns": "102,97,107,89,104,116,81,82,90,92,93,93,100,92,94,94,90,91,81,100,108,98,106,108,104,161,96,81", + "endOffsets": "203,301,409,499,604,721,803,886,977,1070,1164,1258,1359,1452,1547,1642,1733,1825,1907,2008,2117,2216,2323,2432,2537,2699,2796,2878" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-sw/values-sw.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2883", + "endColumns": "100", + "endOffsets": "2979" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values-sw600dp-v13.json b/android/build/intermediates/blame/res/release/multi-v2/values-sw600dp-v13.json new file mode 100644 index 000000000..d7695063d --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values-sw600dp-v13.json @@ -0,0 +1,72 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-sw600dp-v13/values-sw600dp-v13.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-sw600dp-v13/values-sw600dp-v13.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,124,193,263,337,413,472,543", + "endColumns": "68,68,69,73,75,58,70,67", + "endOffsets": "119,188,258,332,408,467,538,606" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/values-sw600dp-v13/values-sw600dp-v13.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,10,11,12", + "startColumns": "4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,115,185,256,328,386,444,553,617,680", + "endLines": "2,3,4,5,6,7,9,10,11,15", + "endColumns": "59,69,70,71,57,57,10,63,62,10", + "endOffsets": "110,180,251,323,381,439,548,612,675,847" + }, + "to": { + "startLines": "10,11,12,13,14,15,16,18,19,20", + "startColumns": "4,4,4,4,4,4,4,4,4,4", + "startOffsets": "611,671,741,812,884,942,1000,1109,1173,1236", + "endLines": "10,11,12,13,14,15,17,18,19,23", + "endColumns": "59,69,70,71,57,57,10,63,62,10", + "endOffsets": "666,736,807,879,937,995,1104,1168,1231,1403" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values-sw600dp-v13/values-sw600dp-v13.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-sw600dp-v13/values-sw600dp-v13.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,124,193,263,337,413,472,543", + "endColumns": "68,68,69,73,75,58,70,67", + "endOffsets": "119,188,258,332,408,467,538,606" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/values-sw600dp-v13/values-sw600dp-v13.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,10,11,12", + "startColumns": "4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,115,185,256,328,386,444,553,617,680", + "endLines": "2,3,4,5,6,7,9,10,11,15", + "endColumns": "59,69,70,71,57,57,10,63,62,10", + "endOffsets": "110,180,251,323,381,439,548,612,675,847" + }, + "to": { + "startLines": "10,11,12,13,14,15,16,18,19,20", + "startColumns": "4,4,4,4,4,4,4,4,4,4", + "startOffsets": "611,671,741,812,884,942,1000,1109,1173,1236", + "endLines": "10,11,12,13,14,15,17,18,19,23", + "endColumns": "59,69,70,71,57,57,10,63,62,10", + "endOffsets": "666,736,807,879,937,995,1104,1168,1231,1403" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values-ta.json b/android/build/intermediates/blame/res/release/multi-v2/values-ta.json new file mode 100644 index 000000000..740572ae1 --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values-ta.json @@ -0,0 +1,68 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ta/values-ta.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-ta/values-ta.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,219,317,432,521,628,754,832,909,1009,1114,1210,1305,1412,1514,1618,1713,1815,1913,1995,2097,2201,2298,2408,2510,2617,2774,2874", + "endColumns": "113,97,114,88,106,125,77,76,99,104,95,94,106,101,103,94,101,97,81,101,103,96,109,101,106,156,99,79", + "endOffsets": "214,312,427,516,623,749,827,904,1004,1109,1205,1300,1407,1509,1613,1708,1810,1908,1990,2092,2196,2293,2403,2505,2612,2769,2869,2949" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-ta/values-ta.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2954", + "endColumns": "100", + "endOffsets": "3050" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values-ta/values-ta.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-ta/values-ta.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,219,317,432,521,628,754,832,909,1009,1114,1210,1305,1412,1514,1618,1713,1815,1913,1995,2097,2201,2298,2408,2510,2617,2774,2874", + "endColumns": "113,97,114,88,106,125,77,76,99,104,95,94,106,101,103,94,101,97,81,101,103,96,109,101,106,156,99,79", + "endOffsets": "214,312,427,516,623,749,827,904,1004,1109,1205,1300,1407,1509,1613,1708,1810,1908,1990,2092,2196,2293,2403,2505,2612,2769,2869,2949" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-ta/values-ta.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2954", + "endColumns": "100", + "endOffsets": "3050" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values-te.json b/android/build/intermediates/blame/res/release/multi-v2/values-te.json new file mode 100644 index 000000000..9d821093a --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values-te.json @@ -0,0 +1,68 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-te/values-te.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-te/values-te.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2946", + "endColumns": "100", + "endOffsets": "3042" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-te/values-te.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,219,328,439,529,634,759,841,923,1014,1107,1203,1297,1398,1491,1586,1681,1772,1863,1947,2060,2168,2267,2378,2480,2597,2763,2864", + "endColumns": "113,108,110,89,104,124,81,81,90,92,95,93,100,92,94,94,90,90,83,112,107,98,110,101,116,165,100,81", + "endOffsets": "214,323,434,524,629,754,836,918,1009,1102,1198,1292,1393,1486,1581,1676,1767,1858,1942,2055,2163,2262,2373,2475,2592,2758,2859,2941" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values-te/values-te.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-te/values-te.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2946", + "endColumns": "100", + "endOffsets": "3042" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-te/values-te.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,219,328,439,529,634,759,841,923,1014,1107,1203,1297,1398,1491,1586,1681,1772,1863,1947,2060,2168,2267,2378,2480,2597,2763,2864", + "endColumns": "113,108,110,89,104,124,81,81,90,92,95,93,100,92,94,94,90,90,83,112,107,98,110,101,116,165,100,81", + "endOffsets": "214,323,434,524,629,754,836,918,1009,1102,1198,1292,1393,1486,1581,1676,1767,1858,1942,2055,2163,2262,2373,2475,2592,2758,2859,2941" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values-th.json b/android/build/intermediates/blame/res/release/multi-v2/values-th.json new file mode 100644 index 000000000..88fbd19d6 --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values-th.json @@ -0,0 +1,116 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-th/values-th.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/react-native-0.19.1.aar/4235edd25620896d6b8925991ca39618/res/values-th/values-th.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,109,181,260,331,391,447,506", + "endColumns": "53,71,78,70,59,55,58,73", + "endOffsets": "104,176,255,326,386,442,501,575" + }, + "to": { + "startLines": "29,30,31,32,33,34,35,36", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "2764,2818,2890,2969,3040,3100,3156,3215", + "endColumns": "53,71,78,70,59,55,58,73", + "endOffsets": "2813,2885,2964,3035,3095,3151,3210,3284" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-th/values-th.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "38", + "startColumns": "4", + "startOffsets": "3370", + "endColumns": "100", + "endOffsets": "3466" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-th/values-th.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,210,308,416,505,607,717,794,872,963,1056,1152,1246,1347,1440,1535,1629,1720,1811,1892,2000,2104,2202,2310,2415,2516,2669,2764", + "endColumns": "104,97,107,88,101,109,76,77,90,92,95,93,100,92,94,93,90,90,80,107,103,97,107,104,100,152,94,80", + "endOffsets": "205,303,411,500,602,712,789,867,958,1051,1147,1241,1342,1435,1530,1624,1715,1806,1887,1995,2099,2197,2305,2410,2511,2664,2759,2840" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,37", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,210,308,416,505,607,717,794,872,963,1056,1152,1246,1347,1440,1535,1629,1720,1811,1892,2000,2104,2202,2310,2415,2516,2669,3289", + "endColumns": "104,97,107,88,101,109,76,77,90,92,95,93,100,92,94,93,90,90,80,107,103,97,107,104,100,152,94,80", + "endOffsets": "205,303,411,500,602,712,789,867,958,1051,1147,1241,1342,1435,1530,1624,1715,1806,1887,1995,2099,2197,2305,2410,2511,2664,2759,3365" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values-th/values-th.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/react-native-0.19.1.aar/4235edd25620896d6b8925991ca39618/res/values-th/values-th.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,109,181,260,331,391,447,506", + "endColumns": "53,71,78,70,59,55,58,73", + "endOffsets": "104,176,255,326,386,442,501,575" + }, + "to": { + "startLines": "29,30,31,32,33,34,35,36", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "2764,2818,2890,2969,3040,3100,3156,3215", + "endColumns": "53,71,78,70,59,55,58,73", + "endOffsets": "2813,2885,2964,3035,3095,3151,3210,3284" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-th/values-th.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "38", + "startColumns": "4", + "startOffsets": "3370", + "endColumns": "100", + "endOffsets": "3466" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-th/values-th.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,210,308,416,505,607,717,794,872,963,1056,1152,1246,1347,1440,1535,1629,1720,1811,1892,2000,2104,2202,2310,2415,2516,2669,2764", + "endColumns": "104,97,107,88,101,109,76,77,90,92,95,93,100,92,94,93,90,90,80,107,103,97,107,104,100,152,94,80", + "endOffsets": "205,303,411,500,602,712,789,867,958,1051,1147,1241,1342,1435,1530,1624,1715,1806,1887,1995,2099,2197,2305,2410,2511,2664,2759,2840" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,37", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,210,308,416,505,607,717,794,872,963,1056,1152,1246,1347,1440,1535,1629,1720,1811,1892,2000,2104,2202,2310,2415,2516,2669,3289", + "endColumns": "104,97,107,88,101,109,76,77,90,92,95,93,100,92,94,93,90,90,80,107,103,97,107,104,100,152,94,80", + "endOffsets": "205,303,411,500,602,712,789,867,958,1051,1147,1241,1342,1435,1530,1624,1715,1806,1887,1995,2099,2197,2305,2410,2511,2664,2759,3365" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values-tl.json b/android/build/intermediates/blame/res/release/multi-v2/values-tl.json new file mode 100644 index 000000000..fedb70a97 --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values-tl.json @@ -0,0 +1,68 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-tl/values-tl.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-tl/values-tl.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2949", + "endColumns": "100", + "endOffsets": "3045" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-tl/values-tl.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,224,332,449,537,643,764,843,921,1012,1105,1201,1295,1396,1489,1584,1678,1769,1860,1944,2053,2164,2265,2375,2492,2600,2763,2865", + "endColumns": "118,107,116,87,105,120,78,77,90,92,95,93,100,92,94,93,90,90,83,108,110,100,109,116,107,162,101,83", + "endOffsets": "219,327,444,532,638,759,838,916,1007,1100,1196,1290,1391,1484,1579,1673,1764,1855,1939,2048,2159,2260,2370,2487,2595,2758,2860,2944" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values-tl/values-tl.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-tl/values-tl.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2949", + "endColumns": "100", + "endOffsets": "3045" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-tl/values-tl.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,224,332,449,537,643,764,843,921,1012,1105,1201,1295,1396,1489,1584,1678,1769,1860,1944,2053,2164,2265,2375,2492,2600,2763,2865", + "endColumns": "118,107,116,87,105,120,78,77,90,92,95,93,100,92,94,93,90,90,83,108,110,100,109,116,107,162,101,83", + "endOffsets": "219,327,444,532,638,759,838,916,1007,1100,1196,1290,1391,1484,1579,1673,1764,1855,1939,2048,2159,2260,2370,2487,2595,2758,2860,2944" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values-tr.json b/android/build/intermediates/blame/res/release/multi-v2/values-tr.json new file mode 100644 index 000000000..b22104f79 --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values-tr.json @@ -0,0 +1,116 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values-tr/values-tr.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-tr/values-tr.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "38", + "startColumns": "4", + "startOffsets": "3396", + "endColumns": "100", + "endOffsets": "3492" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-tr/values-tr.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,210,309,421,506,612,732,811,887,978,1071,1164,1258,1356,1449,1551,1646,1737,1828,1907,2014,2119,2215,2322,2424,2532,2688,2786", + "endColumns": "104,98,111,84,105,119,78,75,90,92,92,93,97,92,101,94,90,90,78,106,104,95,106,101,107,155,97,78", + "endOffsets": "205,304,416,501,607,727,806,882,973,1066,1159,1253,1351,1444,1546,1641,1732,1823,1902,2009,2114,2210,2317,2419,2527,2683,2781,2860" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,37", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,210,309,421,506,612,732,811,887,978,1071,1164,1258,1356,1449,1551,1646,1737,1828,1907,2014,2119,2215,2322,2424,2532,2688,3317", + "endColumns": "104,98,111,84,105,119,78,75,90,92,92,93,97,92,101,94,90,90,78,106,104,95,106,101,107,155,97,78", + "endOffsets": "205,304,416,501,607,727,806,882,973,1066,1159,1253,1351,1444,1546,1641,1732,1823,1902,2009,2114,2210,2317,2419,2527,2683,2781,3391" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/react-native-0.19.1.aar/4235edd25620896d6b8925991ca39618/res/values-tr/values-tr.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,109,178,257,328,397,453,512", + "endColumns": "53,68,78,70,68,55,58,73", + "endOffsets": "104,173,252,323,392,448,507,581" + }, + "to": { + "startLines": "29,30,31,32,33,34,35,36", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "2786,2840,2909,2988,3059,3128,3184,3243", + "endColumns": "53,68,78,70,68,55,58,73", + "endOffsets": "2835,2904,2983,3054,3123,3179,3238,3312" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-tr/values-tr.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-tr/values-tr.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "38", + "startColumns": "4", + "startOffsets": "3396", + "endColumns": "100", + "endOffsets": "3492" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-tr/values-tr.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,210,309,421,506,612,732,811,887,978,1071,1164,1258,1356,1449,1551,1646,1737,1828,1907,2014,2119,2215,2322,2424,2532,2688,2786", + "endColumns": "104,98,111,84,105,119,78,75,90,92,92,93,97,92,101,94,90,90,78,106,104,95,106,101,107,155,97,78", + "endOffsets": "205,304,416,501,607,727,806,882,973,1066,1159,1253,1351,1444,1546,1641,1732,1823,1902,2009,2114,2210,2317,2419,2527,2683,2781,2860" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,37", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,210,309,421,506,612,732,811,887,978,1071,1164,1258,1356,1449,1551,1646,1737,1828,1907,2014,2119,2215,2322,2424,2532,2688,3317", + "endColumns": "104,98,111,84,105,119,78,75,90,92,92,93,97,92,101,94,90,90,78,106,104,95,106,101,107,155,97,78", + "endOffsets": "205,304,416,501,607,727,806,882,973,1066,1159,1253,1351,1444,1546,1641,1732,1823,1902,2009,2114,2210,2317,2419,2527,2683,2781,3391" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/react-native-0.19.1.aar/4235edd25620896d6b8925991ca39618/res/values-tr/values-tr.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,109,178,257,328,397,453,512", + "endColumns": "53,68,78,70,68,55,58,73", + "endOffsets": "104,173,252,323,392,448,507,581" + }, + "to": { + "startLines": "29,30,31,32,33,34,35,36", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "2786,2840,2909,2988,3059,3128,3184,3243", + "endColumns": "53,68,78,70,68,55,58,73", + "endOffsets": "2835,2904,2983,3054,3123,3179,3238,3312" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values-uk.json b/android/build/intermediates/blame/res/release/multi-v2/values-uk.json new file mode 100644 index 000000000..b025256ef --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values-uk.json @@ -0,0 +1,68 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-uk/values-uk.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-uk/values-uk.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2900", + "endColumns": "100", + "endOffsets": "2996" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-uk/values-uk.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,215,317,423,509,617,735,814,894,985,1078,1174,1268,1369,1462,1557,1652,1743,1834,1915,2021,2128,2226,2334,2440,2549,2719,2819", + "endColumns": "109,101,105,85,107,117,78,79,90,92,95,93,100,92,94,94,90,90,80,105,106,97,107,105,108,169,99,80", + "endOffsets": "210,312,418,504,612,730,809,889,980,1073,1169,1263,1364,1457,1552,1647,1738,1829,1910,2016,2123,2221,2329,2435,2544,2714,2814,2895" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values-uk/values-uk.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-uk/values-uk.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2900", + "endColumns": "100", + "endOffsets": "2996" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-uk/values-uk.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,215,317,423,509,617,735,814,894,985,1078,1174,1268,1369,1462,1557,1652,1743,1834,1915,2021,2128,2226,2334,2440,2549,2719,2819", + "endColumns": "109,101,105,85,107,117,78,79,90,92,95,93,100,92,94,94,90,90,80,105,106,97,107,105,108,169,99,80", + "endOffsets": "210,312,418,504,612,730,809,889,980,1073,1169,1263,1364,1457,1552,1647,1738,1829,1910,2016,2123,2221,2329,2435,2544,2714,2814,2895" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values-ur.json b/android/build/intermediates/blame/res/release/multi-v2/values-ur.json new file mode 100644 index 000000000..ea8197492 --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values-ur.json @@ -0,0 +1,68 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ur/values-ur.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-ur/values-ur.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,215,321,430,516,620,740,816,892,984,1078,1174,1268,1370,1464,1560,1654,1746,1838,1923,2031,2140,2242,2353,2453,2561,2726,2824", + "endColumns": "109,105,108,85,103,119,75,75,91,93,95,93,101,93,95,93,91,91,84,107,108,101,110,99,107,164,97,79", + "endOffsets": "210,316,425,511,615,735,811,887,979,1073,1169,1263,1365,1459,1555,1649,1741,1833,1918,2026,2135,2237,2348,2448,2556,2721,2819,2899" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-ur/values-ur.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2904", + "endColumns": "100", + "endOffsets": "3000" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values-ur/values-ur.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-ur/values-ur.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,215,321,430,516,620,740,816,892,984,1078,1174,1268,1370,1464,1560,1654,1746,1838,1923,2031,2140,2242,2353,2453,2561,2726,2824", + "endColumns": "109,105,108,85,103,119,75,75,91,93,95,93,101,93,95,93,91,91,84,107,108,101,110,99,107,164,97,79", + "endOffsets": "210,316,425,511,615,735,811,887,979,1073,1169,1263,1365,1459,1555,1649,1741,1833,1918,2026,2135,2237,2348,2448,2556,2721,2819,2899" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-ur/values-ur.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2904", + "endColumns": "100", + "endOffsets": "3000" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values-uz.json b/android/build/intermediates/blame/res/release/multi-v2/values-uz.json new file mode 100644 index 000000000..b09027626 --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values-uz.json @@ -0,0 +1,68 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-uz/values-uz.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-uz/values-uz.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,210,314,428,514,614,730,810,889,980,1073,1169,1263,1358,1451,1546,1641,1732,1824,1908,2017,2124,2225,2333,2438,2545,2706,2805", + "endColumns": "104,103,113,85,99,115,79,78,90,92,95,93,94,92,94,94,90,91,83,108,106,100,107,104,106,160,98,83", + "endOffsets": "205,309,423,509,609,725,805,884,975,1068,1164,1258,1353,1446,1541,1636,1727,1819,1903,2012,2119,2220,2328,2433,2540,2701,2800,2884" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-uz/values-uz.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2889", + "endColumns": "100", + "endOffsets": "2985" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values-uz/values-uz.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-uz/values-uz.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,210,314,428,514,614,730,810,889,980,1073,1169,1263,1358,1451,1546,1641,1732,1824,1908,2017,2124,2225,2333,2438,2545,2706,2805", + "endColumns": "104,103,113,85,99,115,79,78,90,92,95,93,94,92,94,94,90,91,83,108,106,100,107,104,106,160,98,83", + "endOffsets": "205,309,423,509,609,725,805,884,975,1068,1164,1258,1353,1446,1541,1636,1727,1819,1903,2012,2119,2220,2328,2433,2540,2701,2800,2884" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-uz/values-uz.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2889", + "endColumns": "100", + "endOffsets": "2985" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values-v16.json b/android/build/intermediates/blame/res/release/multi-v2/values-v16.json new file mode 100644 index 000000000..e35b9b087 --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values-v16.json @@ -0,0 +1,72 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v16/values-v16.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-v16/values-v16.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endLines": "5", + "endColumns": "12", + "endOffsets": "223" + }, + "to": { + "startLines": "3", + "startColumns": "4", + "startOffsets": "121", + "endLines": "6", + "endColumns": "12", + "endOffsets": "289" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-v16/values-v16.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "65", + "endOffsets": "116" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values-v16/values-v16.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-v16/values-v16.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endLines": "5", + "endColumns": "12", + "endOffsets": "223" + }, + "to": { + "startLines": "3", + "startColumns": "4", + "startOffsets": "121", + "endLines": "6", + "endColumns": "12", + "endOffsets": "289" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-v16/values-v16.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "65", + "endOffsets": "116" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values-v17.json b/android/build/intermediates/blame/res/release/multi-v2/values-v17.json new file mode 100644 index 000000000..c17d847ba --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values-v17.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v17/values-v17.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-v17/values-v17.xml", + "from": { + "startLines": "2,5,9,12,15,18,22,25,29,33,37,40,43,46,50,53,57", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,228,456,614,764,936,1161,1331,1559,1783,2025,2196,2370,2539,2812,3012,3216", + "endLines": "4,8,11,14,17,21,24,28,32,36,39,42,45,49,52,56,60", + "endColumns": "12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12", + "endOffsets": "223,451,609,759,931,1156,1326,1554,1778,2020,2191,2365,2534,2807,3007,3211,3540" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values-v17/values-v17.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-v17/values-v17.xml", + "from": { + "startLines": "2,5,9,12,15,18,22,25,29,33,37,40,43,46,50,53,57", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,228,456,614,764,936,1161,1331,1559,1783,2025,2196,2370,2539,2812,3012,3216", + "endLines": "4,8,11,14,17,21,24,28,32,36,39,42,45,49,52,56,60", + "endColumns": "12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12", + "endOffsets": "223,451,609,759,931,1156,1326,1554,1778,2020,2191,2365,2534,2807,3007,3211,3540" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values-v18.json b/android/build/intermediates/blame/res/release/multi-v2/values-v18.json new file mode 100644 index 000000000..990e224bd --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values-v18.json @@ -0,0 +1,34 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v18/values-v18.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-v18/values-v18.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "48", + "endOffsets": "99" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values-v18/values-v18.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-v18/values-v18.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "48", + "endOffsets": "99" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values-v21.json b/android/build/intermediates/blame/res/release/multi-v2/values-v21.json new file mode 100644 index 000000000..dcde218ea --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values-v21.json @@ -0,0 +1,128 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v21/values-v21.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-v21/values-v21.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,17,19,20,21,22,24,26,27,28,29,30,32,34,36,38,40,42,43,48,50,52,53,54,56,58,59,60,61,62,63,107,110,154,157,160,162,164,166,169,171,174,175,176,179,180,181,182,183,184,187,188,190,192,194,196,200,202,203,204,205,207,211,213,215,216,217,218,219,221,222,223,233,234,235,247", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,146,249,352,457,564,673,782,891,1000,1109,1216,1319,1438,1593,1748,1853,1974,2075,2222,2363,2466,2585,2692,2795,2950,3121,3270,3435,3592,3743,3862,4234,4383,4532,4644,4791,4944,5091,5166,5255,5342,5443,5546,8614,8799,11879,12076,12275,12398,12521,12634,12817,12948,13149,13238,13349,13582,13683,13778,13901,14030,14147,14324,14423,14558,14701,14836,14955,15156,15275,15368,15479,15535,15642,15837,15948,16081,16176,16267,16358,16475,16614,16685,16768,17448,17505,17563,18257", + "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,16,18,19,20,21,23,25,26,27,28,29,31,33,35,37,39,41,42,47,49,51,52,53,55,57,58,59,60,61,62,106,109,153,156,159,161,163,165,168,170,173,174,175,178,179,180,181,182,183,186,187,189,191,193,195,199,201,202,203,204,206,210,212,214,215,216,217,218,220,221,222,232,233,234,246,258", + "endColumns": "90,102,102,104,106,108,108,108,108,108,106,102,118,12,12,104,120,100,12,12,102,118,106,102,12,12,12,12,12,12,118,12,12,12,111,146,12,12,74,88,86,100,102,12,12,12,12,12,12,12,12,12,12,12,88,110,12,100,94,122,128,116,12,98,12,12,12,12,12,12,92,110,55,12,12,12,12,94,90,90,116,12,70,82,12,56,57,12,12", + "endOffsets": "141,244,347,452,559,668,777,886,995,1104,1211,1314,1433,1588,1743,1848,1969,2070,2217,2358,2461,2580,2687,2790,2945,3116,3265,3430,3587,3738,3857,4229,4378,4527,4639,4786,4939,5086,5161,5250,5337,5438,5541,8609,8794,11874,12071,12270,12393,12516,12629,12812,12943,13144,13233,13344,13577,13678,13773,13896,14025,14142,14319,14418,14553,14696,14831,14950,15151,15270,15363,15474,15530,15637,15832,15943,16076,16171,16262,16353,16470,16609,16680,16763,17443,17500,17558,18252,18958" + }, + "to": { + "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,21,23,24,25,26,28,30,31,32,33,34,36,38,40,42,44,46,47,52,54,56,57,58,60,62,63,64,65,66,67,111,114,158,161,164,166,168,170,173,175,178,179,180,183,184,185,186,187,188,191,192,194,196,198,200,204,206,207,208,209,211,215,217,219,220,221,222,223,225,226,227,237,238,239,251", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "354,445,548,651,756,863,972,1081,1190,1299,1408,1515,1618,1737,1892,2047,2152,2273,2374,2521,2662,2765,2884,2991,3094,3249,3420,3569,3734,3891,4042,4161,4533,4682,4831,4943,5090,5243,5390,5465,5554,5641,5742,5845,8913,9098,12178,12375,12574,12697,12820,12933,13116,13247,13448,13537,13648,13881,13982,14077,14200,14329,14446,14623,14722,14857,15000,15135,15254,15455,15574,15667,15778,15834,15941,16136,16247,16380,16475,16566,16657,16774,16913,16984,17067,17747,17804,17862,18556", + "endLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,20,22,23,24,25,27,29,30,31,32,33,35,37,39,41,43,45,46,51,53,55,56,57,59,61,62,63,64,65,66,110,113,157,160,163,165,167,169,172,174,177,178,179,182,183,184,185,186,187,190,191,193,195,197,199,203,205,206,207,208,210,214,216,218,219,220,221,222,224,225,226,236,237,238,250,262", + "endColumns": "90,102,102,104,106,108,108,108,108,108,106,102,118,12,12,104,120,100,12,12,102,118,106,102,12,12,12,12,12,12,118,12,12,12,111,146,12,12,74,88,86,100,102,12,12,12,12,12,12,12,12,12,12,12,88,110,12,100,94,122,128,116,12,98,12,12,12,12,12,12,92,110,55,12,12,12,12,94,90,90,116,12,70,82,12,56,57,12,12", + "endOffsets": "440,543,646,751,858,967,1076,1185,1294,1403,1510,1613,1732,1887,2042,2147,2268,2369,2516,2657,2760,2879,2986,3089,3244,3415,3564,3729,3886,4037,4156,4528,4677,4826,4938,5085,5238,5385,5460,5549,5636,5737,5840,8908,9093,12173,12370,12569,12692,12815,12928,13111,13242,13443,13532,13643,13876,13977,14072,14195,14324,14441,14618,14717,14852,14995,15130,15249,15450,15569,15662,15773,15829,15936,16131,16242,16375,16470,16561,16652,16769,16908,16979,17062,17742,17799,17857,18551,19257" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/values-v21/values-v21.xml", + "from": { + "startLines": "2,10,18,26", + "startColumns": "4,4,4,4", + "startOffsets": "55,484,910,1333", + "endLines": "9,17,25,33", + "endColumns": "10,10,10,10", + "endOffsets": "479,905,1328,1763" + }, + "to": { + "startLines": "267,275,283,291", + "startColumns": "4,4,4,4", + "startOffsets": "19758,20187,20613,21036", + "endLines": "274,282,290,298", + "endColumns": "10,10,10,10", + "endOffsets": "20182,20608,21031,21466" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-v21/values-v21.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,13", + "startColumns": "4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,159,223,290,354,470,596,722,850,1022", + "endLines": "2,3,4,5,6,7,8,9,12,17", + "endColumns": "103,63,66,63,115,125,125,127,12,12", + "endOffsets": "154,218,285,349,465,591,717,845,1017,1355" + }, + "to": { + "startLines": "2,3,4,5,263,264,265,266,299,302", + "startColumns": "4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,159,223,290,19262,19378,19504,19630,21471,21643", + "endLines": "2,3,4,5,263,264,265,266,301,306", + "endColumns": "103,63,66,63,115,125,125,127,12,12", + "endOffsets": "154,218,285,349,19373,19499,19625,19753,21638,21976" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values-v21/values-v21.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-v21/values-v21.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,17,19,20,21,22,24,26,27,28,29,30,32,34,36,38,40,42,43,48,50,52,53,54,56,58,59,60,61,62,63,107,110,154,157,160,162,164,166,169,171,174,175,176,179,180,181,182,183,184,187,188,190,192,194,196,200,202,203,204,205,207,211,213,215,216,217,218,219,221,222,223,233,234,235,247", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,146,249,352,457,564,673,782,891,1000,1109,1216,1319,1438,1593,1748,1853,1974,2075,2222,2363,2466,2585,2692,2795,2950,3121,3270,3435,3592,3743,3862,4234,4383,4532,4644,4791,4944,5091,5166,5255,5342,5443,5546,8614,8799,11879,12076,12275,12398,12521,12634,12817,12948,13149,13238,13349,13582,13683,13778,13901,14030,14147,14324,14423,14558,14701,14836,14955,15156,15275,15368,15479,15535,15642,15837,15948,16081,16176,16267,16358,16475,16614,16685,16768,17448,17505,17563,18257", + "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,16,18,19,20,21,23,25,26,27,28,29,31,33,35,37,39,41,42,47,49,51,52,53,55,57,58,59,60,61,62,106,109,153,156,159,161,163,165,168,170,173,174,175,178,179,180,181,182,183,186,187,189,191,193,195,199,201,202,203,204,206,210,212,214,215,216,217,218,220,221,222,232,233,234,246,258", + "endColumns": "90,102,102,104,106,108,108,108,108,108,106,102,118,12,12,104,120,100,12,12,102,118,106,102,12,12,12,12,12,12,118,12,12,12,111,146,12,12,74,88,86,100,102,12,12,12,12,12,12,12,12,12,12,12,88,110,12,100,94,122,128,116,12,98,12,12,12,12,12,12,92,110,55,12,12,12,12,94,90,90,116,12,70,82,12,56,57,12,12", + "endOffsets": "141,244,347,452,559,668,777,886,995,1104,1211,1314,1433,1588,1743,1848,1969,2070,2217,2358,2461,2580,2687,2790,2945,3116,3265,3430,3587,3738,3857,4229,4378,4527,4639,4786,4939,5086,5161,5250,5337,5438,5541,8609,8794,11874,12071,12270,12393,12516,12629,12812,12943,13144,13233,13344,13577,13678,13773,13896,14025,14142,14319,14418,14553,14696,14831,14950,15151,15270,15363,15474,15530,15637,15832,15943,16076,16171,16262,16353,16470,16609,16680,16763,17443,17500,17558,18252,18958" + }, + "to": { + "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,21,23,24,25,26,28,30,31,32,33,34,36,38,40,42,44,46,47,52,54,56,57,58,60,62,63,64,65,66,67,111,114,158,161,164,166,168,170,173,175,178,179,180,183,184,185,186,187,188,191,192,194,196,198,200,204,206,207,208,209,211,215,217,219,220,221,222,223,225,226,227,237,238,239,251", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "354,445,548,651,756,863,972,1081,1190,1299,1408,1515,1618,1737,1892,2047,2152,2273,2374,2521,2662,2765,2884,2991,3094,3249,3420,3569,3734,3891,4042,4161,4533,4682,4831,4943,5090,5243,5390,5465,5554,5641,5742,5845,8913,9098,12178,12375,12574,12697,12820,12933,13116,13247,13448,13537,13648,13881,13982,14077,14200,14329,14446,14623,14722,14857,15000,15135,15254,15455,15574,15667,15778,15834,15941,16136,16247,16380,16475,16566,16657,16774,16913,16984,17067,17747,17804,17862,18556", + "endLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,20,22,23,24,25,27,29,30,31,32,33,35,37,39,41,43,45,46,51,53,55,56,57,59,61,62,63,64,65,66,110,113,157,160,163,165,167,169,172,174,177,178,179,182,183,184,185,186,187,190,191,193,195,197,199,203,205,206,207,208,210,214,216,218,219,220,221,222,224,225,226,236,237,238,250,262", + "endColumns": "90,102,102,104,106,108,108,108,108,108,106,102,118,12,12,104,120,100,12,12,102,118,106,102,12,12,12,12,12,12,118,12,12,12,111,146,12,12,74,88,86,100,102,12,12,12,12,12,12,12,12,12,12,12,88,110,12,100,94,122,128,116,12,98,12,12,12,12,12,12,92,110,55,12,12,12,12,94,90,90,116,12,70,82,12,56,57,12,12", + "endOffsets": "440,543,646,751,858,967,1076,1185,1294,1403,1510,1613,1732,1887,2042,2147,2268,2369,2516,2657,2760,2879,2986,3089,3244,3415,3564,3729,3886,4037,4156,4528,4677,4826,4938,5085,5238,5385,5460,5549,5636,5737,5840,8908,9093,12173,12370,12569,12692,12815,12928,13111,13242,13443,13532,13643,13876,13977,14072,14195,14324,14441,14618,14717,14852,14995,15130,15249,15450,15569,15662,15773,15829,15936,16131,16242,16375,16470,16561,16652,16769,16908,16979,17062,17742,17799,17857,18551,19257" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/values-v21/values-v21.xml", + "from": { + "startLines": "2,10,18,26", + "startColumns": "4,4,4,4", + "startOffsets": "55,484,910,1333", + "endLines": "9,17,25,33", + "endColumns": "10,10,10,10", + "endOffsets": "479,905,1328,1763" + }, + "to": { + "startLines": "267,275,283,291", + "startColumns": "4,4,4,4", + "startOffsets": "19758,20187,20613,21036", + "endLines": "274,282,290,298", + "endColumns": "10,10,10,10", + "endOffsets": "20182,20608,21031,21466" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-v21/values-v21.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,13", + "startColumns": "4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,159,223,290,354,470,596,722,850,1022", + "endLines": "2,3,4,5,6,7,8,9,12,17", + "endColumns": "103,63,66,63,115,125,125,127,12,12", + "endOffsets": "154,218,285,349,465,591,717,845,1017,1355" + }, + "to": { + "startLines": "2,3,4,5,263,264,265,266,299,302", + "startColumns": "4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,159,223,290,19262,19378,19504,19630,21471,21643", + "endLines": "2,3,4,5,263,264,265,266,301,306", + "endColumns": "103,63,66,63,115,125,125,127,12,12", + "endOffsets": "154,218,285,349,19373,19499,19625,19753,21638,21976" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values-v22.json b/android/build/intermediates/blame/res/release/multi-v2/values-v22.json new file mode 100644 index 000000000..e17752469 --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values-v22.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v22/values-v22.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-v22/values-v22.xml", + "from": { + "startLines": "2,3,4,9", + "startColumns": "4,4,4,4", + "startOffsets": "55,130,217,553", + "endLines": "2,3,8,13", + "endColumns": "74,86,12,12", + "endOffsets": "125,212,548,896" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values-v22/values-v22.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-v22/values-v22.xml", + "from": { + "startLines": "2,3,4,9", + "startColumns": "4,4,4,4", + "startOffsets": "55,130,217,553", + "endLines": "2,3,8,13", + "endColumns": "74,86,12,12", + "endOffsets": "125,212,548,896" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values-v23.json b/android/build/intermediates/blame/res/release/multi-v2/values-v23.json new file mode 100644 index 000000000..0f99abf5d --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values-v23.json @@ -0,0 +1,74 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values-v23/values-v23.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-v23/values-v23.xml", + "from": { + "startLines": "2,3,4,5,6,19,32,33,34,35,36", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,190,325,400,487,1277,2079,2206,2311,2426,2533", + "endLines": "2,3,4,5,18,31,32,33,34,35,36", + "endColumns": "134,134,74,86,12,12,126,104,114,106,112", + "endOffsets": "185,320,395,482,1272,2074,2201,2306,2421,2528,2641" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/cardview-v7-28.0.0.aar/16ec99c8f7b1e40cda987a1cc1a1161e/res/values-v23/values-v23.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endLines": "4", + "endColumns": "12", + "endOffsets": "200" + }, + "to": { + "startLines": "37", + "startColumns": "4", + "startOffsets": "2646", + "endLines": "39", + "endColumns": "12", + "endOffsets": "2791" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v23/values-v23.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-v23/values-v23.xml", + "from": { + "startLines": "2,3,4,5,6,19,32,33,34,35,36", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,190,325,400,487,1277,2079,2206,2311,2426,2533", + "endLines": "2,3,4,5,18,31,32,33,34,35,36", + "endColumns": "134,134,74,86,12,12,126,104,114,106,112", + "endOffsets": "185,320,395,482,1272,2074,2201,2306,2421,2528,2641" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/cardview-v7-28.0.0.aar/16ec99c8f7b1e40cda987a1cc1a1161e/res/values-v23/values-v23.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endLines": "4", + "endColumns": "12", + "endOffsets": "200" + }, + "to": { + "startLines": "37", + "startColumns": "4", + "startOffsets": "2646", + "endLines": "39", + "endColumns": "12", + "endOffsets": "2791" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values-v24.json b/android/build/intermediates/blame/res/release/multi-v2/values-v24.json new file mode 100644 index 000000000..3075e2f6f --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values-v24.json @@ -0,0 +1,34 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values-v24/values-v24.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-v24/values-v24.xml", + "from": { + "startLines": "2,3", + "startColumns": "4,4", + "startOffsets": "55,212", + "endColumns": "156,134", + "endOffsets": "207,342" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v24/values-v24.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-v24/values-v24.xml", + "from": { + "startLines": "2,3", + "startColumns": "4,4", + "startOffsets": "55,212", + "endColumns": "156,134", + "endOffsets": "207,342" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values-v25.json b/android/build/intermediates/blame/res/release/multi-v2/values-v25.json new file mode 100644 index 000000000..870d4b8dd --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values-v25.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values-v25/values-v25.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-v25/values-v25.xml", + "from": { + "startLines": "2,3,4,6", + "startColumns": "4,4,4,4", + "startOffsets": "55,126,209,308", + "endLines": "2,3,5,7", + "endColumns": "70,82,12,12", + "endOffsets": "121,204,303,414" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v25/values-v25.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-v25/values-v25.xml", + "from": { + "startLines": "2,3,4,6", + "startColumns": "4,4,4,4", + "startOffsets": "55,126,209,308", + "endLines": "2,3,5,7", + "endColumns": "70,82,12,12", + "endOffsets": "121,204,303,414" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values-v26.json b/android/build/intermediates/blame/res/release/multi-v2/values-v26.json new file mode 100644 index 000000000..26fba5c59 --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values-v26.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values-v26/values-v26.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-v26/values-v26.xml", + "from": { + "startLines": "2,3,4,8,12,16", + "startColumns": "4,4,4,4,4,4", + "startOffsets": "55,130,217,431,657,896", + "endLines": "2,3,7,11,15,16", + "endColumns": "74,86,12,12,12,92", + "endOffsets": "125,212,426,652,891,984" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v26/values-v26.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-v26/values-v26.xml", + "from": { + "startLines": "2,3,4,8,12,16", + "startColumns": "4,4,4,4,4,4", + "startOffsets": "55,130,217,431,657,896", + "endLines": "2,3,7,11,15,16", + "endColumns": "74,86,12,12,12,92", + "endOffsets": "125,212,426,652,891,984" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values-v28.json b/android/build/intermediates/blame/res/release/multi-v2/values-v28.json new file mode 100644 index 000000000..507ffaf72 --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values-v28.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values-v28/values-v28.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-v28/values-v28.xml", + "from": { + "startLines": "2,3,4,8", + "startColumns": "4,4,4,4", + "startOffsets": "55,130,217,447", + "endLines": "2,3,7,11", + "endColumns": "74,86,12,12", + "endOffsets": "125,212,442,684" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v28/values-v28.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-v28/values-v28.xml", + "from": { + "startLines": "2,3,4,8", + "startColumns": "4,4,4,4", + "startOffsets": "55,130,217,447", + "endLines": "2,3,7,11", + "endColumns": "74,86,12,12", + "endOffsets": "125,212,442,684" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values-vi.json b/android/build/intermediates/blame/res/release/multi-v2/values-vi.json new file mode 100644 index 000000000..229dbdec3 --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values-vi.json @@ -0,0 +1,116 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values-vi/values-vi.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-vi/values-vi.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,219,327,436,520,623,742,819,896,987,1080,1176,1270,1371,1464,1559,1657,1748,1839,1923,2027,2136,2237,2342,2456,2561,2718,2817", + "endColumns": "113,107,108,83,102,118,76,76,90,92,95,93,100,92,94,97,90,90,83,103,108,100,104,113,104,156,98,83", + "endOffsets": "214,322,431,515,618,737,814,891,982,1075,1171,1265,1366,1459,1554,1652,1743,1834,1918,2022,2131,2232,2337,2451,2556,2713,2812,2896" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,37", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,219,327,436,520,623,742,819,896,987,1080,1176,1270,1371,1464,1559,1657,1748,1839,1923,2027,2136,2237,2342,2456,2561,2718,3348", + "endColumns": "113,107,108,83,102,118,76,76,90,92,95,93,100,92,94,97,90,90,83,103,108,100,104,113,104,156,98,83", + "endOffsets": "214,322,431,515,618,737,814,891,982,1075,1171,1265,1366,1459,1554,1652,1743,1834,1918,2022,2131,2232,2337,2451,2556,2713,2812,3427" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-vi/values-vi.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "38", + "startColumns": "4", + "startOffsets": "3432", + "endColumns": "100", + "endOffsets": "3528" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/react-native-0.19.1.aar/4235edd25620896d6b8925991ca39618/res/values-vi/values-vi.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,109,181,260,331,397,453,512", + "endColumns": "53,71,78,70,65,55,58,73", + "endOffsets": "104,176,255,326,392,448,507,581" + }, + "to": { + "startLines": "29,30,31,32,33,34,35,36", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "2817,2871,2943,3022,3093,3159,3215,3274", + "endColumns": "53,71,78,70,65,55,58,73", + "endOffsets": "2866,2938,3017,3088,3154,3210,3269,3343" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-vi/values-vi.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-vi/values-vi.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,219,327,436,520,623,742,819,896,987,1080,1176,1270,1371,1464,1559,1657,1748,1839,1923,2027,2136,2237,2342,2456,2561,2718,2817", + "endColumns": "113,107,108,83,102,118,76,76,90,92,95,93,100,92,94,97,90,90,83,103,108,100,104,113,104,156,98,83", + "endOffsets": "214,322,431,515,618,737,814,891,982,1075,1171,1265,1366,1459,1554,1652,1743,1834,1918,2022,2131,2232,2337,2451,2556,2713,2812,2896" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,37", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,219,327,436,520,623,742,819,896,987,1080,1176,1270,1371,1464,1559,1657,1748,1839,1923,2027,2136,2237,2342,2456,2561,2718,3348", + "endColumns": "113,107,108,83,102,118,76,76,90,92,95,93,100,92,94,97,90,90,83,103,108,100,104,113,104,156,98,83", + "endOffsets": "214,322,431,515,618,737,814,891,982,1075,1171,1265,1366,1459,1554,1652,1743,1834,1918,2022,2131,2232,2337,2451,2556,2713,2812,3427" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-vi/values-vi.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "38", + "startColumns": "4", + "startOffsets": "3432", + "endColumns": "100", + "endOffsets": "3528" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/react-native-0.19.1.aar/4235edd25620896d6b8925991ca39618/res/values-vi/values-vi.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,109,181,260,331,397,453,512", + "endColumns": "53,71,78,70,65,55,58,73", + "endOffsets": "104,176,255,326,392,448,507,581" + }, + "to": { + "startLines": "29,30,31,32,33,34,35,36", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "2817,2871,2943,3022,3093,3159,3215,3274", + "endColumns": "53,71,78,70,65,55,58,73", + "endOffsets": "2866,2938,3017,3088,3154,3210,3269,3343" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values-watch-v20.json b/android/build/intermediates/blame/res/release/multi-v2/values-watch-v20.json new file mode 100644 index 000000000..f196e6478 --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values-watch-v20.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-watch-v20/values-watch-v20.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-watch-v20/values-watch-v20.xml", + "from": { + "startLines": "2,5,8", + "startColumns": "4,4,4", + "startOffsets": "55,214,385", + "endLines": "4,7,10", + "endColumns": "12,12,12", + "endOffsets": "209,380,553" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values-watch-v20/values-watch-v20.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-watch-v20/values-watch-v20.xml", + "from": { + "startLines": "2,5,8", + "startColumns": "4,4,4", + "startOffsets": "55,214,385", + "endLines": "4,7,10", + "endColumns": "12,12,12", + "endOffsets": "209,380,553" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values-watch-v21.json b/android/build/intermediates/blame/res/release/multi-v2/values-watch-v21.json new file mode 100644 index 000000000..2fbee6291 --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values-watch-v21.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values-watch-v21/values-watch-v21.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-watch-v21/values-watch-v21.xml", + "from": { + "startLines": "2,6,10", + "startColumns": "4,4,4", + "startOffsets": "55,271,499", + "endLines": "5,9,13", + "endColumns": "12,12,12", + "endOffsets": "266,494,724" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-watch-v21/values-watch-v21.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-watch-v21/values-watch-v21.xml", + "from": { + "startLines": "2,6,10", + "startColumns": "4,4,4", + "startOffsets": "55,271,499", + "endLines": "5,9,13", + "endColumns": "12,12,12", + "endOffsets": "266,494,724" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values-xlarge-v4.json b/android/build/intermediates/blame/res/release/multi-v2/values-xlarge-v4.json new file mode 100644 index 000000000..3f482e1a6 --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values-xlarge-v4.json @@ -0,0 +1,34 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values-xlarge-v4/values-xlarge-v4.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-xlarge-v4/values-xlarge-v4.xml", + "from": { + "startLines": "2,3,4,5,6,7", + "startColumns": "4,4,4,4,4,4", + "startOffsets": "55,126,197,267,337,405", + "endColumns": "70,70,69,69,67,67", + "endOffsets": "121,192,262,332,400,468" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-xlarge-v4/values-xlarge-v4.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-xlarge-v4/values-xlarge-v4.xml", + "from": { + "startLines": "2,3,4,5,6,7", + "startColumns": "4,4,4,4,4,4", + "startOffsets": "55,126,197,267,337,405", + "endColumns": "70,70,69,69,67,67", + "endOffsets": "121,192,262,332,400,468" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values-zh-rCN.json b/android/build/intermediates/blame/res/release/multi-v2/values-zh-rCN.json new file mode 100644 index 000000000..d66f20fb4 --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values-zh-rCN.json @@ -0,0 +1,116 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values-zh-rCN/values-zh-rCN.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-zh-rCN/values-zh-rCN.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "38", + "startColumns": "4", + "startOffsets": "3254", + "endColumns": "100", + "endOffsets": "3350" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-zh-rCN/values-zh-rCN.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,201,296,396,478,575,681,757,833,924,1017,1115,1211,1306,1399,1494,1586,1677,1768,1846,1942,2038,2133,2230,2325,2423,2572,2666", + "endColumns": "95,94,99,81,96,105,75,75,90,92,97,95,94,92,94,91,90,90,77,95,95,94,96,94,97,148,93,77", + "endOffsets": "196,291,391,473,570,676,752,828,919,1012,1110,1206,1301,1394,1489,1581,1672,1763,1841,1937,2033,2128,2225,2320,2418,2567,2661,2739" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,37", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,201,296,396,478,575,681,757,833,924,1017,1115,1211,1306,1399,1494,1586,1677,1768,1846,1942,2038,2133,2230,2325,2423,2572,3176", + "endColumns": "95,94,99,81,96,105,75,75,90,92,97,95,94,92,94,91,90,90,77,95,95,94,96,94,97,148,93,77", + "endOffsets": "196,291,391,473,570,676,752,828,919,1012,1110,1206,1301,1394,1489,1581,1672,1763,1841,1937,2033,2128,2225,2320,2418,2567,2661,3249" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/react-native-0.19.1.aar/4235edd25620896d6b8925991ca39618/res/values-zh-rCN/values-zh-rCN.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,109,169,248,319,376,432,491", + "endColumns": "53,59,78,70,56,55,58,73", + "endOffsets": "104,164,243,314,371,427,486,560" + }, + "to": { + "startLines": "29,30,31,32,33,34,35,36", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "2666,2720,2780,2859,2930,2987,3043,3102", + "endColumns": "53,59,78,70,56,55,58,73", + "endOffsets": "2715,2775,2854,2925,2982,3038,3097,3171" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-zh-rCN/values-zh-rCN.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-zh-rCN/values-zh-rCN.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "38", + "startColumns": "4", + "startOffsets": "3254", + "endColumns": "100", + "endOffsets": "3350" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-zh-rCN/values-zh-rCN.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,201,296,396,478,575,681,757,833,924,1017,1115,1211,1306,1399,1494,1586,1677,1768,1846,1942,2038,2133,2230,2325,2423,2572,2666", + "endColumns": "95,94,99,81,96,105,75,75,90,92,97,95,94,92,94,91,90,90,77,95,95,94,96,94,97,148,93,77", + "endOffsets": "196,291,391,473,570,676,752,828,919,1012,1110,1206,1301,1394,1489,1581,1672,1763,1841,1937,2033,2128,2225,2320,2418,2567,2661,2739" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,37", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,201,296,396,478,575,681,757,833,924,1017,1115,1211,1306,1399,1494,1586,1677,1768,1846,1942,2038,2133,2230,2325,2423,2572,3176", + "endColumns": "95,94,99,81,96,105,75,75,90,92,97,95,94,92,94,91,90,90,77,95,95,94,96,94,97,148,93,77", + "endOffsets": "196,291,391,473,570,676,752,828,919,1012,1110,1206,1301,1394,1489,1581,1672,1763,1841,1937,2033,2128,2225,2320,2418,2567,2661,3249" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/react-native-0.19.1.aar/4235edd25620896d6b8925991ca39618/res/values-zh-rCN/values-zh-rCN.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,109,169,248,319,376,432,491", + "endColumns": "53,59,78,70,56,55,58,73", + "endOffsets": "104,164,243,314,371,427,486,560" + }, + "to": { + "startLines": "29,30,31,32,33,34,35,36", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "2666,2720,2780,2859,2930,2987,3043,3102", + "endColumns": "53,59,78,70,56,55,58,73", + "endOffsets": "2715,2775,2854,2925,2982,3038,3097,3171" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values-zh-rHK.json b/android/build/intermediates/blame/res/release/multi-v2/values-zh-rHK.json new file mode 100644 index 000000000..d5b2d92b5 --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values-zh-rHK.json @@ -0,0 +1,116 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values-zh-rHK/values-zh-rHK.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/react-native-0.19.1.aar/4235edd25620896d6b8925991ca39618/res/values-zh-rHK/values-zh-rHK.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,109,169,248,319,375,431,490", + "endColumns": "53,59,78,70,55,55,58,73", + "endOffsets": "104,164,243,314,370,426,485,559" + }, + "to": { + "startLines": "29,30,31,32,33,34,35,36", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "2668,2722,2782,2861,2932,2988,3044,3103", + "endColumns": "53,59,78,70,55,55,58,73", + "endOffsets": "2717,2777,2856,2927,2983,3039,3098,3172" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-zh-rHK/values-zh-rHK.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "38", + "startColumns": "4", + "startOffsets": "3255", + "endColumns": "100", + "endOffsets": "3351" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-zh-rHK/values-zh-rHK.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,200,293,393,475,572,680,756,832,924,1018,1110,1206,1302,1396,1492,1584,1676,1768,1846,1942,2038,2133,2230,2325,2423,2574,2668", + "endColumns": "94,92,99,81,96,107,75,75,91,93,91,95,95,93,95,91,91,91,77,95,95,94,96,94,97,150,93,77", + "endOffsets": "195,288,388,470,567,675,751,827,919,1013,1105,1201,1297,1391,1487,1579,1671,1763,1841,1937,2033,2128,2225,2320,2418,2569,2663,2741" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,37", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,200,293,393,475,572,680,756,832,924,1018,1110,1206,1302,1396,1492,1584,1676,1768,1846,1942,2038,2133,2230,2325,2423,2574,3177", + "endColumns": "94,92,99,81,96,107,75,75,91,93,91,95,95,93,95,91,91,91,77,95,95,94,96,94,97,150,93,77", + "endOffsets": "195,288,388,470,567,675,751,827,919,1013,1105,1201,1297,1391,1487,1579,1671,1763,1841,1937,2033,2128,2225,2320,2418,2569,2663,3250" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-zh-rHK/values-zh-rHK.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/react-native-0.19.1.aar/4235edd25620896d6b8925991ca39618/res/values-zh-rHK/values-zh-rHK.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,109,169,248,319,375,431,490", + "endColumns": "53,59,78,70,55,55,58,73", + "endOffsets": "104,164,243,314,370,426,485,559" + }, + "to": { + "startLines": "29,30,31,32,33,34,35,36", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "2668,2722,2782,2861,2932,2988,3044,3103", + "endColumns": "53,59,78,70,55,55,58,73", + "endOffsets": "2717,2777,2856,2927,2983,3039,3098,3172" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-zh-rHK/values-zh-rHK.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "38", + "startColumns": "4", + "startOffsets": "3255", + "endColumns": "100", + "endOffsets": "3351" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-zh-rHK/values-zh-rHK.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,200,293,393,475,572,680,756,832,924,1018,1110,1206,1302,1396,1492,1584,1676,1768,1846,1942,2038,2133,2230,2325,2423,2574,2668", + "endColumns": "94,92,99,81,96,107,75,75,91,93,91,95,95,93,95,91,91,91,77,95,95,94,96,94,97,150,93,77", + "endOffsets": "195,288,388,470,567,675,751,827,919,1013,1105,1201,1297,1391,1487,1579,1671,1763,1841,1937,2033,2128,2225,2320,2418,2569,2663,2741" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,37", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,200,293,393,475,572,680,756,832,924,1018,1110,1206,1302,1396,1492,1584,1676,1768,1846,1942,2038,2133,2230,2325,2423,2574,3177", + "endColumns": "94,92,99,81,96,107,75,75,91,93,91,95,95,93,95,91,91,91,77,95,95,94,96,94,97,150,93,77", + "endOffsets": "195,288,388,470,567,675,751,827,919,1013,1105,1201,1297,1391,1487,1579,1671,1763,1841,1937,2033,2128,2225,2320,2418,2569,2663,3250" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values-zh-rTW.json b/android/build/intermediates/blame/res/release/multi-v2/values-zh-rTW.json new file mode 100644 index 000000000..b0abb1ded --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values-zh-rTW.json @@ -0,0 +1,116 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values-zh-rTW/values-zh-rTW.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/react-native-0.19.1.aar/4235edd25620896d6b8925991ca39618/res/values-zh-rTW/values-zh-rTW.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,109,169,248,319,375,431,490", + "endColumns": "53,59,78,70,55,55,58,73", + "endOffsets": "104,164,243,314,370,426,485,559" + }, + "to": { + "startLines": "29,30,31,32,33,34,35,36", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "2675,2729,2789,2868,2939,2995,3051,3110", + "endColumns": "53,59,78,70,55,55,58,73", + "endOffsets": "2724,2784,2863,2934,2990,3046,3105,3179" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-zh-rTW/values-zh-rTW.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "38", + "startColumns": "4", + "startOffsets": "3262", + "endColumns": "100", + "endOffsets": "3358" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-zh-rTW/values-zh-rTW.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,200,293,393,475,572,680,756,832,924,1018,1116,1212,1308,1402,1498,1590,1682,1774,1852,1948,2044,2139,2236,2331,2431,2581,2675", + "endColumns": "94,92,99,81,96,107,75,75,91,93,97,95,95,93,95,91,91,91,77,95,95,94,96,94,99,149,93,77", + "endOffsets": "195,288,388,470,567,675,751,827,919,1013,1111,1207,1303,1397,1493,1585,1677,1769,1847,1943,2039,2134,2231,2326,2426,2576,2670,2748" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,37", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,200,293,393,475,572,680,756,832,924,1018,1116,1212,1308,1402,1498,1590,1682,1774,1852,1948,2044,2139,2236,2331,2431,2581,3184", + "endColumns": "94,92,99,81,96,107,75,75,91,93,97,95,95,93,95,91,91,91,77,95,95,94,96,94,99,149,93,77", + "endOffsets": "195,288,388,470,567,675,751,827,919,1013,1111,1207,1303,1397,1493,1585,1677,1769,1847,1943,2039,2134,2231,2326,2426,2576,2670,3257" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-zh-rTW/values-zh-rTW.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/react-native-0.19.1.aar/4235edd25620896d6b8925991ca39618/res/values-zh-rTW/values-zh-rTW.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,109,169,248,319,375,431,490", + "endColumns": "53,59,78,70,55,55,58,73", + "endOffsets": "104,164,243,314,370,426,485,559" + }, + "to": { + "startLines": "29,30,31,32,33,34,35,36", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "2675,2729,2789,2868,2939,2995,3051,3110", + "endColumns": "53,59,78,70,55,55,58,73", + "endOffsets": "2724,2784,2863,2934,2990,3046,3105,3179" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-zh-rTW/values-zh-rTW.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "38", + "startColumns": "4", + "startOffsets": "3262", + "endColumns": "100", + "endOffsets": "3358" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-zh-rTW/values-zh-rTW.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,200,293,393,475,572,680,756,832,924,1018,1116,1212,1308,1402,1498,1590,1682,1774,1852,1948,2044,2139,2236,2331,2431,2581,2675", + "endColumns": "94,92,99,81,96,107,75,75,91,93,97,95,95,93,95,91,91,91,77,95,95,94,96,94,99,149,93,77", + "endOffsets": "195,288,388,470,567,675,751,827,919,1013,1111,1207,1303,1397,1493,1585,1677,1769,1847,1943,2039,2134,2231,2326,2426,2576,2670,2748" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,37", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,200,293,393,475,572,680,756,832,924,1018,1116,1212,1308,1402,1498,1590,1682,1774,1852,1948,2044,2139,2236,2331,2431,2581,3184", + "endColumns": "94,92,99,81,96,107,75,75,91,93,97,95,95,93,95,91,91,91,77,95,95,94,96,94,99,149,93,77", + "endOffsets": "195,288,388,470,567,675,751,827,919,1013,1111,1207,1303,1397,1493,1585,1677,1769,1847,1943,2039,2134,2231,2326,2426,2576,2670,3257" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values-zu.json b/android/build/intermediates/blame/res/release/multi-v2/values-zu.json new file mode 100644 index 000000000..16fee3cb0 --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values-zu.json @@ -0,0 +1,68 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values-zu/values-zu.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-zu/values-zu.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2898", + "endColumns": "100", + "endOffsets": "2994" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-zu/values-zu.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,213,320,434,522,625,752,832,912,1003,1096,1190,1284,1385,1478,1573,1667,1758,1851,1937,2041,2147,2245,2352,2458,2564,2721,2817", + "endColumns": "107,106,113,87,102,126,79,79,90,92,93,93,100,92,94,93,90,92,85,103,105,97,106,105,105,156,95,80", + "endOffsets": "208,315,429,517,620,747,827,907,998,1091,1185,1279,1380,1473,1568,1662,1753,1846,1932,2036,2142,2240,2347,2453,2559,2716,2812,2893" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-zu/values-zu.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values-zu/values-zu.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2898", + "endColumns": "100", + "endOffsets": "2994" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values-zu/values-zu.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,213,320,434,522,625,752,832,912,1003,1096,1190,1284,1385,1478,1573,1667,1758,1851,1937,2041,2147,2245,2352,2458,2564,2721,2817", + "endColumns": "107,106,113,87,102,126,79,79,90,92,93,93,100,92,94,93,90,92,85,103,105,97,106,105,105,156,95,80", + "endOffsets": "208,315,429,517,620,747,827,907,998,1091,1185,1279,1380,1473,1568,1662,1753,1846,1932,2036,2142,2240,2347,2453,2559,2716,2812,2893" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/multi-v2/values.json b/android/build/intermediates/blame/res/release/multi-v2/values.json new file mode 100644 index 000000000..331f756fa --- /dev/null +++ b/android/build/intermediates/blame/res/release/multi-v2/values.json @@ -0,0 +1,420 @@ +{ + "logs": [ + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/res/merged/release/values/values.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/recyclerview-v7-28.0.0.aar/b47148040383753515a23239112db10e/res/values/values.xml", + "from": { + "startLines": "30,31,32,33,34,35,36,2", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "1535,1594,1642,1698,1773,1849,1921,55", + "endLines": "30,31,32,33,34,35,36,29", + "endColumns": "58,47,55,74,75,71,65,24", + "endOffsets": "1589,1637,1693,1768,1844,1916,1982,1530" + }, + "to": { + "startLines": "262,263,264,272,273,274,354,4162", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "17230,17289,17337,18004,18079,18155,22935,267540", + "endLines": "262,263,264,272,273,274,354,4189", + "endColumns": "58,47,55,74,75,71,65,24", + "endOffsets": "17284,17332,17388,18074,18150,18222,22996,269015" + } + }, + { + "source": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/openCVLibrary310/build/intermediates/packaged_res/release/values/values.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endLines": "9", + "endColumns": "24", + "endOffsets": "361" + }, + "to": { + "startLines": "3534", + "startColumns": "4", + "startOffsets": "226873", + "endLines": "3541", + "endColumns": "24", + "endOffsets": "227179" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/values/values.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,345,346,347,352,353,357,363,367,368,369,370,381,382,383,387,393,397,398,399,400,430,450,496,526,546,566,612,616,620,634,675,683,693,694,695,696,697,700,701,704,707,708,711,715,720,728,736,745,753,757,765,773,781,789,797,806,815,823,832,835,837,842,844,849,853,857,858,863,864,865,866,867,868,870,871,876,877,878,879,880,881,882,884,888,892,896,900,901,902,903,904,905,906,907,908,911,915,918,922,930,937,946,950,965,973,976,985,990,1001,1009,1012,1021,1028,1029,1048,1051,1057,1060,1069,1072,1075,1078,1081,1084,1088,1091,1100,1103,1111,1116,1124,1129,1133,1134,1145,1152,1156,1160,1161,1165,1173,1177,1182,1187,55,56,57,76,82,92,96,97,98,141,149,150,158,159,160,161,167,168,169,170,171,172,173,174,175,198,217", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "100,156,216,277,332,385,443,491,540,585,638,696,756,814,860,920,973,1019,1069,1116,1174,1232,1291,1351,1413,1475,1537,1599,1661,1723,1784,1846,1908,1961,2023,2097,2160,2228,2309,2373,2439,2509,2579,2649,2719,2786,2849,2914,2980,3033,3109,3175,3262,18372,18426,18505,18583,18656,18721,18784,18850,18921,18992,19054,19123,19189,19256,19323,19379,19430,19483,19535,19589,19660,19723,19782,19844,19903,19976,20043,20103,20166,20241,20313,20384,20440,20511,20568,20625,20691,20755,20826,20883,20936,20999,21051,21109,21176,21242,21308,21389,21464,21520,21573,21634,21692,21742,21791,21840,21889,21951,22003,22048,22129,22183,22236,22290,22341,22390,22441,22502,22563,22625,22675,22716,22766,22814,22876,22927,22976,23045,23106,23162,23233,23298,23367,23418,23481,23551,23620,23690,23752,23822,23892,23967,24026,24084,24146,24191,24234,24281,24326,24377,24425,24491,24553,24616,24688,24745,24802,24862,24920,24990,25047,25192,25313,25417,25504,25656,25808,25956,26037,26115,26416,26582,26737,26839,27116,27209,27316,27659,27766,27995,28404,28636,28736,28841,28960,29583,29730,29849,30084,30499,30737,30849,30970,31103,33241,34757,38048,40182,41710,43254,46541,46787,47046,47850,49610,50060,50775,50848,50935,51020,51119,51314,51406,51579,51741,51836,52005,52248,52541,52950,53364,53824,54242,54483,54913,55348,55758,56180,56590,57047,57501,57917,58383,58565,58633,58977,59057,59413,59563,59707,59791,60156,60254,60362,60460,60570,60686,60812,60908,61285,61395,61519,61657,61767,61889,62017,62155,62317,62533,62689,62893,62977,63081,63175,63289,63401,63525,63621,63701,63890,64096,64289,64499,64931,65352,65777,65974,66922,67443,67566,68203,68424,69239,69708,69891,70487,70947,71052,72313,72463,72880,73045,73725,73884,74046,74201,74397,74564,74786,74946,75323,75482,75810,76027,76602,76952,77201,77298,78004,78442,78683,78872,79006,79197,79834,80084,80387,80602,3338,3636,3892,4389,4823,5480,5823,7362,7710,9607,9929,10060,10766,10903,11055,11257,11962,12082,13231,13798,13927,14060,14220,14395,14537,16324,18162", + "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,344,345,346,351,352,356,362,366,367,368,369,380,381,382,386,392,396,397,398,399,429,449,495,525,545,565,611,615,619,633,674,682,692,693,694,695,696,699,700,703,706,707,710,714,719,727,735,744,752,756,764,772,780,788,796,805,814,822,831,834,836,841,843,848,852,856,857,862,863,864,865,866,867,869,870,875,876,877,878,879,880,881,883,887,891,895,899,900,901,902,903,904,905,906,907,910,914,917,921,929,936,945,949,964,972,975,984,989,1000,1008,1011,1020,1027,1028,1047,1050,1056,1059,1068,1071,1074,1077,1080,1083,1087,1090,1099,1102,1110,1115,1123,1128,1132,1133,1144,1151,1155,1159,1160,1164,1172,1176,1181,1186,1195,55,56,75,81,91,95,96,97,140,148,149,157,158,159,160,166,167,168,169,170,171,172,173,174,197,216,217", + "endColumns": "55,59,60,54,52,57,47,48,44,52,57,59,57,45,59,52,45,49,46,57,57,58,59,61,61,61,61,61,61,60,61,61,52,61,73,62,67,80,63,65,69,69,69,69,66,62,64,65,52,75,65,86,75,53,78,77,72,64,62,65,70,70,61,68,65,66,66,55,50,52,51,53,70,62,58,61,58,72,66,59,62,74,71,70,55,70,56,56,65,63,70,56,52,62,51,57,66,65,65,80,74,55,52,60,57,49,48,48,48,61,51,44,80,53,52,53,50,48,50,60,60,61,49,40,49,47,61,50,48,68,60,55,70,64,68,50,62,69,68,69,61,69,69,74,58,57,61,44,42,46,44,50,47,65,61,62,71,56,56,59,57,69,56,144,120,103,86,151,151,147,80,77,300,165,154,101,10,92,106,10,106,10,10,10,99,104,118,10,146,118,10,10,10,111,120,132,10,10,10,10,10,10,10,10,10,10,10,10,10,72,86,84,98,10,91,10,10,94,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,83,10,97,107,97,109,115,10,95,10,109,123,137,109,121,127,10,10,10,10,10,83,103,93,113,111,123,95,79,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,104,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,96,10,10,10,10,133,10,10,10,10,10,10,297,255,90,243,367,188,1538,347,95,94,130,412,136,151,201,220,119,1148,566,128,132,159,174,141,125,457,209", + "endOffsets": "151,211,272,327,380,438,486,535,580,633,691,751,809,855,915,968,1014,1064,1111,1169,1227,1286,1346,1408,1470,1532,1594,1656,1718,1779,1841,1903,1956,2018,2092,2155,2223,2304,2368,2434,2504,2574,2644,2714,2781,2844,2909,2975,3028,3104,3170,3257,3333,18421,18500,18578,18651,18716,18779,18845,18916,18987,19049,19118,19184,19251,19318,19374,19425,19478,19530,19584,19655,19718,19777,19839,19898,19971,20038,20098,20161,20236,20308,20379,20435,20506,20563,20620,20686,20750,20821,20878,20931,20994,21046,21104,21171,21237,21303,21384,21459,21515,21568,21629,21687,21737,21786,21835,21884,21946,21998,22043,22124,22178,22231,22285,22336,22385,22436,22497,22558,22620,22670,22711,22761,22809,22871,22922,22971,23040,23101,23157,23228,23293,23362,23413,23476,23546,23615,23685,23747,23817,23887,23962,24021,24079,24141,24186,24229,24276,24321,24372,24420,24486,24548,24611,24683,24740,24797,24857,24915,24985,25042,25187,25308,25412,25499,25651,25803,25951,26032,26110,26411,26577,26732,26834,27111,27204,27311,27654,27761,27990,28399,28631,28731,28836,28955,29578,29725,29844,30079,30494,30732,30844,30965,31098,33236,34752,38043,40177,41705,43249,46536,46782,47041,47845,49605,50055,50770,50843,50930,51015,51114,51309,51401,51574,51736,51831,52000,52243,52536,52945,53359,53819,54237,54478,54908,55343,55753,56175,56585,57042,57496,57912,58378,58560,58628,58972,59052,59408,59558,59702,59786,60151,60249,60357,60455,60565,60681,60807,60903,61280,61390,61514,61652,61762,61884,62012,62150,62312,62528,62684,62888,62972,63076,63170,63284,63396,63520,63616,63696,63885,64091,64284,64494,64926,65347,65772,65969,66917,67438,67561,68198,68419,69234,69703,69886,70482,70942,71047,72308,72458,72875,73040,73720,73879,74041,74196,74392,74559,74781,74941,75318,75477,75805,76022,76597,76947,77196,77293,77999,78437,78678,78867,79001,79192,79829,80079,80382,80597,81178,3631,3887,4384,4818,5475,5818,7357,7705,9602,9924,10055,10761,10898,11050,11252,11957,12077,13226,13793,13922,14055,14215,14390,14532,16319,18157,18367" + }, + "to": { + "startLines": "2,3,4,5,7,8,9,10,13,15,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,44,68,69,70,71,72,73,74,75,76,77,78,101,102,103,104,105,106,107,108,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,357,358,365,366,373,374,375,383,386,387,390,391,392,393,394,395,396,397,439,440,461,462,463,464,465,466,467,468,469,470,471,483,747,748,749,754,755,759,765,769,770,771,772,783,784,785,789,795,799,869,870,871,901,921,967,997,1017,1037,1083,1087,1829,1843,1884,1892,2027,2028,2029,2030,2174,2177,2178,2181,2184,2185,2188,2192,2197,2205,2213,2222,2230,2234,2242,2250,2258,2266,2274,2283,2292,2300,2309,2356,2358,2363,2365,2370,2374,2378,2379,2384,2385,2386,2387,2388,2389,2391,2392,2397,2398,2399,2400,2401,2402,2403,2405,2409,2413,2417,2437,2438,2439,2440,2441,2442,2443,2444,2445,2448,2452,2455,2555,2563,2570,2579,2583,2598,2606,2609,2618,2623,2634,2642,2645,2654,2661,2662,2681,2684,2690,2693,2702,2705,2708,2711,2714,2717,2721,2724,2733,2736,2744,2749,2757,2762,2766,2767,2778,2785,2789,2793,2794,2798,2806,2810,2815,2820,3004,3005,3006,3509,3515,3525,3570,3571,3572,3615,3755,3774,3782,3783,3859,3953,3959,3960,4145,4190,4191,4229,4230,4341,4342,4380,4399", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "150,206,266,327,434,487,545,593,758,848,950,1008,1068,1126,1172,1232,1285,1331,1381,1428,1486,1544,1603,1663,1725,1787,1849,1911,1973,2035,2096,2158,2220,2490,4272,4346,4409,4477,4558,4622,4688,4758,4828,4898,4968,6388,6451,6516,6582,6635,6711,6777,6864,14253,14307,14386,14464,14537,14602,14665,14731,14802,14873,14935,15004,15070,15137,15204,15260,15311,15364,15416,15470,15541,15604,15663,15725,15784,15857,15924,15984,16047,16122,16194,16265,16321,16392,16449,16506,16572,16636,16707,16764,16817,16880,16932,16990,18227,18293,18359,18440,18515,18571,18624,18685,18743,18793,18842,18891,18940,19002,19054,19099,19180,19234,19287,19341,19392,19441,19492,19553,19614,19676,19726,19767,19817,19865,19927,19978,20027,20096,20157,20213,20284,20349,20418,20469,20532,20602,20671,20741,20803,20873,20943,21018,23071,23129,23477,23522,23848,23895,23940,24324,24498,24564,24743,24806,24878,24935,24992,25052,25110,25180,28115,28260,31238,31342,31429,31581,31733,31881,31962,32040,32341,32507,32662,33578,50883,50976,51083,51426,51533,51762,52171,52403,52503,52608,52727,53350,53497,53616,53851,54266,54504,59775,59896,60029,62167,63683,66974,69108,70636,72180,75467,75713,122126,122930,124690,125140,135004,135077,135164,135249,146472,146667,146759,146932,147094,147189,147358,147601,147894,148303,148717,149177,149595,149836,150266,150701,151111,151533,151943,152400,152854,153270,153736,157029,157097,157441,157521,157877,158027,158171,158255,158620,158718,158826,158924,159034,159150,159276,159372,159749,159859,159983,160121,160231,160353,160481,160619,160781,160997,161153,162577,162661,162765,162859,162973,163085,163209,163305,163385,163574,163780,163973,171892,172324,172745,173170,173367,174315,174836,174959,175596,175817,176632,177101,177284,177880,178340,178445,179706,179856,180273,180438,181118,181277,181439,181594,181790,181957,182179,182339,182716,182875,183203,183420,183995,184345,184594,184691,185397,185835,186076,186265,186399,186590,187227,187477,187780,187995,198783,199081,199337,225179,225613,226270,229007,230546,230894,232791,240622,241786,242492,242629,247752,255409,256114,256234,266129,269020,269149,271332,271492,278069,278211,280599,282437", + "endLines": "2,3,4,5,7,8,9,10,13,15,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,44,68,69,70,71,72,73,74,75,76,77,78,101,102,103,104,105,106,107,108,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,357,358,365,366,373,374,375,383,386,387,390,391,392,393,394,395,396,397,439,440,461,462,463,464,465,466,467,468,469,470,471,486,747,748,753,754,758,764,768,769,770,771,782,783,784,788,794,798,799,869,870,900,920,966,996,1016,1036,1082,1086,1090,1842,1883,1891,1901,2027,2028,2029,2030,2176,2177,2180,2183,2184,2187,2191,2196,2204,2212,2221,2229,2233,2241,2249,2257,2265,2273,2282,2291,2299,2308,2311,2357,2362,2364,2369,2373,2377,2378,2383,2384,2385,2386,2387,2388,2390,2391,2396,2397,2398,2399,2400,2401,2402,2404,2408,2412,2416,2420,2437,2438,2439,2440,2441,2442,2443,2444,2447,2451,2454,2458,2562,2569,2578,2582,2597,2605,2608,2617,2622,2633,2641,2644,2653,2660,2661,2680,2683,2689,2692,2701,2704,2707,2710,2713,2716,2720,2723,2732,2735,2743,2748,2756,2761,2765,2766,2777,2784,2788,2792,2793,2797,2805,2809,2814,2819,2828,3004,3005,3024,3514,3524,3528,3570,3571,3614,3622,3755,3781,3782,3783,3859,3958,3959,3960,4145,4190,4191,4229,4230,4341,4364,4398,4399", + "endColumns": "55,59,60,54,52,57,47,48,44,52,57,59,57,45,59,52,45,49,46,57,57,58,59,61,61,61,61,61,61,60,61,61,52,61,73,62,67,80,63,65,69,69,69,69,66,62,64,65,52,75,65,86,75,53,78,77,72,64,62,65,70,70,61,68,65,66,66,55,50,52,51,53,70,62,58,61,58,72,66,59,62,74,71,70,55,70,56,56,65,63,70,56,52,62,51,57,66,65,65,80,74,55,52,60,57,49,48,48,48,61,51,44,80,53,52,53,50,48,50,60,60,61,49,40,49,47,61,50,48,68,60,55,70,64,68,50,62,69,68,69,61,69,69,74,58,57,61,44,42,46,44,50,47,65,61,62,71,56,56,59,57,69,56,144,120,103,86,151,151,147,80,77,300,165,154,101,10,92,106,10,106,10,10,10,99,104,118,10,146,118,10,10,10,111,120,132,10,10,10,10,10,10,10,10,10,10,10,10,10,72,86,84,98,10,91,10,10,94,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,83,10,97,107,97,109,115,10,95,10,109,123,137,109,121,127,10,10,10,10,10,83,103,93,113,111,123,95,79,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,104,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,96,10,10,10,10,133,10,10,10,10,10,10,297,255,90,243,367,188,1538,347,95,94,130,412,136,151,201,220,119,1148,566,128,132,159,174,141,125,457,209", + "endOffsets": "201,261,322,377,482,540,588,637,798,896,1003,1063,1121,1167,1227,1280,1326,1376,1423,1481,1539,1598,1658,1720,1782,1844,1906,1968,2030,2091,2153,2215,2268,2547,4341,4404,4472,4553,4617,4683,4753,4823,4893,4963,5030,6446,6511,6577,6630,6706,6772,6859,6935,14302,14381,14459,14532,14597,14660,14726,14797,14868,14930,14999,15065,15132,15199,15255,15306,15359,15411,15465,15536,15599,15658,15720,15779,15852,15919,15979,16042,16117,16189,16260,16316,16387,16444,16501,16567,16631,16702,16759,16812,16875,16927,16985,17052,18288,18354,18435,18510,18566,18619,18680,18738,18788,18837,18886,18935,18997,19049,19094,19175,19229,19282,19336,19387,19436,19487,19548,19609,19671,19721,19762,19812,19860,19922,19973,20022,20091,20152,20208,20279,20344,20413,20464,20527,20597,20666,20736,20798,20868,20938,21013,21072,23124,23186,23517,23560,23890,23935,23986,24367,24559,24621,24801,24873,24930,24987,25047,25105,25175,25232,28255,28376,31337,31424,31576,31728,31876,31957,32035,32336,32502,32657,32759,33850,50971,51078,51421,51528,51757,52166,52398,52498,52603,52722,53345,53492,53611,53846,54261,54499,54611,59891,60024,62162,63678,66969,69103,70631,72175,75462,75708,75967,122925,124685,125135,125850,135072,135159,135244,135343,146662,146754,146927,147089,147184,147353,147596,147889,148298,148712,149172,149590,149831,150261,150696,151106,151528,151938,152395,152849,153265,153731,153913,157092,157436,157516,157872,158022,158166,158250,158615,158713,158821,158919,159029,159145,159271,159367,159744,159854,159978,160116,160226,160348,160476,160614,160776,160992,161148,161352,162656,162760,162854,162968,163080,163204,163300,163380,163569,163775,163968,164178,172319,172740,173165,173362,174310,174831,174954,175591,175812,176627,177096,177279,177875,178335,178440,179701,179851,180268,180433,181113,181272,181434,181589,181785,181952,182174,182334,182711,182870,183198,183415,183990,184340,184589,184686,185392,185830,186071,186260,186394,186585,187222,187472,187775,187990,188571,199076,199332,199829,225608,226265,226608,230541,230889,232786,233108,240748,242487,242624,242776,247949,256109,256229,257378,266691,269144,269277,271487,271662,278206,279993,282432,282642" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/coordinatorlayout-28.0.0.aar/dc70fe0972fdff5c2cfa3b5a67cad3fd/res/values/values.xml", + "from": { + "startLines": "2,102,3,13", + "startColumns": "4,4,4,4", + "startOffsets": "55,5935,116,724", + "endLines": "2,104,12,101", + "endColumns": "60,12,24,24", + "endOffsets": "111,6075,719,5930" + }, + "to": { + "startLines": "11,2829,3656,3666", + "startColumns": "4,4,4,4", + "startOffsets": "642,188576,234803,235411", + "endLines": "11,2831,3665,3754", + "endColumns": "60,12,24,24", + "endOffsets": "698,188716,235406,240617" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values/values.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1453,1461,1462,1466,1470,1474,1479,1485,1492,1496,1500,1505,1509,1513,1517,1521,1525,1529,1535,1539,1545,1549,1555,1559,1564,1568,1571,1575,1581,1585,1591,1595,1601,1604,1608,1612,1616,1620,1624,1625,1626,1627,1630,1633,1636,1639,1643,1644,1645,1646,1647,1650,1652,1654,1656,1661,1662,1666,1672,1676,1677,1679,1690,1691,1695,1701,1705,1706,1707,1711,1738,1742,1743,1747,1775,1943,1969,2138,2164,2195,2203,2209,2223,2245,2250,2255,2265,2274,2283,2287,2294,2302,2309,2310,2319,2322,2325,2329,2333,2337,2340,2341,2345,2349,2359,2364,2371,2377,2378,2381,2385,2390,2392,2394,2397,2400,2402,2406,2409,2416,2419,2422,2426,2428,2432,2434,2436,2438,2442,2450,2458,2470,2476,2485,2488,2499,2502,2507,2508,2513,2571,2630,2631,2641,2650,2651,2653,2657,2660,2663,2666,2669,2672,2675,2678,2682,2685,2688,2691,2695,2698,2702,2706,2707,2708,2709,2710,2711,2712,2713,2714,2715,2716,2717,2718,2719,2720,2721,2722,2723,2724,2725,2726,2728,2730,2731,2732,2733,2734,2735,2736,2737,2739,2740,2742,2743,2745,2747,2748,2750,2751,2752,2753,2754,2755,2757,2758,2759,2760,2761,2762,2764,2766,2768,2769,2770,2771,2772,2773,2774,2775,2776,2777,2778,2779,2780,2782,2783,2784,2785,2786,2787,2789,2793,2797,2798,2799,2800,2801,2802,2803,2804,2806,2808,2810,2812,2814,2815,2816,2817,2819,2821,2823,2824,2825,2826,2827,2828,2829,2830,2831,2832,2833,2834,2837,2838,2839,2840,2842,2844,2845,2847,2848,2850,2852,2854,2855,2856,2857,2858,2859,2860,2861,2862,2863,2864,2865,2867,2868,2869,2870,2872,2873,2874,2875,2876,2878,2880,2882,2884,2885,2886,2887,2888,2889,2890,2891,2892,2893,2894,2895,2896,2897,69,152,155,158,161,175,186,196,223,230,241,271,298,307,344,725,730,756,774,810,816,822,845,986,1006,1012,1016,1022,1059,1071,1098,1103,1169,1184,1249,1268,1294", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,160,205,254,295,350,409,471,552,613,688,764,841,919,1004,1086,1162,1238,1315,1393,1499,1605,1684,1764,1821,1879,1953,2028,2093,2159,2219,2280,2352,2425,2492,2560,2619,2678,2737,2796,2855,2909,2963,3016,3070,3124,3178,3232,3306,3385,3458,3532,3603,3675,3747,3820,3877,3935,4008,4082,4156,4231,4303,4376,4446,4517,4577,70911,70980,71049,71119,71193,71269,71333,71410,71486,71563,71628,71697,71774,71849,71918,71986,72063,72129,72190,72287,72352,72421,72520,72591,72650,72708,72765,72824,72888,72959,73031,73103,73175,73247,73314,73382,73450,73509,73572,73636,73726,73817,73877,73943,74010,74076,74146,74210,74263,74376,74434,74497,74562,74627,74702,74775,74847,74896,74957,75018,75079,75141,75205,75269,75333,75398,75461,75521,75582,75648,75707,75767,75829,75900,75960,76028,76114,76201,76291,76378,76466,76548,76631,76721,76812,76864,76922,76967,77033,77097,77154,77211,77265,77322,77370,77419,77470,77504,77551,77600,77646,77678,77742,77804,77864,77921,77995,78065,78143,78197,78267,78352,78400,78446,78517,78595,78673,78745,78819,78893,78967,79047,79120,79189,79261,79338,79399,79462,79528,79592,79663,79726,79791,79855,79916,79977,80029,80102,80176,80245,80320,80394,80468,80609,80679,80732,80810,80900,80988,81084,81174,81756,81845,82092,82373,82625,82910,83303,83780,84002,84224,84500,84727,84957,85187,85417,85647,85874,86293,86519,86944,87174,87602,87821,88104,88312,88443,88670,89096,89321,89748,89969,90394,90514,90790,91091,91415,91706,92020,92157,92288,92393,92635,92802,93006,93214,93485,93597,93709,93814,93931,94145,94291,94431,94517,94865,94953,95199,95617,95866,95948,96046,96663,96763,97015,97439,97694,97788,97877,98114,100166,100408,100510,100763,102947,113668,115184,126004,127532,129289,129915,130335,131396,132661,132917,133153,133700,134194,134799,134997,135577,136141,136516,136634,137172,137329,137525,137798,138054,138224,138365,138429,138711,138997,139673,139937,140275,140628,140722,140908,141214,141476,141601,141728,141967,142178,142297,142490,142667,143122,143303,143425,143684,143797,143984,144086,144193,144322,144597,145105,145601,146478,146772,147342,147491,148223,148395,148731,148823,149101,153445,157932,157994,158624,159238,159329,159442,159671,159831,159983,160154,160320,160489,160656,160819,161062,161232,161405,161576,161850,162049,162254,162584,162668,162764,162860,162958,163058,163160,163262,163364,163466,163568,163668,163764,163876,164005,164128,164259,164390,164488,164602,164696,164836,164970,165066,165178,165278,165394,165490,165602,165702,165842,165978,166142,166272,166430,166580,166721,166865,167000,167112,167262,167390,167518,167654,167786,167916,168046,168158,168298,168444,168588,168726,168792,168882,168958,169062,169152,169254,169362,169470,169570,169650,169742,169840,169950,170028,170134,170226,170330,170440,170562,170725,170882,170962,171062,171152,171262,171356,171462,171554,171654,171766,171880,171996,172112,172206,172320,172432,172534,172654,172776,172858,172962,173082,173208,173306,173400,173488,173600,173716,173838,173950,174125,174241,174327,174419,174531,174655,174722,174848,174916,175044,175188,175316,175385,175480,175595,175708,175807,175916,176027,176138,176239,176344,176444,176574,176665,176788,176882,176994,177080,177184,177280,177368,177486,177590,177694,177820,177908,178016,178116,178206,178316,178400,178502,178586,178640,178704,178810,178920,179004,4638,9782,9900,10015,10147,10862,11554,12071,13718,14103,14700,16299,17832,18220,20527,40045,40305,41697,42730,44743,45005,45361,46191,52973,54107,54401,54624,54951,57001,57649,59282,59552,63403,64004,67813,69028,70437", + "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1460,1461,1465,1469,1473,1478,1484,1491,1495,1499,1504,1508,1512,1516,1520,1524,1528,1534,1538,1544,1548,1554,1558,1563,1567,1570,1574,1580,1584,1590,1594,1600,1603,1607,1611,1615,1619,1623,1624,1625,1626,1629,1632,1635,1638,1642,1643,1644,1645,1646,1649,1651,1653,1655,1660,1661,1665,1671,1675,1676,1678,1689,1690,1694,1700,1704,1705,1706,1710,1737,1741,1742,1746,1774,1942,1968,2137,2163,2194,2202,2208,2222,2244,2249,2254,2264,2273,2282,2286,2293,2301,2308,2309,2318,2321,2324,2328,2332,2336,2339,2340,2344,2348,2358,2363,2370,2376,2377,2380,2384,2389,2391,2393,2396,2399,2401,2405,2408,2415,2418,2421,2425,2427,2431,2433,2435,2437,2441,2449,2457,2469,2475,2484,2487,2498,2501,2506,2507,2512,2570,2629,2630,2640,2649,2650,2652,2656,2659,2662,2665,2668,2671,2674,2677,2681,2684,2687,2690,2694,2697,2701,2705,2706,2707,2708,2709,2710,2711,2712,2713,2714,2715,2716,2717,2718,2719,2720,2721,2722,2723,2724,2725,2727,2729,2730,2731,2732,2733,2734,2735,2736,2738,2739,2741,2742,2744,2746,2747,2749,2750,2751,2752,2753,2754,2756,2757,2758,2759,2760,2761,2763,2765,2767,2768,2769,2770,2771,2772,2773,2774,2775,2776,2777,2778,2779,2781,2782,2783,2784,2785,2786,2788,2792,2796,2797,2798,2799,2800,2801,2802,2803,2805,2807,2809,2811,2813,2814,2815,2816,2818,2820,2822,2823,2824,2825,2826,2827,2828,2829,2830,2831,2832,2833,2836,2837,2838,2839,2841,2843,2844,2846,2847,2849,2851,2853,2854,2855,2856,2857,2858,2859,2860,2861,2862,2863,2864,2866,2867,2868,2869,2871,2872,2873,2874,2875,2877,2879,2881,2883,2884,2885,2886,2887,2888,2889,2890,2891,2892,2893,2894,2895,2896,2897,151,154,157,160,174,185,195,222,229,240,270,297,306,343,724,729,755,773,809,815,821,844,985,1005,1011,1015,1021,1058,1070,1097,1102,1168,1183,1248,1267,1293,1302", + "endColumns": "54,44,48,40,54,58,61,80,60,74,75,76,77,84,81,75,75,76,77,105,105,78,79,56,57,73,74,64,65,59,60,71,72,66,67,58,58,58,58,58,53,53,52,53,53,53,53,73,78,72,73,70,71,71,72,56,57,72,73,73,74,71,72,69,70,59,60,68,68,69,73,75,63,76,75,76,64,68,76,74,68,67,76,65,60,96,64,68,98,70,58,57,56,58,63,70,71,71,71,71,66,67,67,58,62,63,89,90,59,65,66,65,69,63,52,112,57,62,64,64,74,72,71,48,60,60,60,61,63,63,63,64,62,59,60,65,58,59,61,70,59,67,85,86,89,86,87,81,82,89,90,51,57,44,65,63,56,56,53,56,47,48,50,33,46,48,45,31,63,61,59,56,73,69,77,53,69,84,47,45,70,77,77,71,73,73,73,79,72,68,71,76,60,62,65,63,70,62,64,63,60,60,51,72,73,68,74,73,73,140,69,52,77,89,87,95,89,12,88,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,136,130,104,12,12,12,12,12,111,111,104,116,12,12,12,12,12,87,12,12,12,81,12,12,99,12,12,12,93,88,12,12,12,101,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,117,12,12,12,12,12,12,12,63,12,12,12,12,12,12,93,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,91,12,12,12,61,12,12,90,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,83,95,95,97,99,101,101,101,101,101,99,95,111,128,122,130,130,97,113,93,12,12,95,111,99,115,95,111,99,12,135,12,129,12,12,140,12,134,111,149,127,127,12,131,129,129,111,139,12,12,12,65,89,75,103,89,101,107,107,99,79,91,97,12,77,105,91,103,109,12,12,12,79,99,89,109,93,105,91,12,12,12,12,12,93,113,111,12,12,12,81,103,119,125,97,93,87,111,115,121,111,12,115,85,91,12,12,66,12,67,12,12,12,68,94,114,112,98,108,110,110,100,104,99,12,90,122,93,12,85,103,95,87,12,12,12,12,87,107,99,89,109,83,101,83,53,63,105,109,83,119,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24", + "endOffsets": "155,200,249,290,345,404,466,547,608,683,759,836,914,999,1081,1157,1233,1310,1388,1494,1600,1679,1759,1816,1874,1948,2023,2088,2154,2214,2275,2347,2420,2487,2555,2614,2673,2732,2791,2850,2904,2958,3011,3065,3119,3173,3227,3301,3380,3453,3527,3598,3670,3742,3815,3872,3930,4003,4077,4151,4226,4298,4371,4441,4512,4572,4633,70975,71044,71114,71188,71264,71328,71405,71481,71558,71623,71692,71769,71844,71913,71981,72058,72124,72185,72282,72347,72416,72515,72586,72645,72703,72760,72819,72883,72954,73026,73098,73170,73242,73309,73377,73445,73504,73567,73631,73721,73812,73872,73938,74005,74071,74141,74205,74258,74371,74429,74492,74557,74622,74697,74770,74842,74891,74952,75013,75074,75136,75200,75264,75328,75393,75456,75516,75577,75643,75702,75762,75824,75895,75955,76023,76109,76196,76286,76373,76461,76543,76626,76716,76807,76859,76917,76962,77028,77092,77149,77206,77260,77317,77365,77414,77465,77499,77546,77595,77641,77673,77737,77799,77859,77916,77990,78060,78138,78192,78262,78347,78395,78441,78512,78590,78668,78740,78814,78888,78962,79042,79115,79184,79256,79333,79394,79457,79523,79587,79658,79721,79786,79850,79911,79972,80024,80097,80171,80240,80315,80389,80463,80604,80674,80727,80805,80895,80983,81079,81169,81751,81840,82087,82368,82620,82905,83298,83775,83997,84219,84495,84722,84952,85182,85412,85642,85869,86288,86514,86939,87169,87597,87816,88099,88307,88438,88665,89091,89316,89743,89964,90389,90509,90785,91086,91410,91701,92015,92152,92283,92388,92630,92797,93001,93209,93480,93592,93704,93809,93926,94140,94286,94426,94512,94860,94948,95194,95612,95861,95943,96041,96658,96758,97010,97434,97689,97783,97872,98109,100161,100403,100505,100758,102942,113663,115179,125999,127527,129284,129910,130330,131391,132656,132912,133148,133695,134189,134794,134992,135572,136136,136511,136629,137167,137324,137520,137793,138049,138219,138360,138424,138706,138992,139668,139932,140270,140623,140717,140903,141209,141471,141596,141723,141962,142173,142292,142485,142662,143117,143298,143420,143679,143792,143979,144081,144188,144317,144592,145100,145596,146473,146767,147337,147486,148218,148390,148726,148818,149096,153440,157927,157989,158619,159233,159324,159437,159666,159826,159978,160149,160315,160484,160651,160814,161057,161227,161400,161571,161845,162044,162249,162579,162663,162759,162855,162953,163053,163155,163257,163359,163461,163563,163663,163759,163871,164000,164123,164254,164385,164483,164597,164691,164831,164965,165061,165173,165273,165389,165485,165597,165697,165837,165973,166137,166267,166425,166575,166716,166860,166995,167107,167257,167385,167513,167649,167781,167911,168041,168153,168293,168439,168583,168721,168787,168877,168953,169057,169147,169249,169357,169465,169565,169645,169737,169835,169945,170023,170129,170221,170325,170435,170557,170720,170877,170957,171057,171147,171257,171351,171457,171549,171649,171761,171875,171991,172107,172201,172315,172427,172529,172649,172771,172853,172957,173077,173203,173301,173395,173483,173595,173711,173833,173945,174120,174236,174322,174414,174526,174650,174717,174843,174911,175039,175183,175311,175380,175475,175590,175703,175802,175911,176022,176133,176234,176339,176439,176569,176660,176783,176877,176989,177075,177179,177275,177363,177481,177585,177689,177815,177903,178011,178111,178201,178311,178395,178497,178581,178635,178699,178805,178915,178999,179119,9777,9895,10010,10142,10857,11549,12066,13713,14098,14695,16294,17827,18215,20522,40040,40300,41692,42725,44738,45000,45356,46186,52968,54102,54396,54619,54946,56996,57644,59277,59547,63398,63999,67808,69023,70432,70906" + }, + "to": { + "startLines": "12,14,16,40,41,42,43,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,260,261,265,266,267,268,269,270,271,338,339,340,341,342,343,344,345,348,349,350,351,353,360,361,367,382,384,385,388,389,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,472,474,475,476,477,478,487,495,496,500,504,515,520,526,533,537,541,546,550,554,558,562,566,570,576,580,586,590,596,600,605,609,612,616,622,626,632,636,642,645,649,653,657,661,665,666,667,668,671,674,677,680,684,685,686,687,688,691,693,695,697,702,703,707,713,717,718,720,731,732,736,742,746,800,801,805,832,836,837,841,1091,1259,1285,1454,1480,1511,1519,1525,1539,1561,1566,1571,1581,1590,1599,1603,1610,1618,1625,1626,1635,1638,1641,1645,1649,1653,1656,1657,1661,1665,1675,1680,1687,1693,1694,1697,1701,1706,1708,1710,1713,1716,1718,1722,1725,1732,1735,1738,1742,1744,1748,1750,1752,1754,1758,1766,1774,1786,1792,1801,1804,1815,1818,1823,1824,1910,1968,2031,2032,2042,2051,2052,2054,2058,2061,2064,2067,2070,2073,2076,2079,2083,2086,2089,2092,2096,2099,2103,2107,2108,2109,2110,2111,2112,2113,2114,2115,2116,2117,2118,2119,2120,2121,2122,2123,2124,2125,2126,2127,2129,2131,2132,2133,2134,2135,2136,2137,2138,2140,2141,2143,2144,2146,2148,2149,2151,2152,2153,2154,2155,2156,2158,2159,2160,2161,2162,2312,2314,2316,2319,2320,2321,2322,2323,2324,2325,2326,2327,2328,2329,2330,2331,2333,2334,2335,2336,2337,2338,2340,2344,2430,2431,2432,2433,2434,2435,2436,2459,2461,2463,2465,2467,2469,2470,2471,2472,2474,2476,2478,2479,2480,2481,2482,2483,2484,2485,2486,2487,2488,2489,2492,2493,2494,2495,2497,2499,2500,2502,2503,2505,2507,2509,2510,2511,2512,2513,2514,2515,2516,2517,2518,2519,2520,2522,2523,2524,2525,2527,2528,2529,2530,2531,2533,2535,2537,2539,2540,2541,2542,2543,2544,2545,2546,2547,2548,2549,2550,2551,2552,2832,2915,2918,2921,2924,2938,2949,2959,2986,2993,3025,3055,3082,3091,3128,3529,3630,3756,3905,3941,3947,3961,3984,4125,4146,4152,4156,4192,4231,4243,4270,4275,4365,4400,4465,4484,4510", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "703,803,901,2273,2314,2369,2428,2552,2633,2694,2769,2845,2922,3000,3085,3167,3243,3319,3396,3474,3580,3686,3765,3845,3902,5035,5109,5184,5249,5315,5375,5436,5508,5581,5648,5716,5775,5834,5893,5952,6011,6065,6119,6172,6226,6280,6334,7072,7146,7225,7298,7372,7443,7515,7587,7660,7717,7775,7848,7922,7996,8071,8143,8216,8286,8357,8417,8478,8547,8616,8686,8760,8836,8900,8977,9053,9130,9195,9264,9341,9416,9485,9553,9630,9696,9757,9854,9919,9988,10087,10158,10217,10275,10332,10391,10455,10526,10598,10670,10742,10814,10881,10949,11017,11076,11139,11203,11293,11384,11444,11510,11577,11643,11713,11777,11830,11943,12001,12064,12129,12194,12269,12342,12414,12463,12524,12585,12646,12708,12772,12836,12900,12965,13028,13088,13149,13215,13274,13334,13396,13467,13527,17057,17143,17393,17483,17570,17658,17740,17823,17913,22055,22107,22165,22210,22276,22340,22397,22454,22656,22713,22761,22810,22901,23234,23281,23565,24292,24372,24436,24626,24686,25307,25381,25451,25529,25583,25653,25738,25786,25832,25903,25981,26059,26131,26205,26279,26353,26433,26506,26575,26647,26724,26785,26848,26914,26978,27049,27112,27177,27241,27302,27363,27415,27488,27562,27631,27706,27780,27854,27995,32764,32888,32966,33056,33144,33240,33855,34437,34526,34773,35054,35720,36005,36398,36875,37097,37319,37595,37822,38052,38282,38512,38742,38969,39388,39614,40039,40269,40697,40916,41199,41407,41538,41765,42191,42416,42843,43064,43489,43609,43885,44186,44510,44801,45115,45252,45383,45488,45730,45897,46101,46309,46580,46692,46804,46909,47026,47240,47386,47526,47612,47960,48048,48294,48712,48961,49043,49141,49758,49858,50110,50534,50789,54616,54705,54942,56994,57236,57338,57591,75972,86693,88209,99029,100557,102314,102940,103360,104421,105686,105942,106178,106725,107219,107824,108022,108602,109166,109541,109659,110197,110354,110550,110823,111079,111249,111390,111454,111736,112022,112698,112962,113300,113653,113747,113933,114239,114501,114626,114753,114992,115203,115322,115515,115692,116147,116328,116450,116709,116822,117009,117111,117218,117347,117622,118130,118626,119503,119797,120367,120516,121248,121420,121756,121848,126173,130517,135348,135410,136040,136654,136745,136858,137087,137247,137399,137570,137736,137905,138072,138235,138478,138648,138821,138992,139266,139465,139670,140000,140084,140180,140276,140374,140474,140576,140678,140780,140882,140984,141084,141180,141292,141421,141544,141675,141806,141904,142018,142112,142252,142386,142482,142594,142694,142810,142906,143018,143118,143258,143394,143558,143688,143846,143996,144137,144281,144416,144528,144678,144806,144934,145070,145202,145332,145462,145574,153918,154064,154208,154372,154438,154528,154604,154708,154798,154900,155008,155116,155216,155296,155388,155486,155596,155674,155780,155872,155976,156086,156208,156371,161905,161985,162085,162175,162285,162379,162485,164183,164283,164395,164509,164625,164741,164835,164949,165061,165163,165283,165405,165487,165591,165711,165837,165935,166029,166117,166229,166345,166467,166579,166754,166870,166956,167048,167160,167284,167351,167477,167545,167673,167817,167945,168014,168109,168224,168337,168436,168545,168656,168767,168868,168973,169073,169203,169294,169417,169511,169623,169709,169813,169909,169997,170115,170219,170323,170449,170537,170645,170745,170835,170945,171029,171131,171215,171269,171333,171439,171549,171633,188721,193865,193983,194098,194230,194945,195637,196154,197801,198186,199834,201433,202966,203354,205661,226613,233411,240753,252778,254791,255053,257383,258213,264995,266696,266990,267213,269282,271667,272315,273948,274218,279998,282647,286456,287671,289080", + "endLines": "12,14,16,40,41,42,43,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,260,261,265,266,267,268,269,270,271,338,339,340,341,342,343,344,345,348,349,350,351,353,360,361,367,382,384,385,388,389,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,472,474,475,476,477,478,494,495,499,503,507,519,525,532,536,540,545,549,553,557,561,565,569,575,579,585,589,595,599,604,608,611,615,621,625,631,635,641,644,648,652,656,660,664,665,666,667,670,673,676,679,683,684,685,686,687,690,692,694,696,701,702,706,712,716,717,719,730,731,735,741,745,746,800,804,831,835,836,840,868,1258,1284,1453,1479,1510,1518,1524,1538,1560,1565,1570,1580,1589,1598,1602,1609,1617,1624,1625,1634,1637,1640,1644,1648,1652,1655,1656,1660,1664,1674,1679,1686,1692,1693,1696,1700,1705,1707,1709,1712,1715,1717,1721,1724,1731,1734,1737,1741,1743,1747,1749,1751,1753,1757,1765,1773,1785,1791,1800,1803,1814,1817,1822,1823,1828,1967,2026,2031,2041,2050,2051,2053,2057,2060,2063,2066,2069,2072,2075,2078,2082,2085,2088,2091,2095,2098,2102,2106,2107,2108,2109,2110,2111,2112,2113,2114,2115,2116,2117,2118,2119,2120,2121,2122,2123,2124,2125,2126,2128,2130,2131,2132,2133,2134,2135,2136,2137,2139,2140,2142,2143,2145,2147,2148,2150,2151,2152,2153,2154,2155,2157,2158,2159,2160,2161,2162,2313,2315,2317,2319,2320,2321,2322,2323,2324,2325,2326,2327,2328,2329,2330,2332,2333,2334,2335,2336,2337,2339,2343,2347,2430,2431,2432,2433,2434,2435,2436,2460,2462,2464,2466,2468,2469,2470,2471,2473,2475,2477,2478,2479,2480,2481,2482,2483,2484,2485,2486,2487,2488,2491,2492,2493,2494,2496,2498,2499,2501,2502,2504,2506,2508,2509,2510,2511,2512,2513,2514,2515,2516,2517,2518,2519,2521,2522,2523,2524,2526,2527,2528,2529,2530,2532,2534,2536,2538,2539,2540,2541,2542,2543,2544,2545,2546,2547,2548,2549,2550,2551,2552,2914,2917,2920,2923,2937,2948,2958,2985,2992,3003,3054,3081,3090,3127,3508,3533,3655,3773,3940,3946,3952,3983,4124,4144,4151,4155,4161,4228,4242,4269,4274,4340,4379,4464,4483,4509,4518", + "endColumns": "54,44,48,40,54,58,61,80,60,74,75,76,77,84,81,75,75,76,77,105,105,78,79,56,57,73,74,64,65,59,60,71,72,66,67,58,58,58,58,58,53,53,52,53,53,53,53,73,78,72,73,70,71,71,72,56,57,72,73,73,74,71,72,69,70,59,60,68,68,69,73,75,63,76,75,76,64,68,76,74,68,67,76,65,60,96,64,68,98,70,58,57,56,58,63,70,71,71,71,71,66,67,67,58,62,63,89,90,59,65,66,65,69,63,52,112,57,62,64,64,74,72,71,48,60,60,60,61,63,63,63,64,62,59,60,65,58,59,61,70,59,67,85,86,89,86,87,81,82,89,90,51,57,44,65,63,56,56,53,56,47,48,50,33,46,48,45,31,63,61,59,56,73,69,77,53,69,84,47,45,70,77,77,71,73,73,73,79,72,68,71,76,60,62,65,63,70,62,64,63,60,60,51,72,73,68,74,73,73,140,69,52,77,89,87,95,89,12,88,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,136,130,104,12,12,12,12,12,111,111,104,116,12,12,12,12,12,87,12,12,12,81,12,12,99,12,12,12,93,88,12,12,12,101,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,117,12,12,12,12,12,12,12,63,12,12,12,12,12,12,93,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,91,12,12,12,61,12,12,90,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,83,95,95,97,99,101,101,101,101,101,99,95,111,128,122,130,130,97,113,93,12,12,95,111,99,115,95,111,99,12,135,12,129,12,12,140,12,134,111,149,127,127,12,131,129,129,111,139,12,12,12,65,89,75,103,89,101,107,107,99,79,91,97,12,77,105,91,103,109,12,12,12,79,99,89,109,93,105,91,12,12,12,12,12,93,113,111,12,12,12,81,103,119,125,97,93,87,111,115,121,111,12,115,85,91,12,12,66,12,67,12,12,12,68,94,114,112,98,108,110,110,100,104,99,12,90,122,93,12,85,103,95,87,12,12,12,12,87,107,99,89,109,83,101,83,53,63,105,109,83,119,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24", + "endOffsets": "753,843,945,2309,2364,2423,2485,2628,2689,2764,2840,2917,2995,3080,3162,3238,3314,3391,3469,3575,3681,3760,3840,3897,3955,5104,5179,5244,5310,5370,5431,5503,5576,5643,5711,5770,5829,5888,5947,6006,6060,6114,6167,6221,6275,6329,6383,7141,7220,7293,7367,7438,7510,7582,7655,7712,7770,7843,7917,7991,8066,8138,8211,8281,8352,8412,8473,8542,8611,8681,8755,8831,8895,8972,9048,9125,9190,9259,9336,9411,9480,9548,9625,9691,9752,9849,9914,9983,10082,10153,10212,10270,10327,10386,10450,10521,10593,10665,10737,10809,10876,10944,11012,11071,11134,11198,11288,11379,11439,11505,11572,11638,11708,11772,11825,11938,11996,12059,12124,12189,12264,12337,12409,12458,12519,12580,12641,12703,12767,12831,12895,12960,13023,13083,13144,13210,13269,13329,13391,13462,13522,13590,17138,17225,17478,17565,17653,17735,17818,17908,17999,22102,22160,22205,22271,22335,22392,22449,22503,22708,22756,22805,22856,22930,23276,23325,23606,24319,24431,24493,24681,24738,25376,25446,25524,25578,25648,25733,25781,25827,25898,25976,26054,26126,26200,26274,26348,26428,26501,26570,26642,26719,26780,26843,26909,26973,27044,27107,27172,27236,27297,27358,27410,27483,27557,27626,27701,27775,27849,27990,28060,32812,32961,33051,33139,33235,33325,34432,34521,34768,35049,35301,36000,36393,36870,37092,37314,37590,37817,38047,38277,38507,38737,38964,39383,39609,40034,40264,40692,40911,41194,41402,41533,41760,42186,42411,42838,43059,43484,43604,43880,44181,44505,44796,45110,45247,45378,45483,45725,45892,46096,46304,46575,46687,46799,46904,47021,47235,47381,47521,47607,47955,48043,48289,48707,48956,49038,49136,49753,49853,50105,50529,50784,50878,54700,54937,56989,57231,57333,57586,59770,86688,88204,99024,100552,102309,102935,103355,104416,105681,105937,106173,106720,107214,107819,108017,108597,109161,109536,109654,110192,110349,110545,110818,111074,111244,111385,111449,111731,112017,112693,112957,113295,113648,113742,113928,114234,114496,114621,114748,114987,115198,115317,115510,115687,116142,116323,116445,116704,116817,117004,117106,117213,117342,117617,118125,118621,119498,119792,120362,120511,121243,121415,121751,121843,122121,130512,134999,135405,136035,136649,136740,136853,137082,137242,137394,137565,137731,137900,138067,138230,138473,138643,138816,138987,139261,139460,139665,139995,140079,140175,140271,140369,140469,140571,140673,140775,140877,140979,141079,141175,141287,141416,141539,141670,141801,141899,142013,142107,142247,142381,142477,142589,142689,142805,142901,143013,143113,143253,143389,143553,143683,143841,143991,144132,144276,144411,144523,144673,144801,144929,145065,145197,145327,145457,145569,145709,154059,154203,154341,154433,154523,154599,154703,154793,154895,155003,155111,155211,155291,155383,155481,155591,155669,155775,155867,155971,156081,156203,156366,156523,161980,162080,162170,162280,162374,162480,162572,164278,164390,164504,164620,164736,164830,164944,165056,165158,165278,165400,165482,165586,165706,165832,165930,166024,166112,166224,166340,166462,166574,166749,166865,166951,167043,167155,167279,167346,167472,167540,167668,167812,167940,168009,168104,168219,168332,168431,168540,168651,168762,168863,168968,169068,169198,169289,169412,169506,169618,169704,169808,169904,169992,170110,170214,170318,170444,170532,170640,170740,170830,170940,171024,171126,171210,171264,171328,171434,171544,171628,171748,193860,193978,194093,194225,194940,195632,196149,197796,198181,198778,201428,202961,203349,205656,225174,226868,234798,241781,254786,255048,255404,258208,264990,266124,266985,267208,267535,271327,272310,273943,274213,278064,280594,286451,287666,289075,289549" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/markdownview-1.1.0.aar/0d0782af6729d6787d3ca374e99d6326/res/values/values.xml", + "from": { + "startLines": "4", + "startColumns": "4", + "startOffsets": "206", + "endColumns": "49", + "endOffsets": "251" + }, + "to": { + "startLines": "438", + "startColumns": "4", + "startOffsets": "28065", + "endColumns": "49", + "endOffsets": "28110" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/transition-28.0.0.aar/a5bd647f16cacafec51241cb19612a3f/res/values/values.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11", + "startColumns": "4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,95,138,185,240,285,339,391,440,501", + "endColumns": "39,42,46,54,44,53,51,48,60,49", + "endOffsets": "90,133,180,235,280,334,386,435,496,546" + }, + "to": { + "startLines": "352,359,362,363,364,377,378,379,380,381", + "startColumns": "4,4,4,4,4,4,4,4,4,4", + "startOffsets": "22861,23191,23330,23377,23432,24026,24080,24132,24181,24242", + "endColumns": "39,42,46,54,44,53,51,48,60,49", + "endOffsets": "22896,23229,23372,23427,23472,24075,24127,24176,24237,24287" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/drawee-0.8.1.aar/78b7bb9a3158fc049917f2f4c889eab9/res/values/values.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "2686", + "endOffsets": "2737" + }, + "to": { + "startLines": "3860", + "startColumns": "4", + "startOffsets": "247954", + "endColumns": "2686", + "endOffsets": "250636" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/cardview-v7-28.0.0.aar/16ec99c8f7b1e40cda987a1cc1a1161e/res/values/values.xml", + "from": { + "startLines": "2,3,4,5,6,35,36,37,38,45,47,50,7", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,107,168,230,292,2179,2238,2295,2349,2763,2827,2953,356", + "endLines": "2,3,4,5,6,35,36,37,44,46,49,52,34", + "endColumns": "51,60,61,61,63,58,56,53,12,12,12,12,24", + "endOffsets": "102,163,225,287,351,2233,2290,2344,2758,2822,2948,3076,2174" + }, + "to": { + "startLines": "6,63,64,65,66,206,207,208,508,1902,1904,1907,3542", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "382,3960,4021,4083,4145,13595,13654,13711,35306,125855,125919,126045,227184", + "endLines": "6,63,64,65,66,206,207,208,514,1903,1906,1909,3569", + "endColumns": "51,60,61,61,63,58,56,53,12,12,12,12,24", + "endOffsets": "429,4016,4078,4140,4204,13649,13706,13760,35715,125914,126040,126168,229002" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/react-native-0.19.1.aar/4235edd25620896d6b8925991ca39618/res/values/values.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,27,28,29,36,39", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,118,219,330,440,554,684,819,1541,1652,1755,1863,1976,2086,2201,2297,2429,2554,2653,2767,2872,2975,3223,3249,3284,3750,3933", + "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,26,27,28,35,38,44", + "endColumns": "62,100,110,109,113,129,134,721,110,102,107,112,109,114,95,131,124,98,113,104,102,10,25,34,10,12,12", + "endOffsets": "113,214,325,435,549,679,814,1536,1647,1750,1858,1971,2081,2196,2292,2424,2549,2648,2762,2867,2970,3218,3244,3279,3745,3928,4293" + }, + "to": { + "startLines": "67,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,479,2318,2348,2349,2421,2424", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "4209,28381,28482,28593,28703,28817,28947,29082,29804,29915,30018,30126,30239,30349,30464,30560,30692,30817,30916,31030,31135,33330,154346,156528,156563,161357,161540", + "endLines": "67,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,482,2318,2348,2355,2423,2429", + "endColumns": "62,100,110,109,113,129,134,721,110,102,107,112,109,114,95,131,124,98,113,104,102,10,25,34,10,12,12", + "endOffsets": "4267,28477,28588,28698,28812,28942,29077,29799,29910,30013,30121,30234,30344,30459,30555,30687,30812,30911,31025,31130,31233,33573,154367,156558,157024,161535,161900" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values/values.xml", + "from": { + "startLines": "2,3,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,171,172,176,177,178,6,13,56,88,125", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,124,7725,7795,7863,7935,8005,8066,8140,8213,8274,8335,8397,8461,8523,8584,8652,8752,8812,8878,8951,9020,9077,9129,9191,9263,9339,9374,9409,9459,9520,9577,9611,9646,9681,9751,9822,9939,10140,10250,10451,10580,10652,319,617,3523,5588,7348", + "endLines": "2,3,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,170,171,175,176,177,178,12,55,87,124,131", + "endColumns": "68,62,69,67,71,69,60,73,72,60,60,61,63,61,60,67,99,59,65,72,68,56,51,61,71,75,34,34,49,60,56,33,34,34,69,70,116,12,109,12,128,71,66,24,24,24,24,24", + "endOffsets": "119,182,7790,7858,7930,8000,8061,8135,8208,8269,8330,8392,8456,8518,8579,8647,8747,8807,8873,8946,9015,9072,9124,9186,9258,9334,9369,9404,9454,9515,9572,9606,9641,9676,9746,9817,9934,10135,10245,10446,10575,10647,10714,612,3518,5583,7343,7720" + }, + "to": { + "startLines": "109,110,209,210,211,212,213,214,215,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,346,347,355,356,368,369,370,371,372,376,398,473,2163,2164,2168,2169,2173,2553,2554,3623,3784,3827,3861,3898", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "6940,7009,13765,13835,13903,13975,14045,14106,14180,21077,21138,21199,21261,21325,21387,21448,21516,21616,21676,21742,21815,21884,21941,21993,22508,22580,23001,23036,23611,23661,23722,23779,23813,23991,25237,32817,145714,145831,146032,146142,146343,171753,171825,233113,242781,245687,250641,252401", + "endLines": "109,110,209,210,211,212,213,214,215,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,346,347,355,356,368,369,370,371,372,376,398,473,2163,2167,2168,2172,2173,2553,2554,3629,3826,3858,3897,3904", + "endColumns": "68,62,69,67,71,69,60,73,72,60,60,61,63,61,60,67,99,59,65,72,68,56,51,61,71,75,34,34,49,60,56,33,34,34,69,70,116,12,109,12,128,71,66,24,24,24,24,24", + "endOffsets": "7004,7067,13830,13898,13970,14040,14101,14175,14248,21133,21194,21256,21320,21382,21443,21511,21611,21671,21737,21810,21879,21936,21988,22050,22575,22651,23031,23066,23656,23717,23774,23808,23843,24021,25302,32883,145826,146027,146137,146338,146467,171820,171887,233406,245682,247747,252396,252773" + } + } + ] + }, + { + "outputFile": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values/values.xml", + "map": [ + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/recyclerview-v7-28.0.0.aar/b47148040383753515a23239112db10e/res/values/values.xml", + "from": { + "startLines": "30,31,32,33,34,35,36,2", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "1535,1594,1642,1698,1773,1849,1921,55", + "endLines": "30,31,32,33,34,35,36,29", + "endColumns": "58,47,55,74,75,71,65,24", + "endOffsets": "1589,1637,1693,1768,1844,1916,1982,1530" + }, + "to": { + "startLines": "262,263,264,272,273,274,354,4162", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "17230,17289,17337,18004,18079,18155,22935,267540", + "endLines": "262,263,264,272,273,274,354,4189", + "endColumns": "58,47,55,74,75,71,65,24", + "endOffsets": "17284,17332,17388,18074,18150,18222,22996,269015" + } + }, + { + "source": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/openCVLibrary310/build/intermediates/packaged_res/release/values/values.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endLines": "9", + "endColumns": "24", + "endOffsets": "361" + }, + "to": { + "startLines": "3534", + "startColumns": "4", + "startOffsets": "226873", + "endLines": "3541", + "endColumns": "24", + "endOffsets": "227179" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/values/values.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,345,346,347,352,353,357,363,367,368,369,370,381,382,383,387,393,397,398,399,400,430,450,496,526,546,566,612,616,620,634,675,683,693,694,695,696,697,700,701,704,707,708,711,715,720,728,736,745,753,757,765,773,781,789,797,806,815,823,832,835,837,842,844,849,853,857,858,863,864,865,866,867,868,870,871,876,877,878,879,880,881,882,884,888,892,896,900,901,902,903,904,905,906,907,908,911,915,918,922,930,937,946,950,965,973,976,985,990,1001,1009,1012,1021,1028,1029,1048,1051,1057,1060,1069,1072,1075,1078,1081,1084,1088,1091,1100,1103,1111,1116,1124,1129,1133,1134,1145,1152,1156,1160,1161,1165,1173,1177,1182,1187,55,56,57,76,82,92,96,97,98,141,149,150,158,159,160,161,167,168,169,170,171,172,173,174,175,198,217", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "100,156,216,277,332,385,443,491,540,585,638,696,756,814,860,920,973,1019,1069,1116,1174,1232,1291,1351,1413,1475,1537,1599,1661,1723,1784,1846,1908,1961,2023,2097,2160,2228,2309,2373,2439,2509,2579,2649,2719,2786,2849,2914,2980,3033,3109,3175,3262,18372,18426,18505,18583,18656,18721,18784,18850,18921,18992,19054,19123,19189,19256,19323,19379,19430,19483,19535,19589,19660,19723,19782,19844,19903,19976,20043,20103,20166,20241,20313,20384,20440,20511,20568,20625,20691,20755,20826,20883,20936,20999,21051,21109,21176,21242,21308,21389,21464,21520,21573,21634,21692,21742,21791,21840,21889,21951,22003,22048,22129,22183,22236,22290,22341,22390,22441,22502,22563,22625,22675,22716,22766,22814,22876,22927,22976,23045,23106,23162,23233,23298,23367,23418,23481,23551,23620,23690,23752,23822,23892,23967,24026,24084,24146,24191,24234,24281,24326,24377,24425,24491,24553,24616,24688,24745,24802,24862,24920,24990,25047,25192,25313,25417,25504,25656,25808,25956,26037,26115,26416,26582,26737,26839,27116,27209,27316,27659,27766,27995,28404,28636,28736,28841,28960,29583,29730,29849,30084,30499,30737,30849,30970,31103,33241,34757,38048,40182,41710,43254,46541,46787,47046,47850,49610,50060,50775,50848,50935,51020,51119,51314,51406,51579,51741,51836,52005,52248,52541,52950,53364,53824,54242,54483,54913,55348,55758,56180,56590,57047,57501,57917,58383,58565,58633,58977,59057,59413,59563,59707,59791,60156,60254,60362,60460,60570,60686,60812,60908,61285,61395,61519,61657,61767,61889,62017,62155,62317,62533,62689,62893,62977,63081,63175,63289,63401,63525,63621,63701,63890,64096,64289,64499,64931,65352,65777,65974,66922,67443,67566,68203,68424,69239,69708,69891,70487,70947,71052,72313,72463,72880,73045,73725,73884,74046,74201,74397,74564,74786,74946,75323,75482,75810,76027,76602,76952,77201,77298,78004,78442,78683,78872,79006,79197,79834,80084,80387,80602,3338,3636,3892,4389,4823,5480,5823,7362,7710,9607,9929,10060,10766,10903,11055,11257,11962,12082,13231,13798,13927,14060,14220,14395,14537,16324,18162", + "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,344,345,346,351,352,356,362,366,367,368,369,380,381,382,386,392,396,397,398,399,429,449,495,525,545,565,611,615,619,633,674,682,692,693,694,695,696,699,700,703,706,707,710,714,719,727,735,744,752,756,764,772,780,788,796,805,814,822,831,834,836,841,843,848,852,856,857,862,863,864,865,866,867,869,870,875,876,877,878,879,880,881,883,887,891,895,899,900,901,902,903,904,905,906,907,910,914,917,921,929,936,945,949,964,972,975,984,989,1000,1008,1011,1020,1027,1028,1047,1050,1056,1059,1068,1071,1074,1077,1080,1083,1087,1090,1099,1102,1110,1115,1123,1128,1132,1133,1144,1151,1155,1159,1160,1164,1172,1176,1181,1186,1195,55,56,75,81,91,95,96,97,140,148,149,157,158,159,160,166,167,168,169,170,171,172,173,174,197,216,217", + "endColumns": "55,59,60,54,52,57,47,48,44,52,57,59,57,45,59,52,45,49,46,57,57,58,59,61,61,61,61,61,61,60,61,61,52,61,73,62,67,80,63,65,69,69,69,69,66,62,64,65,52,75,65,86,75,53,78,77,72,64,62,65,70,70,61,68,65,66,66,55,50,52,51,53,70,62,58,61,58,72,66,59,62,74,71,70,55,70,56,56,65,63,70,56,52,62,51,57,66,65,65,80,74,55,52,60,57,49,48,48,48,61,51,44,80,53,52,53,50,48,50,60,60,61,49,40,49,47,61,50,48,68,60,55,70,64,68,50,62,69,68,69,61,69,69,74,58,57,61,44,42,46,44,50,47,65,61,62,71,56,56,59,57,69,56,144,120,103,86,151,151,147,80,77,300,165,154,101,10,92,106,10,106,10,10,10,99,104,118,10,146,118,10,10,10,111,120,132,10,10,10,10,10,10,10,10,10,10,10,10,10,72,86,84,98,10,91,10,10,94,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,83,10,97,107,97,109,115,10,95,10,109,123,137,109,121,127,10,10,10,10,10,83,103,93,113,111,123,95,79,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,104,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,96,10,10,10,10,133,10,10,10,10,10,10,297,255,90,243,367,188,1538,347,95,94,130,412,136,151,201,220,119,1148,566,128,132,159,174,141,125,457,209", + "endOffsets": "151,211,272,327,380,438,486,535,580,633,691,751,809,855,915,968,1014,1064,1111,1169,1227,1286,1346,1408,1470,1532,1594,1656,1718,1779,1841,1903,1956,2018,2092,2155,2223,2304,2368,2434,2504,2574,2644,2714,2781,2844,2909,2975,3028,3104,3170,3257,3333,18421,18500,18578,18651,18716,18779,18845,18916,18987,19049,19118,19184,19251,19318,19374,19425,19478,19530,19584,19655,19718,19777,19839,19898,19971,20038,20098,20161,20236,20308,20379,20435,20506,20563,20620,20686,20750,20821,20878,20931,20994,21046,21104,21171,21237,21303,21384,21459,21515,21568,21629,21687,21737,21786,21835,21884,21946,21998,22043,22124,22178,22231,22285,22336,22385,22436,22497,22558,22620,22670,22711,22761,22809,22871,22922,22971,23040,23101,23157,23228,23293,23362,23413,23476,23546,23615,23685,23747,23817,23887,23962,24021,24079,24141,24186,24229,24276,24321,24372,24420,24486,24548,24611,24683,24740,24797,24857,24915,24985,25042,25187,25308,25412,25499,25651,25803,25951,26032,26110,26411,26577,26732,26834,27111,27204,27311,27654,27761,27990,28399,28631,28731,28836,28955,29578,29725,29844,30079,30494,30732,30844,30965,31098,33236,34752,38043,40177,41705,43249,46536,46782,47041,47845,49605,50055,50770,50843,50930,51015,51114,51309,51401,51574,51736,51831,52000,52243,52536,52945,53359,53819,54237,54478,54908,55343,55753,56175,56585,57042,57496,57912,58378,58560,58628,58972,59052,59408,59558,59702,59786,60151,60249,60357,60455,60565,60681,60807,60903,61280,61390,61514,61652,61762,61884,62012,62150,62312,62528,62684,62888,62972,63076,63170,63284,63396,63520,63616,63696,63885,64091,64284,64494,64926,65347,65772,65969,66917,67438,67561,68198,68419,69234,69703,69886,70482,70942,71047,72308,72458,72875,73040,73720,73879,74041,74196,74392,74559,74781,74941,75318,75477,75805,76022,76597,76947,77196,77293,77999,78437,78678,78867,79001,79192,79829,80079,80382,80597,81178,3631,3887,4384,4818,5475,5818,7357,7705,9602,9924,10055,10761,10898,11050,11252,11957,12077,13226,13793,13922,14055,14215,14390,14532,16319,18157,18367" + }, + "to": { + "startLines": "2,3,4,5,7,8,9,10,13,15,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,44,68,69,70,71,72,73,74,75,76,77,78,101,102,103,104,105,106,107,108,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,357,358,365,366,373,374,375,383,386,387,390,391,392,393,394,395,396,397,439,440,461,462,463,464,465,466,467,468,469,470,471,483,747,748,749,754,755,759,765,769,770,771,772,783,784,785,789,795,799,869,870,871,901,921,967,997,1017,1037,1083,1087,1829,1843,1884,1892,2027,2028,2029,2030,2174,2177,2178,2181,2184,2185,2188,2192,2197,2205,2213,2222,2230,2234,2242,2250,2258,2266,2274,2283,2292,2300,2309,2356,2358,2363,2365,2370,2374,2378,2379,2384,2385,2386,2387,2388,2389,2391,2392,2397,2398,2399,2400,2401,2402,2403,2405,2409,2413,2417,2437,2438,2439,2440,2441,2442,2443,2444,2445,2448,2452,2455,2555,2563,2570,2579,2583,2598,2606,2609,2618,2623,2634,2642,2645,2654,2661,2662,2681,2684,2690,2693,2702,2705,2708,2711,2714,2717,2721,2724,2733,2736,2744,2749,2757,2762,2766,2767,2778,2785,2789,2793,2794,2798,2806,2810,2815,2820,3004,3005,3006,3509,3515,3525,3570,3571,3572,3615,3755,3774,3782,3783,3859,3953,3959,3960,4145,4190,4191,4229,4230,4341,4342,4380,4399", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "150,206,266,327,434,487,545,593,758,848,950,1008,1068,1126,1172,1232,1285,1331,1381,1428,1486,1544,1603,1663,1725,1787,1849,1911,1973,2035,2096,2158,2220,2490,4272,4346,4409,4477,4558,4622,4688,4758,4828,4898,4968,6388,6451,6516,6582,6635,6711,6777,6864,14253,14307,14386,14464,14537,14602,14665,14731,14802,14873,14935,15004,15070,15137,15204,15260,15311,15364,15416,15470,15541,15604,15663,15725,15784,15857,15924,15984,16047,16122,16194,16265,16321,16392,16449,16506,16572,16636,16707,16764,16817,16880,16932,16990,18227,18293,18359,18440,18515,18571,18624,18685,18743,18793,18842,18891,18940,19002,19054,19099,19180,19234,19287,19341,19392,19441,19492,19553,19614,19676,19726,19767,19817,19865,19927,19978,20027,20096,20157,20213,20284,20349,20418,20469,20532,20602,20671,20741,20803,20873,20943,21018,23071,23129,23477,23522,23848,23895,23940,24324,24498,24564,24743,24806,24878,24935,24992,25052,25110,25180,28115,28260,31238,31342,31429,31581,31733,31881,31962,32040,32341,32507,32662,33578,50883,50976,51083,51426,51533,51762,52171,52403,52503,52608,52727,53350,53497,53616,53851,54266,54504,59775,59896,60029,62167,63683,66974,69108,70636,72180,75467,75713,122126,122930,124690,125140,135004,135077,135164,135249,146472,146667,146759,146932,147094,147189,147358,147601,147894,148303,148717,149177,149595,149836,150266,150701,151111,151533,151943,152400,152854,153270,153736,157029,157097,157441,157521,157877,158027,158171,158255,158620,158718,158826,158924,159034,159150,159276,159372,159749,159859,159983,160121,160231,160353,160481,160619,160781,160997,161153,162577,162661,162765,162859,162973,163085,163209,163305,163385,163574,163780,163973,171892,172324,172745,173170,173367,174315,174836,174959,175596,175817,176632,177101,177284,177880,178340,178445,179706,179856,180273,180438,181118,181277,181439,181594,181790,181957,182179,182339,182716,182875,183203,183420,183995,184345,184594,184691,185397,185835,186076,186265,186399,186590,187227,187477,187780,187995,198783,199081,199337,225179,225613,226270,229007,230546,230894,232791,240622,241786,242492,242629,247752,255409,256114,256234,266129,269020,269149,271332,271492,278069,278211,280599,282437", + "endLines": "2,3,4,5,7,8,9,10,13,15,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,44,68,69,70,71,72,73,74,75,76,77,78,101,102,103,104,105,106,107,108,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,357,358,365,366,373,374,375,383,386,387,390,391,392,393,394,395,396,397,439,440,461,462,463,464,465,466,467,468,469,470,471,486,747,748,753,754,758,764,768,769,770,771,782,783,784,788,794,798,799,869,870,900,920,966,996,1016,1036,1082,1086,1090,1842,1883,1891,1901,2027,2028,2029,2030,2176,2177,2180,2183,2184,2187,2191,2196,2204,2212,2221,2229,2233,2241,2249,2257,2265,2273,2282,2291,2299,2308,2311,2357,2362,2364,2369,2373,2377,2378,2383,2384,2385,2386,2387,2388,2390,2391,2396,2397,2398,2399,2400,2401,2402,2404,2408,2412,2416,2420,2437,2438,2439,2440,2441,2442,2443,2444,2447,2451,2454,2458,2562,2569,2578,2582,2597,2605,2608,2617,2622,2633,2641,2644,2653,2660,2661,2680,2683,2689,2692,2701,2704,2707,2710,2713,2716,2720,2723,2732,2735,2743,2748,2756,2761,2765,2766,2777,2784,2788,2792,2793,2797,2805,2809,2814,2819,2828,3004,3005,3024,3514,3524,3528,3570,3571,3614,3622,3755,3781,3782,3783,3859,3958,3959,3960,4145,4190,4191,4229,4230,4341,4364,4398,4399", + "endColumns": "55,59,60,54,52,57,47,48,44,52,57,59,57,45,59,52,45,49,46,57,57,58,59,61,61,61,61,61,61,60,61,61,52,61,73,62,67,80,63,65,69,69,69,69,66,62,64,65,52,75,65,86,75,53,78,77,72,64,62,65,70,70,61,68,65,66,66,55,50,52,51,53,70,62,58,61,58,72,66,59,62,74,71,70,55,70,56,56,65,63,70,56,52,62,51,57,66,65,65,80,74,55,52,60,57,49,48,48,48,61,51,44,80,53,52,53,50,48,50,60,60,61,49,40,49,47,61,50,48,68,60,55,70,64,68,50,62,69,68,69,61,69,69,74,58,57,61,44,42,46,44,50,47,65,61,62,71,56,56,59,57,69,56,144,120,103,86,151,151,147,80,77,300,165,154,101,10,92,106,10,106,10,10,10,99,104,118,10,146,118,10,10,10,111,120,132,10,10,10,10,10,10,10,10,10,10,10,10,10,72,86,84,98,10,91,10,10,94,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,83,10,97,107,97,109,115,10,95,10,109,123,137,109,121,127,10,10,10,10,10,83,103,93,113,111,123,95,79,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,104,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,96,10,10,10,10,133,10,10,10,10,10,10,297,255,90,243,367,188,1538,347,95,94,130,412,136,151,201,220,119,1148,566,128,132,159,174,141,125,457,209", + "endOffsets": "201,261,322,377,482,540,588,637,798,896,1003,1063,1121,1167,1227,1280,1326,1376,1423,1481,1539,1598,1658,1720,1782,1844,1906,1968,2030,2091,2153,2215,2268,2547,4341,4404,4472,4553,4617,4683,4753,4823,4893,4963,5030,6446,6511,6577,6630,6706,6772,6859,6935,14302,14381,14459,14532,14597,14660,14726,14797,14868,14930,14999,15065,15132,15199,15255,15306,15359,15411,15465,15536,15599,15658,15720,15779,15852,15919,15979,16042,16117,16189,16260,16316,16387,16444,16501,16567,16631,16702,16759,16812,16875,16927,16985,17052,18288,18354,18435,18510,18566,18619,18680,18738,18788,18837,18886,18935,18997,19049,19094,19175,19229,19282,19336,19387,19436,19487,19548,19609,19671,19721,19762,19812,19860,19922,19973,20022,20091,20152,20208,20279,20344,20413,20464,20527,20597,20666,20736,20798,20868,20938,21013,21072,23124,23186,23517,23560,23890,23935,23986,24367,24559,24621,24801,24873,24930,24987,25047,25105,25175,25232,28255,28376,31337,31424,31576,31728,31876,31957,32035,32336,32502,32657,32759,33850,50971,51078,51421,51528,51757,52166,52398,52498,52603,52722,53345,53492,53611,53846,54261,54499,54611,59891,60024,62162,63678,66969,69103,70631,72175,75462,75708,75967,122925,124685,125135,125850,135072,135159,135244,135343,146662,146754,146927,147089,147184,147353,147596,147889,148298,148712,149172,149590,149831,150261,150696,151106,151528,151938,152395,152849,153265,153731,153913,157092,157436,157516,157872,158022,158166,158250,158615,158713,158821,158919,159029,159145,159271,159367,159744,159854,159978,160116,160226,160348,160476,160614,160776,160992,161148,161352,162656,162760,162854,162968,163080,163204,163300,163380,163569,163775,163968,164178,172319,172740,173165,173362,174310,174831,174954,175591,175812,176627,177096,177279,177875,178335,178440,179701,179851,180268,180433,181113,181272,181434,181589,181785,181952,182174,182334,182711,182870,183198,183415,183990,184340,184589,184686,185392,185830,186071,186260,186394,186585,187222,187472,187775,187990,188571,199076,199332,199829,225608,226265,226608,230541,230889,232786,233108,240748,242487,242624,242776,247949,256109,256229,257378,266691,269144,269277,271487,271662,278206,279993,282432,282642" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/coordinatorlayout-28.0.0.aar/dc70fe0972fdff5c2cfa3b5a67cad3fd/res/values/values.xml", + "from": { + "startLines": "2,102,3,13", + "startColumns": "4,4,4,4", + "startOffsets": "55,5935,116,724", + "endLines": "2,104,12,101", + "endColumns": "60,12,24,24", + "endOffsets": "111,6075,719,5930" + }, + "to": { + "startLines": "11,2829,3656,3666", + "startColumns": "4,4,4,4", + "startOffsets": "642,188576,234803,235411", + "endLines": "11,2831,3665,3754", + "endColumns": "60,12,24,24", + "endOffsets": "698,188716,235406,240617" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/values/values.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1453,1461,1462,1466,1470,1474,1479,1485,1492,1496,1500,1505,1509,1513,1517,1521,1525,1529,1535,1539,1545,1549,1555,1559,1564,1568,1571,1575,1581,1585,1591,1595,1601,1604,1608,1612,1616,1620,1624,1625,1626,1627,1630,1633,1636,1639,1643,1644,1645,1646,1647,1650,1652,1654,1656,1661,1662,1666,1672,1676,1677,1679,1690,1691,1695,1701,1705,1706,1707,1711,1738,1742,1743,1747,1775,1943,1969,2138,2164,2195,2203,2209,2223,2245,2250,2255,2265,2274,2283,2287,2294,2302,2309,2310,2319,2322,2325,2329,2333,2337,2340,2341,2345,2349,2359,2364,2371,2377,2378,2381,2385,2390,2392,2394,2397,2400,2402,2406,2409,2416,2419,2422,2426,2428,2432,2434,2436,2438,2442,2450,2458,2470,2476,2485,2488,2499,2502,2507,2508,2513,2571,2630,2631,2641,2650,2651,2653,2657,2660,2663,2666,2669,2672,2675,2678,2682,2685,2688,2691,2695,2698,2702,2706,2707,2708,2709,2710,2711,2712,2713,2714,2715,2716,2717,2718,2719,2720,2721,2722,2723,2724,2725,2726,2728,2730,2731,2732,2733,2734,2735,2736,2737,2739,2740,2742,2743,2745,2747,2748,2750,2751,2752,2753,2754,2755,2757,2758,2759,2760,2761,2762,2764,2766,2768,2769,2770,2771,2772,2773,2774,2775,2776,2777,2778,2779,2780,2782,2783,2784,2785,2786,2787,2789,2793,2797,2798,2799,2800,2801,2802,2803,2804,2806,2808,2810,2812,2814,2815,2816,2817,2819,2821,2823,2824,2825,2826,2827,2828,2829,2830,2831,2832,2833,2834,2837,2838,2839,2840,2842,2844,2845,2847,2848,2850,2852,2854,2855,2856,2857,2858,2859,2860,2861,2862,2863,2864,2865,2867,2868,2869,2870,2872,2873,2874,2875,2876,2878,2880,2882,2884,2885,2886,2887,2888,2889,2890,2891,2892,2893,2894,2895,2896,2897,69,152,155,158,161,175,186,196,223,230,241,271,298,307,344,725,730,756,774,810,816,822,845,986,1006,1012,1016,1022,1059,1071,1098,1103,1169,1184,1249,1268,1294", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,160,205,254,295,350,409,471,552,613,688,764,841,919,1004,1086,1162,1238,1315,1393,1499,1605,1684,1764,1821,1879,1953,2028,2093,2159,2219,2280,2352,2425,2492,2560,2619,2678,2737,2796,2855,2909,2963,3016,3070,3124,3178,3232,3306,3385,3458,3532,3603,3675,3747,3820,3877,3935,4008,4082,4156,4231,4303,4376,4446,4517,4577,70911,70980,71049,71119,71193,71269,71333,71410,71486,71563,71628,71697,71774,71849,71918,71986,72063,72129,72190,72287,72352,72421,72520,72591,72650,72708,72765,72824,72888,72959,73031,73103,73175,73247,73314,73382,73450,73509,73572,73636,73726,73817,73877,73943,74010,74076,74146,74210,74263,74376,74434,74497,74562,74627,74702,74775,74847,74896,74957,75018,75079,75141,75205,75269,75333,75398,75461,75521,75582,75648,75707,75767,75829,75900,75960,76028,76114,76201,76291,76378,76466,76548,76631,76721,76812,76864,76922,76967,77033,77097,77154,77211,77265,77322,77370,77419,77470,77504,77551,77600,77646,77678,77742,77804,77864,77921,77995,78065,78143,78197,78267,78352,78400,78446,78517,78595,78673,78745,78819,78893,78967,79047,79120,79189,79261,79338,79399,79462,79528,79592,79663,79726,79791,79855,79916,79977,80029,80102,80176,80245,80320,80394,80468,80609,80679,80732,80810,80900,80988,81084,81174,81756,81845,82092,82373,82625,82910,83303,83780,84002,84224,84500,84727,84957,85187,85417,85647,85874,86293,86519,86944,87174,87602,87821,88104,88312,88443,88670,89096,89321,89748,89969,90394,90514,90790,91091,91415,91706,92020,92157,92288,92393,92635,92802,93006,93214,93485,93597,93709,93814,93931,94145,94291,94431,94517,94865,94953,95199,95617,95866,95948,96046,96663,96763,97015,97439,97694,97788,97877,98114,100166,100408,100510,100763,102947,113668,115184,126004,127532,129289,129915,130335,131396,132661,132917,133153,133700,134194,134799,134997,135577,136141,136516,136634,137172,137329,137525,137798,138054,138224,138365,138429,138711,138997,139673,139937,140275,140628,140722,140908,141214,141476,141601,141728,141967,142178,142297,142490,142667,143122,143303,143425,143684,143797,143984,144086,144193,144322,144597,145105,145601,146478,146772,147342,147491,148223,148395,148731,148823,149101,153445,157932,157994,158624,159238,159329,159442,159671,159831,159983,160154,160320,160489,160656,160819,161062,161232,161405,161576,161850,162049,162254,162584,162668,162764,162860,162958,163058,163160,163262,163364,163466,163568,163668,163764,163876,164005,164128,164259,164390,164488,164602,164696,164836,164970,165066,165178,165278,165394,165490,165602,165702,165842,165978,166142,166272,166430,166580,166721,166865,167000,167112,167262,167390,167518,167654,167786,167916,168046,168158,168298,168444,168588,168726,168792,168882,168958,169062,169152,169254,169362,169470,169570,169650,169742,169840,169950,170028,170134,170226,170330,170440,170562,170725,170882,170962,171062,171152,171262,171356,171462,171554,171654,171766,171880,171996,172112,172206,172320,172432,172534,172654,172776,172858,172962,173082,173208,173306,173400,173488,173600,173716,173838,173950,174125,174241,174327,174419,174531,174655,174722,174848,174916,175044,175188,175316,175385,175480,175595,175708,175807,175916,176027,176138,176239,176344,176444,176574,176665,176788,176882,176994,177080,177184,177280,177368,177486,177590,177694,177820,177908,178016,178116,178206,178316,178400,178502,178586,178640,178704,178810,178920,179004,4638,9782,9900,10015,10147,10862,11554,12071,13718,14103,14700,16299,17832,18220,20527,40045,40305,41697,42730,44743,45005,45361,46191,52973,54107,54401,54624,54951,57001,57649,59282,59552,63403,64004,67813,69028,70437", + "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1460,1461,1465,1469,1473,1478,1484,1491,1495,1499,1504,1508,1512,1516,1520,1524,1528,1534,1538,1544,1548,1554,1558,1563,1567,1570,1574,1580,1584,1590,1594,1600,1603,1607,1611,1615,1619,1623,1624,1625,1626,1629,1632,1635,1638,1642,1643,1644,1645,1646,1649,1651,1653,1655,1660,1661,1665,1671,1675,1676,1678,1689,1690,1694,1700,1704,1705,1706,1710,1737,1741,1742,1746,1774,1942,1968,2137,2163,2194,2202,2208,2222,2244,2249,2254,2264,2273,2282,2286,2293,2301,2308,2309,2318,2321,2324,2328,2332,2336,2339,2340,2344,2348,2358,2363,2370,2376,2377,2380,2384,2389,2391,2393,2396,2399,2401,2405,2408,2415,2418,2421,2425,2427,2431,2433,2435,2437,2441,2449,2457,2469,2475,2484,2487,2498,2501,2506,2507,2512,2570,2629,2630,2640,2649,2650,2652,2656,2659,2662,2665,2668,2671,2674,2677,2681,2684,2687,2690,2694,2697,2701,2705,2706,2707,2708,2709,2710,2711,2712,2713,2714,2715,2716,2717,2718,2719,2720,2721,2722,2723,2724,2725,2727,2729,2730,2731,2732,2733,2734,2735,2736,2738,2739,2741,2742,2744,2746,2747,2749,2750,2751,2752,2753,2754,2756,2757,2758,2759,2760,2761,2763,2765,2767,2768,2769,2770,2771,2772,2773,2774,2775,2776,2777,2778,2779,2781,2782,2783,2784,2785,2786,2788,2792,2796,2797,2798,2799,2800,2801,2802,2803,2805,2807,2809,2811,2813,2814,2815,2816,2818,2820,2822,2823,2824,2825,2826,2827,2828,2829,2830,2831,2832,2833,2836,2837,2838,2839,2841,2843,2844,2846,2847,2849,2851,2853,2854,2855,2856,2857,2858,2859,2860,2861,2862,2863,2864,2866,2867,2868,2869,2871,2872,2873,2874,2875,2877,2879,2881,2883,2884,2885,2886,2887,2888,2889,2890,2891,2892,2893,2894,2895,2896,2897,151,154,157,160,174,185,195,222,229,240,270,297,306,343,724,729,755,773,809,815,821,844,985,1005,1011,1015,1021,1058,1070,1097,1102,1168,1183,1248,1267,1293,1302", + "endColumns": "54,44,48,40,54,58,61,80,60,74,75,76,77,84,81,75,75,76,77,105,105,78,79,56,57,73,74,64,65,59,60,71,72,66,67,58,58,58,58,58,53,53,52,53,53,53,53,73,78,72,73,70,71,71,72,56,57,72,73,73,74,71,72,69,70,59,60,68,68,69,73,75,63,76,75,76,64,68,76,74,68,67,76,65,60,96,64,68,98,70,58,57,56,58,63,70,71,71,71,71,66,67,67,58,62,63,89,90,59,65,66,65,69,63,52,112,57,62,64,64,74,72,71,48,60,60,60,61,63,63,63,64,62,59,60,65,58,59,61,70,59,67,85,86,89,86,87,81,82,89,90,51,57,44,65,63,56,56,53,56,47,48,50,33,46,48,45,31,63,61,59,56,73,69,77,53,69,84,47,45,70,77,77,71,73,73,73,79,72,68,71,76,60,62,65,63,70,62,64,63,60,60,51,72,73,68,74,73,73,140,69,52,77,89,87,95,89,12,88,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,136,130,104,12,12,12,12,12,111,111,104,116,12,12,12,12,12,87,12,12,12,81,12,12,99,12,12,12,93,88,12,12,12,101,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,117,12,12,12,12,12,12,12,63,12,12,12,12,12,12,93,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,91,12,12,12,61,12,12,90,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,83,95,95,97,99,101,101,101,101,101,99,95,111,128,122,130,130,97,113,93,12,12,95,111,99,115,95,111,99,12,135,12,129,12,12,140,12,134,111,149,127,127,12,131,129,129,111,139,12,12,12,65,89,75,103,89,101,107,107,99,79,91,97,12,77,105,91,103,109,12,12,12,79,99,89,109,93,105,91,12,12,12,12,12,93,113,111,12,12,12,81,103,119,125,97,93,87,111,115,121,111,12,115,85,91,12,12,66,12,67,12,12,12,68,94,114,112,98,108,110,110,100,104,99,12,90,122,93,12,85,103,95,87,12,12,12,12,87,107,99,89,109,83,101,83,53,63,105,109,83,119,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24", + "endOffsets": "155,200,249,290,345,404,466,547,608,683,759,836,914,999,1081,1157,1233,1310,1388,1494,1600,1679,1759,1816,1874,1948,2023,2088,2154,2214,2275,2347,2420,2487,2555,2614,2673,2732,2791,2850,2904,2958,3011,3065,3119,3173,3227,3301,3380,3453,3527,3598,3670,3742,3815,3872,3930,4003,4077,4151,4226,4298,4371,4441,4512,4572,4633,70975,71044,71114,71188,71264,71328,71405,71481,71558,71623,71692,71769,71844,71913,71981,72058,72124,72185,72282,72347,72416,72515,72586,72645,72703,72760,72819,72883,72954,73026,73098,73170,73242,73309,73377,73445,73504,73567,73631,73721,73812,73872,73938,74005,74071,74141,74205,74258,74371,74429,74492,74557,74622,74697,74770,74842,74891,74952,75013,75074,75136,75200,75264,75328,75393,75456,75516,75577,75643,75702,75762,75824,75895,75955,76023,76109,76196,76286,76373,76461,76543,76626,76716,76807,76859,76917,76962,77028,77092,77149,77206,77260,77317,77365,77414,77465,77499,77546,77595,77641,77673,77737,77799,77859,77916,77990,78060,78138,78192,78262,78347,78395,78441,78512,78590,78668,78740,78814,78888,78962,79042,79115,79184,79256,79333,79394,79457,79523,79587,79658,79721,79786,79850,79911,79972,80024,80097,80171,80240,80315,80389,80463,80604,80674,80727,80805,80895,80983,81079,81169,81751,81840,82087,82368,82620,82905,83298,83775,83997,84219,84495,84722,84952,85182,85412,85642,85869,86288,86514,86939,87169,87597,87816,88099,88307,88438,88665,89091,89316,89743,89964,90389,90509,90785,91086,91410,91701,92015,92152,92283,92388,92630,92797,93001,93209,93480,93592,93704,93809,93926,94140,94286,94426,94512,94860,94948,95194,95612,95861,95943,96041,96658,96758,97010,97434,97689,97783,97872,98109,100161,100403,100505,100758,102942,113663,115179,125999,127527,129284,129910,130330,131391,132656,132912,133148,133695,134189,134794,134992,135572,136136,136511,136629,137167,137324,137520,137793,138049,138219,138360,138424,138706,138992,139668,139932,140270,140623,140717,140903,141209,141471,141596,141723,141962,142173,142292,142485,142662,143117,143298,143420,143679,143792,143979,144081,144188,144317,144592,145100,145596,146473,146767,147337,147486,148218,148390,148726,148818,149096,153440,157927,157989,158619,159233,159324,159437,159666,159826,159978,160149,160315,160484,160651,160814,161057,161227,161400,161571,161845,162044,162249,162579,162663,162759,162855,162953,163053,163155,163257,163359,163461,163563,163663,163759,163871,164000,164123,164254,164385,164483,164597,164691,164831,164965,165061,165173,165273,165389,165485,165597,165697,165837,165973,166137,166267,166425,166575,166716,166860,166995,167107,167257,167385,167513,167649,167781,167911,168041,168153,168293,168439,168583,168721,168787,168877,168953,169057,169147,169249,169357,169465,169565,169645,169737,169835,169945,170023,170129,170221,170325,170435,170557,170720,170877,170957,171057,171147,171257,171351,171457,171549,171649,171761,171875,171991,172107,172201,172315,172427,172529,172649,172771,172853,172957,173077,173203,173301,173395,173483,173595,173711,173833,173945,174120,174236,174322,174414,174526,174650,174717,174843,174911,175039,175183,175311,175380,175475,175590,175703,175802,175911,176022,176133,176234,176339,176439,176569,176660,176783,176877,176989,177075,177179,177275,177363,177481,177585,177689,177815,177903,178011,178111,178201,178311,178395,178497,178581,178635,178699,178805,178915,178999,179119,9777,9895,10010,10142,10857,11549,12066,13713,14098,14695,16294,17827,18215,20522,40040,40300,41692,42725,44738,45000,45356,46186,52968,54102,54396,54619,54946,56996,57644,59277,59547,63398,63999,67808,69023,70432,70906" + }, + "to": { + "startLines": "12,14,16,40,41,42,43,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,260,261,265,266,267,268,269,270,271,338,339,340,341,342,343,344,345,348,349,350,351,353,360,361,367,382,384,385,388,389,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,472,474,475,476,477,478,487,495,496,500,504,515,520,526,533,537,541,546,550,554,558,562,566,570,576,580,586,590,596,600,605,609,612,616,622,626,632,636,642,645,649,653,657,661,665,666,667,668,671,674,677,680,684,685,686,687,688,691,693,695,697,702,703,707,713,717,718,720,731,732,736,742,746,800,801,805,832,836,837,841,1091,1259,1285,1454,1480,1511,1519,1525,1539,1561,1566,1571,1581,1590,1599,1603,1610,1618,1625,1626,1635,1638,1641,1645,1649,1653,1656,1657,1661,1665,1675,1680,1687,1693,1694,1697,1701,1706,1708,1710,1713,1716,1718,1722,1725,1732,1735,1738,1742,1744,1748,1750,1752,1754,1758,1766,1774,1786,1792,1801,1804,1815,1818,1823,1824,1910,1968,2031,2032,2042,2051,2052,2054,2058,2061,2064,2067,2070,2073,2076,2079,2083,2086,2089,2092,2096,2099,2103,2107,2108,2109,2110,2111,2112,2113,2114,2115,2116,2117,2118,2119,2120,2121,2122,2123,2124,2125,2126,2127,2129,2131,2132,2133,2134,2135,2136,2137,2138,2140,2141,2143,2144,2146,2148,2149,2151,2152,2153,2154,2155,2156,2158,2159,2160,2161,2162,2312,2314,2316,2319,2320,2321,2322,2323,2324,2325,2326,2327,2328,2329,2330,2331,2333,2334,2335,2336,2337,2338,2340,2344,2430,2431,2432,2433,2434,2435,2436,2459,2461,2463,2465,2467,2469,2470,2471,2472,2474,2476,2478,2479,2480,2481,2482,2483,2484,2485,2486,2487,2488,2489,2492,2493,2494,2495,2497,2499,2500,2502,2503,2505,2507,2509,2510,2511,2512,2513,2514,2515,2516,2517,2518,2519,2520,2522,2523,2524,2525,2527,2528,2529,2530,2531,2533,2535,2537,2539,2540,2541,2542,2543,2544,2545,2546,2547,2548,2549,2550,2551,2552,2832,2915,2918,2921,2924,2938,2949,2959,2986,2993,3025,3055,3082,3091,3128,3529,3630,3756,3905,3941,3947,3961,3984,4125,4146,4152,4156,4192,4231,4243,4270,4275,4365,4400,4465,4484,4510", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "703,803,901,2273,2314,2369,2428,2552,2633,2694,2769,2845,2922,3000,3085,3167,3243,3319,3396,3474,3580,3686,3765,3845,3902,5035,5109,5184,5249,5315,5375,5436,5508,5581,5648,5716,5775,5834,5893,5952,6011,6065,6119,6172,6226,6280,6334,7072,7146,7225,7298,7372,7443,7515,7587,7660,7717,7775,7848,7922,7996,8071,8143,8216,8286,8357,8417,8478,8547,8616,8686,8760,8836,8900,8977,9053,9130,9195,9264,9341,9416,9485,9553,9630,9696,9757,9854,9919,9988,10087,10158,10217,10275,10332,10391,10455,10526,10598,10670,10742,10814,10881,10949,11017,11076,11139,11203,11293,11384,11444,11510,11577,11643,11713,11777,11830,11943,12001,12064,12129,12194,12269,12342,12414,12463,12524,12585,12646,12708,12772,12836,12900,12965,13028,13088,13149,13215,13274,13334,13396,13467,13527,17057,17143,17393,17483,17570,17658,17740,17823,17913,22055,22107,22165,22210,22276,22340,22397,22454,22656,22713,22761,22810,22901,23234,23281,23565,24292,24372,24436,24626,24686,25307,25381,25451,25529,25583,25653,25738,25786,25832,25903,25981,26059,26131,26205,26279,26353,26433,26506,26575,26647,26724,26785,26848,26914,26978,27049,27112,27177,27241,27302,27363,27415,27488,27562,27631,27706,27780,27854,27995,32764,32888,32966,33056,33144,33240,33855,34437,34526,34773,35054,35720,36005,36398,36875,37097,37319,37595,37822,38052,38282,38512,38742,38969,39388,39614,40039,40269,40697,40916,41199,41407,41538,41765,42191,42416,42843,43064,43489,43609,43885,44186,44510,44801,45115,45252,45383,45488,45730,45897,46101,46309,46580,46692,46804,46909,47026,47240,47386,47526,47612,47960,48048,48294,48712,48961,49043,49141,49758,49858,50110,50534,50789,54616,54705,54942,56994,57236,57338,57591,75972,86693,88209,99029,100557,102314,102940,103360,104421,105686,105942,106178,106725,107219,107824,108022,108602,109166,109541,109659,110197,110354,110550,110823,111079,111249,111390,111454,111736,112022,112698,112962,113300,113653,113747,113933,114239,114501,114626,114753,114992,115203,115322,115515,115692,116147,116328,116450,116709,116822,117009,117111,117218,117347,117622,118130,118626,119503,119797,120367,120516,121248,121420,121756,121848,126173,130517,135348,135410,136040,136654,136745,136858,137087,137247,137399,137570,137736,137905,138072,138235,138478,138648,138821,138992,139266,139465,139670,140000,140084,140180,140276,140374,140474,140576,140678,140780,140882,140984,141084,141180,141292,141421,141544,141675,141806,141904,142018,142112,142252,142386,142482,142594,142694,142810,142906,143018,143118,143258,143394,143558,143688,143846,143996,144137,144281,144416,144528,144678,144806,144934,145070,145202,145332,145462,145574,153918,154064,154208,154372,154438,154528,154604,154708,154798,154900,155008,155116,155216,155296,155388,155486,155596,155674,155780,155872,155976,156086,156208,156371,161905,161985,162085,162175,162285,162379,162485,164183,164283,164395,164509,164625,164741,164835,164949,165061,165163,165283,165405,165487,165591,165711,165837,165935,166029,166117,166229,166345,166467,166579,166754,166870,166956,167048,167160,167284,167351,167477,167545,167673,167817,167945,168014,168109,168224,168337,168436,168545,168656,168767,168868,168973,169073,169203,169294,169417,169511,169623,169709,169813,169909,169997,170115,170219,170323,170449,170537,170645,170745,170835,170945,171029,171131,171215,171269,171333,171439,171549,171633,188721,193865,193983,194098,194230,194945,195637,196154,197801,198186,199834,201433,202966,203354,205661,226613,233411,240753,252778,254791,255053,257383,258213,264995,266696,266990,267213,269282,271667,272315,273948,274218,279998,282647,286456,287671,289080", + "endLines": "12,14,16,40,41,42,43,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,260,261,265,266,267,268,269,270,271,338,339,340,341,342,343,344,345,348,349,350,351,353,360,361,367,382,384,385,388,389,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,472,474,475,476,477,478,494,495,499,503,507,519,525,532,536,540,545,549,553,557,561,565,569,575,579,585,589,595,599,604,608,611,615,621,625,631,635,641,644,648,652,656,660,664,665,666,667,670,673,676,679,683,684,685,686,687,690,692,694,696,701,702,706,712,716,717,719,730,731,735,741,745,746,800,804,831,835,836,840,868,1258,1284,1453,1479,1510,1518,1524,1538,1560,1565,1570,1580,1589,1598,1602,1609,1617,1624,1625,1634,1637,1640,1644,1648,1652,1655,1656,1660,1664,1674,1679,1686,1692,1693,1696,1700,1705,1707,1709,1712,1715,1717,1721,1724,1731,1734,1737,1741,1743,1747,1749,1751,1753,1757,1765,1773,1785,1791,1800,1803,1814,1817,1822,1823,1828,1967,2026,2031,2041,2050,2051,2053,2057,2060,2063,2066,2069,2072,2075,2078,2082,2085,2088,2091,2095,2098,2102,2106,2107,2108,2109,2110,2111,2112,2113,2114,2115,2116,2117,2118,2119,2120,2121,2122,2123,2124,2125,2126,2128,2130,2131,2132,2133,2134,2135,2136,2137,2139,2140,2142,2143,2145,2147,2148,2150,2151,2152,2153,2154,2155,2157,2158,2159,2160,2161,2162,2313,2315,2317,2319,2320,2321,2322,2323,2324,2325,2326,2327,2328,2329,2330,2332,2333,2334,2335,2336,2337,2339,2343,2347,2430,2431,2432,2433,2434,2435,2436,2460,2462,2464,2466,2468,2469,2470,2471,2473,2475,2477,2478,2479,2480,2481,2482,2483,2484,2485,2486,2487,2488,2491,2492,2493,2494,2496,2498,2499,2501,2502,2504,2506,2508,2509,2510,2511,2512,2513,2514,2515,2516,2517,2518,2519,2521,2522,2523,2524,2526,2527,2528,2529,2530,2532,2534,2536,2538,2539,2540,2541,2542,2543,2544,2545,2546,2547,2548,2549,2550,2551,2552,2914,2917,2920,2923,2937,2948,2958,2985,2992,3003,3054,3081,3090,3127,3508,3533,3655,3773,3940,3946,3952,3983,4124,4144,4151,4155,4161,4228,4242,4269,4274,4340,4379,4464,4483,4509,4518", + "endColumns": "54,44,48,40,54,58,61,80,60,74,75,76,77,84,81,75,75,76,77,105,105,78,79,56,57,73,74,64,65,59,60,71,72,66,67,58,58,58,58,58,53,53,52,53,53,53,53,73,78,72,73,70,71,71,72,56,57,72,73,73,74,71,72,69,70,59,60,68,68,69,73,75,63,76,75,76,64,68,76,74,68,67,76,65,60,96,64,68,98,70,58,57,56,58,63,70,71,71,71,71,66,67,67,58,62,63,89,90,59,65,66,65,69,63,52,112,57,62,64,64,74,72,71,48,60,60,60,61,63,63,63,64,62,59,60,65,58,59,61,70,59,67,85,86,89,86,87,81,82,89,90,51,57,44,65,63,56,56,53,56,47,48,50,33,46,48,45,31,63,61,59,56,73,69,77,53,69,84,47,45,70,77,77,71,73,73,73,79,72,68,71,76,60,62,65,63,70,62,64,63,60,60,51,72,73,68,74,73,73,140,69,52,77,89,87,95,89,12,88,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,136,130,104,12,12,12,12,12,111,111,104,116,12,12,12,12,12,87,12,12,12,81,12,12,99,12,12,12,93,88,12,12,12,101,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,117,12,12,12,12,12,12,12,63,12,12,12,12,12,12,93,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,91,12,12,12,61,12,12,90,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,83,95,95,97,99,101,101,101,101,101,99,95,111,128,122,130,130,97,113,93,12,12,95,111,99,115,95,111,99,12,135,12,129,12,12,140,12,134,111,149,127,127,12,131,129,129,111,139,12,12,12,65,89,75,103,89,101,107,107,99,79,91,97,12,77,105,91,103,109,12,12,12,79,99,89,109,93,105,91,12,12,12,12,12,93,113,111,12,12,12,81,103,119,125,97,93,87,111,115,121,111,12,115,85,91,12,12,66,12,67,12,12,12,68,94,114,112,98,108,110,110,100,104,99,12,90,122,93,12,85,103,95,87,12,12,12,12,87,107,99,89,109,83,101,83,53,63,105,109,83,119,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24", + "endOffsets": "753,843,945,2309,2364,2423,2485,2628,2689,2764,2840,2917,2995,3080,3162,3238,3314,3391,3469,3575,3681,3760,3840,3897,3955,5104,5179,5244,5310,5370,5431,5503,5576,5643,5711,5770,5829,5888,5947,6006,6060,6114,6167,6221,6275,6329,6383,7141,7220,7293,7367,7438,7510,7582,7655,7712,7770,7843,7917,7991,8066,8138,8211,8281,8352,8412,8473,8542,8611,8681,8755,8831,8895,8972,9048,9125,9190,9259,9336,9411,9480,9548,9625,9691,9752,9849,9914,9983,10082,10153,10212,10270,10327,10386,10450,10521,10593,10665,10737,10809,10876,10944,11012,11071,11134,11198,11288,11379,11439,11505,11572,11638,11708,11772,11825,11938,11996,12059,12124,12189,12264,12337,12409,12458,12519,12580,12641,12703,12767,12831,12895,12960,13023,13083,13144,13210,13269,13329,13391,13462,13522,13590,17138,17225,17478,17565,17653,17735,17818,17908,17999,22102,22160,22205,22271,22335,22392,22449,22503,22708,22756,22805,22856,22930,23276,23325,23606,24319,24431,24493,24681,24738,25376,25446,25524,25578,25648,25733,25781,25827,25898,25976,26054,26126,26200,26274,26348,26428,26501,26570,26642,26719,26780,26843,26909,26973,27044,27107,27172,27236,27297,27358,27410,27483,27557,27626,27701,27775,27849,27990,28060,32812,32961,33051,33139,33235,33325,34432,34521,34768,35049,35301,36000,36393,36870,37092,37314,37590,37817,38047,38277,38507,38737,38964,39383,39609,40034,40264,40692,40911,41194,41402,41533,41760,42186,42411,42838,43059,43484,43604,43880,44181,44505,44796,45110,45247,45378,45483,45725,45892,46096,46304,46575,46687,46799,46904,47021,47235,47381,47521,47607,47955,48043,48289,48707,48956,49038,49136,49753,49853,50105,50529,50784,50878,54700,54937,56989,57231,57333,57586,59770,86688,88204,99024,100552,102309,102935,103355,104416,105681,105937,106173,106720,107214,107819,108017,108597,109161,109536,109654,110192,110349,110545,110818,111074,111244,111385,111449,111731,112017,112693,112957,113295,113648,113742,113928,114234,114496,114621,114748,114987,115198,115317,115510,115687,116142,116323,116445,116704,116817,117004,117106,117213,117342,117617,118125,118621,119498,119792,120362,120511,121243,121415,121751,121843,122121,130512,134999,135405,136035,136649,136740,136853,137082,137242,137394,137565,137731,137900,138067,138230,138473,138643,138816,138987,139261,139460,139665,139995,140079,140175,140271,140369,140469,140571,140673,140775,140877,140979,141079,141175,141287,141416,141539,141670,141801,141899,142013,142107,142247,142381,142477,142589,142689,142805,142901,143013,143113,143253,143389,143553,143683,143841,143991,144132,144276,144411,144523,144673,144801,144929,145065,145197,145327,145457,145569,145709,154059,154203,154341,154433,154523,154599,154703,154793,154895,155003,155111,155211,155291,155383,155481,155591,155669,155775,155867,155971,156081,156203,156366,156523,161980,162080,162170,162280,162374,162480,162572,164278,164390,164504,164620,164736,164830,164944,165056,165158,165278,165400,165482,165586,165706,165832,165930,166024,166112,166224,166340,166462,166574,166749,166865,166951,167043,167155,167279,167346,167472,167540,167668,167812,167940,168009,168104,168219,168332,168431,168540,168651,168762,168863,168968,169068,169198,169289,169412,169506,169618,169704,169808,169904,169992,170110,170214,170318,170444,170532,170640,170740,170830,170940,171024,171126,171210,171264,171328,171434,171544,171628,171748,193860,193978,194093,194225,194940,195632,196149,197796,198181,198778,201428,202961,203349,205656,225174,226868,234798,241781,254786,255048,255404,258208,264990,266124,266985,267208,267535,271327,272310,273943,274213,278064,280594,286451,287666,289075,289549" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/markdownview-1.1.0.aar/0d0782af6729d6787d3ca374e99d6326/res/values/values.xml", + "from": { + "startLines": "4", + "startColumns": "4", + "startOffsets": "206", + "endColumns": "49", + "endOffsets": "251" + }, + "to": { + "startLines": "438", + "startColumns": "4", + "startOffsets": "28065", + "endColumns": "49", + "endOffsets": "28110" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/transition-28.0.0.aar/a5bd647f16cacafec51241cb19612a3f/res/values/values.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11", + "startColumns": "4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,95,138,185,240,285,339,391,440,501", + "endColumns": "39,42,46,54,44,53,51,48,60,49", + "endOffsets": "90,133,180,235,280,334,386,435,496,546" + }, + "to": { + "startLines": "352,359,362,363,364,377,378,379,380,381", + "startColumns": "4,4,4,4,4,4,4,4,4,4", + "startOffsets": "22861,23191,23330,23377,23432,24026,24080,24132,24181,24242", + "endColumns": "39,42,46,54,44,53,51,48,60,49", + "endOffsets": "22896,23229,23372,23427,23472,24075,24127,24176,24237,24287" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/drawee-0.8.1.aar/78b7bb9a3158fc049917f2f4c889eab9/res/values/values.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "2686", + "endOffsets": "2737" + }, + "to": { + "startLines": "3860", + "startColumns": "4", + "startOffsets": "247954", + "endColumns": "2686", + "endOffsets": "250636" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/cardview-v7-28.0.0.aar/16ec99c8f7b1e40cda987a1cc1a1161e/res/values/values.xml", + "from": { + "startLines": "2,3,4,5,6,35,36,37,38,45,47,50,7", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,107,168,230,292,2179,2238,2295,2349,2763,2827,2953,356", + "endLines": "2,3,4,5,6,35,36,37,44,46,49,52,34", + "endColumns": "51,60,61,61,63,58,56,53,12,12,12,12,24", + "endOffsets": "102,163,225,287,351,2233,2290,2344,2758,2822,2948,3076,2174" + }, + "to": { + "startLines": "6,63,64,65,66,206,207,208,508,1902,1904,1907,3542", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "382,3960,4021,4083,4145,13595,13654,13711,35306,125855,125919,126045,227184", + "endLines": "6,63,64,65,66,206,207,208,514,1903,1906,1909,3569", + "endColumns": "51,60,61,61,63,58,56,53,12,12,12,12,24", + "endOffsets": "429,4016,4078,4140,4204,13649,13706,13760,35715,125914,126040,126168,229002" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/react-native-0.19.1.aar/4235edd25620896d6b8925991ca39618/res/values/values.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,27,28,29,36,39", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,118,219,330,440,554,684,819,1541,1652,1755,1863,1976,2086,2201,2297,2429,2554,2653,2767,2872,2975,3223,3249,3284,3750,3933", + "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,26,27,28,35,38,44", + "endColumns": "62,100,110,109,113,129,134,721,110,102,107,112,109,114,95,131,124,98,113,104,102,10,25,34,10,12,12", + "endOffsets": "113,214,325,435,549,679,814,1536,1647,1750,1858,1971,2081,2196,2292,2424,2549,2648,2762,2867,2970,3218,3244,3279,3745,3928,4293" + }, + "to": { + "startLines": "67,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,479,2318,2348,2349,2421,2424", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "4209,28381,28482,28593,28703,28817,28947,29082,29804,29915,30018,30126,30239,30349,30464,30560,30692,30817,30916,31030,31135,33330,154346,156528,156563,161357,161540", + "endLines": "67,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,482,2318,2348,2355,2423,2429", + "endColumns": "62,100,110,109,113,129,134,721,110,102,107,112,109,114,95,131,124,98,113,104,102,10,25,34,10,12,12", + "endOffsets": "4267,28477,28588,28698,28812,28942,29077,29799,29910,30013,30121,30234,30344,30459,30555,30687,30812,30911,31025,31130,31233,33573,154367,156558,157024,161535,161900" + } + }, + { + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/values/values.xml", + "from": { + "startLines": "2,3,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,171,172,176,177,178,6,13,56,88,125", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,124,7725,7795,7863,7935,8005,8066,8140,8213,8274,8335,8397,8461,8523,8584,8652,8752,8812,8878,8951,9020,9077,9129,9191,9263,9339,9374,9409,9459,9520,9577,9611,9646,9681,9751,9822,9939,10140,10250,10451,10580,10652,319,617,3523,5588,7348", + "endLines": "2,3,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,170,171,175,176,177,178,12,55,87,124,131", + "endColumns": "68,62,69,67,71,69,60,73,72,60,60,61,63,61,60,67,99,59,65,72,68,56,51,61,71,75,34,34,49,60,56,33,34,34,69,70,116,12,109,12,128,71,66,24,24,24,24,24", + "endOffsets": "119,182,7790,7858,7930,8000,8061,8135,8208,8269,8330,8392,8456,8518,8579,8647,8747,8807,8873,8946,9015,9072,9124,9186,9258,9334,9369,9404,9454,9515,9572,9606,9641,9676,9746,9817,9934,10135,10245,10446,10575,10647,10714,612,3518,5583,7343,7720" + }, + "to": { + "startLines": "109,110,209,210,211,212,213,214,215,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,346,347,355,356,368,369,370,371,372,376,398,473,2163,2164,2168,2169,2173,2553,2554,3623,3784,3827,3861,3898", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "6940,7009,13765,13835,13903,13975,14045,14106,14180,21077,21138,21199,21261,21325,21387,21448,21516,21616,21676,21742,21815,21884,21941,21993,22508,22580,23001,23036,23611,23661,23722,23779,23813,23991,25237,32817,145714,145831,146032,146142,146343,171753,171825,233113,242781,245687,250641,252401", + "endLines": "109,110,209,210,211,212,213,214,215,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,346,347,355,356,368,369,370,371,372,376,398,473,2163,2167,2168,2172,2173,2553,2554,3629,3826,3858,3897,3904", + "endColumns": "68,62,69,67,71,69,60,73,72,60,60,61,63,61,60,67,99,59,65,72,68,56,51,61,71,75,34,34,49,60,56,33,34,34,69,70,116,12,109,12,128,71,66,24,24,24,24,24", + "endOffsets": "7004,7067,13830,13898,13970,14040,14101,14175,14248,21133,21194,21256,21320,21382,21443,21511,21611,21671,21737,21810,21879,21936,21988,22050,22575,22651,23031,23066,23656,23717,23774,23808,23843,24021,25302,32883,145826,146027,146137,146338,146467,171820,171887,233406,245682,247747,252396,252773" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/single/anim-v21.json b/android/build/intermediates/blame/res/release/single/anim-v21.json new file mode 100644 index 000000000..ab1fe3492 --- /dev/null +++ b/android/build/intermediates/blame/res/release/single/anim-v21.json @@ -0,0 +1,10 @@ +[ + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/anim-v21/design_bottom_sheet_slide_in.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/anim-v21/design_bottom_sheet_slide_out.xml" + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/single/anim.json b/android/build/intermediates/blame/res/release/single/anim.json new file mode 100644 index 000000000..4a20c8302 --- /dev/null +++ b/android/build/intermediates/blame/res/release/single/anim.json @@ -0,0 +1,78 @@ +[ + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/anim/design_bottom_sheet_slide_in.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/anim/abc_popup_enter.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/anim/abc_slide_out_top.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/anim/abc_tooltip_exit.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/anim/design_snackbar_in.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/anim/abc_slide_in_top.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/react-native-0.19.1.aar/4235edd25620896d6b8925991ca39618/res/anim/catalyst_push_up_out.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/anim/abc_popup_exit.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/react-native-0.19.1.aar/4235edd25620896d6b8925991ca39618/res/anim/catalyst_push_up_in.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/anim/abc_tooltip_enter.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/anim/design_bottom_sheet_slide_out.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/anim/abc_slide_in_bottom.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/anim/abc_fade_in.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/anim/abc_fade_out.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/anim/design_snackbar_out.xml" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/anim/abc_slide_out_bottom.xml" + }, + { + "merged": "/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", + "source": "/Volumes/Alessio_SSD/repos/r-native_project-container/projects/expense-claim/node_modules/react-native-documentscanner-android/android/src/main/res/anim/blink.xml" + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/single/animator-v21.json b/android/build/intermediates/blame/res/release/single/animator-v21.json new file mode 100644 index 000000000..aa4d4c296 --- /dev/null +++ b/android/build/intermediates/blame/res/release/single/animator-v21.json @@ -0,0 +1,6 @@ +[ + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/animator-v21/design_appbar_state_list_animator.xml" + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/single/animator.json b/android/build/intermediates/blame/res/release/single/animator.json new file mode 100644 index 000000000..6316c94f9 --- /dev/null +++ b/android/build/intermediates/blame/res/release/single/animator.json @@ -0,0 +1,38 @@ +[ + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/animator/mtrl_fab_hide_motion_spec.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/animator/mtrl_btn_state_list_anim.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/animator/mtrl_chip_state_list_anim.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/animator/mtrl_fab_show_motion_spec.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/animator/mtrl_btn_unelevated_state_list_anim.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/animator/design_fab_hide_motion_spec.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/animator/design_fab_show_motion_spec.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/animator/mtrl_fab_transformation_sheet_collapse_spec.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/animator/mtrl_fab_transformation_sheet_expand_spec.xml" + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/single/color-v21.json b/android/build/intermediates/blame/res/release/single/color-v21.json new file mode 100644 index 000000000..2fca8d156 --- /dev/null +++ b/android/build/intermediates/blame/res/release/single/color-v21.json @@ -0,0 +1,6 @@ +[ + { + "merged": "/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", + "source": "/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" + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/single/color-v23.json b/android/build/intermediates/blame/res/release/single/color-v23.json new file mode 100644 index 000000000..67f0e3019 --- /dev/null +++ b/android/build/intermediates/blame/res/release/single/color-v23.json @@ -0,0 +1,42 @@ +[ + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/color-v23/abc_color_highlight_material.xml" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/color-v23/abc_tint_default.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/color-v23/abc_tint_edittext.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/color-v23/abc_tint_switch_track.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/color-v23/abc_tint_btn_checkable.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/color-v23/abc_tint_seek_thumb.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/color-v23/abc_tint_spinner.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/color-v23/design_tint_password_toggle.xml" + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/single/color.json b/android/build/intermediates/blame/res/release/single/color.json new file mode 100644 index 000000000..38c2c0f47 --- /dev/null +++ b/android/build/intermediates/blame/res/release/single/color.json @@ -0,0 +1,166 @@ +[ + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/color/switch_thumb_material_dark.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/color/mtrl_chip_close_icon_tint.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/color/mtrl_btn_text_color_selector.xml" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/color/abc_primary_text_material_dark.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/color/design_error.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/color/abc_tint_spinner.xml" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/color/abc_hint_foreground_material_dark.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/color/abc_tint_btn_checkable.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/color/mtrl_btn_ripple_color.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/color/abc_btn_colored_text_material.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/color/abc_hint_foreground_material_light.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/color/mtrl_tabs_icon_color_selector_colored.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/color/abc_search_url_text.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/color/mtrl_btn_bg_color_selector.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/color/mtrl_tabs_icon_color_selector.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/color/abc_tint_seek_thumb.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/color/abc_secondary_text_material_dark.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/color/design_tint_password_toggle.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/color/abc_secondary_text_material_light.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/color/abc_tint_edittext.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/color/mtrl_text_btn_text_color_selector.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/color/switch_thumb_material_light.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/color/mtrl_chip_text_color.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/color/mtrl_tabs_ripple_color.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/color/mtrl_chip_background_color.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/color/mtrl_bottom_nav_colored_item_tint.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/color/mtrl_btn_stroke_color_selector.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/color/mtrl_btn_text_btn_ripple_color.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/color/mtrl_tabs_legacy_text_color_selector.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/color/abc_primary_text_material_light.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/color/abc_tint_default.xml" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/color/abc_tint_switch_track.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/color/mtrl_bottom_nav_item_tint.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/color/mtrl_tabs_colored_ripple_color.xml" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/color/mtrl_chip_ripple_color.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/color/mtrl_fab_ripple_color.xml" + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/single/drawable-anydpi-v21.json b/android/build/intermediates/blame/res/release/single/drawable-anydpi-v21.json new file mode 100644 index 000000000..375c65796 --- /dev/null +++ b/android/build/intermediates/blame/res/release/single/drawable-anydpi-v21.json @@ -0,0 +1,10 @@ +[ + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/drawable-anydpi-v21/design_ic_visibility_off.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/drawable-anydpi-v21/design_ic_visibility.xml" + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/single/drawable-hdpi-v4.json b/android/build/intermediates/blame/res/release/single/drawable-hdpi-v4.json new file mode 100644 index 000000000..1640f4061 --- /dev/null +++ b/android/build/intermediates/blame/res/release/single/drawable-hdpi-v4.json @@ -0,0 +1,218 @@ +[ + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/drawable-hdpi-v4/design_ic_visibility_off.png" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/drawable-hdpi-v4/design_ic_visibility.png" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/single/drawable-ldrtl-hdpi-v17.json b/android/build/intermediates/blame/res/release/single/drawable-ldrtl-hdpi-v17.json new file mode 100644 index 000000000..4ba5d758a --- /dev/null +++ b/android/build/intermediates/blame/res/release/single/drawable-ldrtl-hdpi-v17.json @@ -0,0 +1,14 @@ +[ + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/single/drawable-ldrtl-mdpi-v17.json b/android/build/intermediates/blame/res/release/single/drawable-ldrtl-mdpi-v17.json new file mode 100644 index 000000000..6c595d341 --- /dev/null +++ b/android/build/intermediates/blame/res/release/single/drawable-ldrtl-mdpi-v17.json @@ -0,0 +1,14 @@ +[ + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/single/drawable-ldrtl-xhdpi-v17.json b/android/build/intermediates/blame/res/release/single/drawable-ldrtl-xhdpi-v17.json new file mode 100644 index 000000000..fc1a3ba81 --- /dev/null +++ b/android/build/intermediates/blame/res/release/single/drawable-ldrtl-xhdpi-v17.json @@ -0,0 +1,14 @@ +[ + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/single/drawable-ldrtl-xxhdpi-v17.json b/android/build/intermediates/blame/res/release/single/drawable-ldrtl-xxhdpi-v17.json new file mode 100644 index 000000000..2c21661d2 --- /dev/null +++ b/android/build/intermediates/blame/res/release/single/drawable-ldrtl-xxhdpi-v17.json @@ -0,0 +1,14 @@ +[ + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/single/drawable-ldrtl-xxxhdpi-v17.json b/android/build/intermediates/blame/res/release/single/drawable-ldrtl-xxxhdpi-v17.json new file mode 100644 index 000000000..87834c560 --- /dev/null +++ b/android/build/intermediates/blame/res/release/single/drawable-ldrtl-xxxhdpi-v17.json @@ -0,0 +1,14 @@ +[ + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/single/drawable-mdpi-v4.json b/android/build/intermediates/blame/res/release/single/drawable-mdpi-v4.json new file mode 100644 index 000000000..09d527b96 --- /dev/null +++ b/android/build/intermediates/blame/res/release/single/drawable-mdpi-v4.json @@ -0,0 +1,218 @@ +[ + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/drawable-mdpi-v4/design_ic_visibility_off.png" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/drawable-mdpi-v4/design_ic_visibility.png" + }, + { + "merged": "/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", + "source": "/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" + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/single/drawable-v21.json b/android/build/intermediates/blame/res/release/single/drawable-v21.json new file mode 100644 index 000000000..3d75ff21f --- /dev/null +++ b/android/build/intermediates/blame/res/release/single/drawable-v21.json @@ -0,0 +1,42 @@ +[ + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/drawable-v21/notification_action_background.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/drawable-v21/avd_hide_password.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-v21/abc_dialog_material_background.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-v21/abc_btn_colored_material.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-v21/abc_list_divider_material.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/drawable-v21/design_bottom_navigation_item_background.xml" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/drawable-v21/avd_show_password.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-v21/abc_edit_text_material.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/drawable-v21/design_password_eye.xml" + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/single/drawable-v23.json b/android/build/intermediates/blame/res/release/single/drawable-v23.json new file mode 100644 index 000000000..53317ed22 --- /dev/null +++ b/android/build/intermediates/blame/res/release/single/drawable-v23.json @@ -0,0 +1,6 @@ +[ + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable-v23/abc_control_background_material.xml" + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/single/drawable-watch-v20.json b/android/build/intermediates/blame/res/release/single/drawable-watch-v20.json new file mode 100644 index 000000000..62a13720f --- /dev/null +++ b/android/build/intermediates/blame/res/release/single/drawable-watch-v20.json @@ -0,0 +1,6 @@ +[ + { + "merged": "/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", + "source": "/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" + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/single/drawable-xhdpi-v4.json b/android/build/intermediates/blame/res/release/single/drawable-xhdpi-v4.json new file mode 100644 index 000000000..35bf86534 --- /dev/null +++ b/android/build/intermediates/blame/res/release/single/drawable-xhdpi-v4.json @@ -0,0 +1,218 @@ +[ + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/drawable-xhdpi-v4/design_ic_visibility.png" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/drawable-xhdpi-v4/design_ic_visibility_off.png" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/single/drawable-xxhdpi-v4.json b/android/build/intermediates/blame/res/release/single/drawable-xxhdpi-v4.json new file mode 100644 index 000000000..7c00715e3 --- /dev/null +++ b/android/build/intermediates/blame/res/release/single/drawable-xxhdpi-v4.json @@ -0,0 +1,198 @@ +[ + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/drawable-xxhdpi-v4/design_ic_visibility.png" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/drawable-xxhdpi-v4/design_ic_visibility_off.png" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/single/drawable-xxxhdpi-v4.json b/android/build/intermediates/blame/res/release/single/drawable-xxxhdpi-v4.json new file mode 100644 index 000000000..ff76b9e87 --- /dev/null +++ b/android/build/intermediates/blame/res/release/single/drawable-xxxhdpi-v4.json @@ -0,0 +1,114 @@ +[ + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/drawable-xxxhdpi-v4/design_ic_visibility_off.png" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/drawable-xxxhdpi-v4/design_ic_visibility.png" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/single/drawable.json b/android/build/intermediates/blame/res/release/single/drawable.json new file mode 100644 index 000000000..b6638d16d --- /dev/null +++ b/android/build/intermediates/blame/res/release/single/drawable.json @@ -0,0 +1,206 @@ +[ + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable/abc_seekbar_tick_mark_material.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable/abc_tab_indicator_material.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable/abc_dialog_material_background.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/drawable/notification_icon_background.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/drawable/design_fab_background.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable/abc_ic_menu_overflow_material.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/drawable/navigation_empty_icon.xml" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable/abc_switch_thumb_material.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable/abc_list_selector_holo_light.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/drawable/mtrl_snackbar_background.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable/abc_text_cursor_material.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/drawable/ic_mtrl_chip_checked_black.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/drawable/design_password_eye.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable/abc_spinner_textfield_background_material.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable/abc_ic_ab_back_material.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable/abc_item_background_holo_light.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/drawable/ic_mtrl_chip_close_circle.xml" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable/tooltip_frame_dark.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/drawable/notification_bg.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable/abc_list_divider_material.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/drawable/design_bottom_navigation_item_background.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/drawable/notification_bg_low.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable/tooltip_frame_light.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/drawable/notification_tile_bg.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable/abc_ratingbar_indicator_material.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable/abc_btn_default_mtrl_shape.xml" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/drawable/design_snackbar_background.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable/abc_item_background_holo_dark.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable/abc_list_selector_holo_dark.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/drawable/mtrl_tabs_default_indicator.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable/abc_btn_colored_material.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable/abc_vector_test.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable/abc_btn_radio_material.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable/abc_ic_clear_material.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable/abc_textfield_search_material.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable/abc_ratingbar_small_material.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable/abc_btn_borderless_material.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/drawable/ic_mtrl_chip_checked_circle.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable/abc_btn_check_material.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable/abc_seekbar_track_material.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable/abc_seekbar_thumb_material.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable/abc_ratingbar_material.xml" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable/abc_ic_search_api_material.xml" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable/abc_cab_background_internal_bg.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable/abc_edit_text_material.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/drawable/abc_cab_background_top_material.xml" + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/single/interpolator-v21.json b/android/build/intermediates/blame/res/release/single/interpolator-v21.json new file mode 100644 index 000000000..6761b6e7f --- /dev/null +++ b/android/build/intermediates/blame/res/release/single/interpolator-v21.json @@ -0,0 +1,14 @@ +[ + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/interpolator-v21/mtrl_fast_out_slow_in.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/interpolator-v21/mtrl_linear_out_slow_in.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/interpolator-v21/mtrl_fast_out_linear_in.xml" + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/single/interpolator.json b/android/build/intermediates/blame/res/release/single/interpolator.json new file mode 100644 index 000000000..8d318bf3e --- /dev/null +++ b/android/build/intermediates/blame/res/release/single/interpolator.json @@ -0,0 +1,18 @@ +[ + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/interpolator/mtrl_linear_out_slow_in.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/interpolator/mtrl_linear.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/interpolator/mtrl_fast_out_slow_in.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/interpolator/mtrl_fast_out_linear_in.xml" + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/single/layout-sw600dp-v13.json b/android/build/intermediates/blame/res/release/single/layout-sw600dp-v13.json new file mode 100644 index 000000000..787de0451 --- /dev/null +++ b/android/build/intermediates/blame/res/release/single/layout-sw600dp-v13.json @@ -0,0 +1,10 @@ +[ + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/layout-sw600dp-v13/mtrl_layout_snackbar.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/layout-sw600dp-v13/design_layout_snackbar.xml" + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/single/layout-v16.json b/android/build/intermediates/blame/res/release/single/layout-v16.json new file mode 100644 index 000000000..f2d09d8ca --- /dev/null +++ b/android/build/intermediates/blame/res/release/single/layout-v16.json @@ -0,0 +1,6 @@ +[ + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/layout-v16/notification_template_custom_big.xml" + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/single/layout-v21.json b/android/build/intermediates/blame/res/release/single/layout-v21.json new file mode 100644 index 000000000..2bbd75a11 --- /dev/null +++ b/android/build/intermediates/blame/res/release/single/layout-v21.json @@ -0,0 +1,18 @@ +[ + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/layout-v21/notification_template_icon_group.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/layout-v21/notification_template_custom_big.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/layout-v21/notification_action.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/layout-v21/notification_action_tombstone.xml" + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/single/layout-v26.json b/android/build/intermediates/blame/res/release/single/layout-v26.json new file mode 100644 index 000000000..b472a9768 --- /dev/null +++ b/android/build/intermediates/blame/res/release/single/layout-v26.json @@ -0,0 +1,6 @@ +[ + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/layout-v26/abc_screen_toolbar.xml" + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/single/layout-watch-v20.json b/android/build/intermediates/blame/res/release/single/layout-watch-v20.json new file mode 100644 index 000000000..3fe8b9a8a --- /dev/null +++ b/android/build/intermediates/blame/res/release/single/layout-watch-v20.json @@ -0,0 +1,10 @@ +[ + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/single/layout.json b/android/build/intermediates/blame/res/release/single/layout.json new file mode 100644 index 000000000..864f91c1a --- /dev/null +++ b/android/build/intermediates/blame/res/release/single/layout.json @@ -0,0 +1,234 @@ +[ + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/layout/design_layout_tab_icon.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/layout/notification_template_part_time.xml" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/layout/mtrl_layout_snackbar_include.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/layout/abc_screen_content_include.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/layout/abc_dialog_title_material.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/layout/abc_alert_dialog_material.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/react-native-0.19.1.aar/4235edd25620896d6b8925991ca39618/res/layout/fps_view.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/layout/abc_action_bar_up_container.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/layout/abc_action_menu_layout.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/layout/design_navigation_item_subheader.xml" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/layout/design_text_input_password_icon.xml" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/layout/abc_alert_dialog_title_material.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/layout/abc_search_view.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/layout/abc_select_dialog_material.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/layout/design_layout_snackbar.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/react-native-0.19.1.aar/4235edd25620896d6b8925991ca39618/res/layout/redbox_item_title.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/layout/notification_action_tombstone.xml" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/layout/mtrl_layout_snackbar.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/layout/abc_list_menu_item_radio.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/layout/design_bottom_navigation_item.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/layout/abc_list_menu_item_checkbox.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/layout/support_simple_spinner_dropdown_item.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/react-native-0.19.1.aar/4235edd25620896d6b8925991ca39618/res/layout/redbox_view.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/layout/notification_template_icon_group.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/layout/select_dialog_item_material.xml" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/layout/abc_cascading_menu_item_layout.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/layout/abc_list_menu_item_layout.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/layout/abc_tooltip.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/layout/notification_action.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/layout/design_layout_tab_text.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/layout/design_navigation_menu.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/layout/abc_expanded_menu_layout.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/layout/abc_screen_toolbar.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/layout/select_dialog_singlechoice_material.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/layout/design_navigation_item.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/support-compat-28.0.0.aar/5e19b818e272646a6a945fffa6e6cf2e/res/layout/notification_template_part_chronometer.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/layout/abc_action_menu_item_layout.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/layout/design_layout_snackbar_include.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/layout/abc_action_bar_title_item.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/layout/abc_list_menu_item_icon.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/layout/select_dialog_multichoice_material.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/layout/design_menu_item_action_area.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/layout/abc_activity_chooser_view.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/layout/design_navigation_item_header.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/layout/abc_action_mode_bar.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/layout/design_navigation_item_separator.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/layout/design_bottom_sheet_dialog.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/layout/abc_screen_simple.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/2f34531135f88ed0ef2a797a79dfb1a0/res/layout/abc_popup_menu_item_layout.xml" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/react-native-0.19.1.aar/4235edd25620896d6b8925991ca39618/res/layout/redbox_item_frame.xml" + }, + { + "merged": "/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", + "source": "/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" + }, + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/design-28.0.0.aar/cf9bbf640108b9322bcdc4a41c77c029/res/layout/design_navigation_menu_item.xml" + } +] \ No newline at end of file diff --git a/android/build/intermediates/blame/res/release/single/xml.json b/android/build/intermediates/blame/res/release/single/xml.json new file mode 100644 index 000000000..c93fdf915 --- /dev/null +++ b/android/build/intermediates/blame/res/release/single/xml.json @@ -0,0 +1,6 @@ +[ + { + "merged": "/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", + "source": "/Users/alessioprestileo/.gradle/caches/transforms-1/files-1.1/react-native-0.19.1.aar/4235edd25620896d6b8925991ca39618/res/xml/preferences.xml" + } +] \ No newline at end of file diff --git a/android/build/intermediates/bundles/debug/AndroidManifest.xml b/android/build/intermediates/bundles/debug/AndroidManifest.xml new file mode 100644 index 000000000..bc9dc2863 --- /dev/null +++ b/android/build/intermediates/bundles/debug/AndroidManifest.xml @@ -0,0 +1,18 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/android/build/intermediates/bundles/debug/R.txt b/android/build/intermediates/bundles/debug/R.txt new file mode 100644 index 000000000..dd62ef01e --- /dev/null +++ b/android/build/intermediates/bundles/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/bundles/debug/res/drawable-anydpi-v21/angle.xml b/android/build/intermediates/bundles/debug/res/drawable-anydpi-v21/angle.xml new file mode 100644 index 000000000..4709b71b3 --- /dev/null +++ b/android/build/intermediates/bundles/debug/res/drawable-anydpi-v21/angle.xml @@ -0,0 +1,7 @@ + + + diff --git a/android/build/intermediates/bundles/debug/res/drawable-anydpi-v21/ic_arrow_back_24dp.xml b/android/build/intermediates/bundles/debug/res/drawable-anydpi-v21/ic_arrow_back_24dp.xml new file mode 100644 index 000000000..38fbc261b --- /dev/null +++ b/android/build/intermediates/bundles/debug/res/drawable-anydpi-v21/ic_arrow_back_24dp.xml @@ -0,0 +1,9 @@ + + + diff --git a/android/build/intermediates/bundles/debug/res/drawable-anydpi-v21/ic_camera_green.xml b/android/build/intermediates/bundles/debug/res/drawable-anydpi-v21/ic_camera_green.xml new file mode 100644 index 000000000..f168c5131 --- /dev/null +++ b/android/build/intermediates/bundles/debug/res/drawable-anydpi-v21/ic_camera_green.xml @@ -0,0 +1,11 @@ + + + diff --git a/android/build/intermediates/bundles/debug/res/drawable-anydpi-v21/ic_done_all_24dp.xml b/android/build/intermediates/bundles/debug/res/drawable-anydpi-v21/ic_done_all_24dp.xml new file mode 100644 index 000000000..07de58256 --- /dev/null +++ b/android/build/intermediates/bundles/debug/res/drawable-anydpi-v21/ic_done_all_24dp.xml @@ -0,0 +1,9 @@ + + + diff --git a/android/build/intermediates/bundles/debug/res/drawable-anydpi-v21/ic_find_in_page.xml b/android/build/intermediates/bundles/debug/res/drawable-anydpi-v21/ic_find_in_page.xml new file mode 100644 index 000000000..d2ac3ac62 --- /dev/null +++ b/android/build/intermediates/bundles/debug/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/debug/res/drawable-anydpi-v21/ic_flash_on_24dp.xml b/android/build/intermediates/bundles/debug/res/drawable-anydpi-v21/ic_flash_on_24dp.xml new file mode 100644 index 000000000..a3c81cc38 --- /dev/null +++ b/android/build/intermediates/bundles/debug/res/drawable-anydpi-v21/ic_flash_on_24dp.xml @@ -0,0 +1,9 @@ + + + diff --git a/android/build/intermediates/bundles/debug/res/drawable-anydpi-v21/ic_info_outline_white_24px.xml b/android/build/intermediates/bundles/debug/res/drawable-anydpi-v21/ic_info_outline_white_24px.xml new file mode 100644 index 000000000..0234f6551 --- /dev/null +++ b/android/build/intermediates/bundles/debug/res/drawable-anydpi-v21/ic_info_outline_white_24px.xml @@ -0,0 +1,9 @@ + + + diff --git a/android/build/intermediates/bundles/debug/res/drawable-anydpi-v21/ic_launcher_background.xml b/android/build/intermediates/bundles/debug/res/drawable-anydpi-v21/ic_launcher_background.xml new file mode 100644 index 000000000..d5fccc538 --- /dev/null +++ b/android/build/intermediates/bundles/debug/res/drawable-anydpi-v21/ic_launcher_background.xml @@ -0,0 +1,170 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/android/build/intermediates/bundles/debug/res/drawable-anydpi-v21/ic_menu_tag.xml b/android/build/intermediates/bundles/debug/res/drawable-anydpi-v21/ic_menu_tag.xml new file mode 100644 index 000000000..0fc39f435 --- /dev/null +++ b/android/build/intermediates/bundles/debug/res/drawable-anydpi-v21/ic_menu_tag.xml @@ -0,0 +1,9 @@ + + + diff --git a/android/build/intermediates/bundles/debug/res/drawable-anydpi-v21/ic_monochrome.xml b/android/build/intermediates/bundles/debug/res/drawable-anydpi-v21/ic_monochrome.xml new file mode 100644 index 000000000..b7abf9780 --- /dev/null +++ b/android/build/intermediates/bundles/debug/res/drawable-anydpi-v21/ic_monochrome.xml @@ -0,0 +1,9 @@ + + + \ No newline at end of file diff --git a/android/build/intermediates/bundles/debug/res/drawable-anydpi-v21/ic_palette.xml b/android/build/intermediates/bundles/debug/res/drawable-anydpi-v21/ic_palette.xml new file mode 100644 index 000000000..c0bccf28f --- /dev/null +++ b/android/build/intermediates/bundles/debug/res/drawable-anydpi-v21/ic_palette.xml @@ -0,0 +1,9 @@ + + + \ No newline at end of file diff --git a/android/build/intermediates/bundles/debug/res/drawable-anydpi-v21/ic_photo_filter_white_24dp.xml b/android/build/intermediates/bundles/debug/res/drawable-anydpi-v21/ic_photo_filter_white_24dp.xml new file mode 100644 index 000000000..1de4266fb --- /dev/null +++ b/android/build/intermediates/bundles/debug/res/drawable-anydpi-v21/ic_photo_filter_white_24dp.xml @@ -0,0 +1,9 @@ + + + diff --git a/android/build/intermediates/bundles/debug/res/drawable-anydpi-v21/ic_settings.xml b/android/build/intermediates/bundles/debug/res/drawable-anydpi-v21/ic_settings.xml new file mode 100644 index 000000000..ca2916e55 --- /dev/null +++ b/android/build/intermediates/bundles/debug/res/drawable-anydpi-v21/ic_settings.xml @@ -0,0 +1,9 @@ + + + \ No newline at end of file diff --git a/android/build/intermediates/bundles/debug/res/drawable-anydpi-v21/ic_tag_bell.xml b/android/build/intermediates/bundles/debug/res/drawable-anydpi-v21/ic_tag_bell.xml new file mode 100644 index 000000000..4e8870e8e --- /dev/null +++ b/android/build/intermediates/bundles/debug/res/drawable-anydpi-v21/ic_tag_bell.xml @@ -0,0 +1,4 @@ + + + diff --git a/android/build/intermediates/bundles/debug/res/drawable-anydpi-v21/ic_tag_game.xml b/android/build/intermediates/bundles/debug/res/drawable-anydpi-v21/ic_tag_game.xml new file mode 100644 index 000000000..4a8c8fc8d --- /dev/null +++ b/android/build/intermediates/bundles/debug/res/drawable-anydpi-v21/ic_tag_game.xml @@ -0,0 +1,4 @@ + + + diff --git a/android/build/intermediates/bundles/debug/res/drawable-anydpi-v21/ic_tag_gift.xml b/android/build/intermediates/bundles/debug/res/drawable-anydpi-v21/ic_tag_gift.xml new file mode 100644 index 000000000..9267e7036 --- /dev/null +++ b/android/build/intermediates/bundles/debug/res/drawable-anydpi-v21/ic_tag_gift.xml @@ -0,0 +1,4 @@ + + + diff --git a/android/build/intermediates/bundles/debug/res/drawable-anydpi-v21/ic_tag_magnet.xml b/android/build/intermediates/bundles/debug/res/drawable-anydpi-v21/ic_tag_magnet.xml new file mode 100644 index 000000000..32c78e9c4 --- /dev/null +++ b/android/build/intermediates/bundles/debug/res/drawable-anydpi-v21/ic_tag_magnet.xml @@ -0,0 +1,4 @@ + + + diff --git a/android/build/intermediates/bundles/debug/res/drawable-anydpi-v21/ic_tag_rocket.xml b/android/build/intermediates/bundles/debug/res/drawable-anydpi-v21/ic_tag_rocket.xml new file mode 100644 index 000000000..6acc86aec --- /dev/null +++ b/android/build/intermediates/bundles/debug/res/drawable-anydpi-v21/ic_tag_rocket.xml @@ -0,0 +1,4 @@ + + + diff --git a/android/build/intermediates/bundles/debug/res/drawable-anydpi-v21/ic_tag_star.xml b/android/build/intermediates/bundles/debug/res/drawable-anydpi-v21/ic_tag_star.xml new file mode 100644 index 000000000..692f1fd53 --- /dev/null +++ b/android/build/intermediates/bundles/debug/res/drawable-anydpi-v21/ic_tag_star.xml @@ -0,0 +1,4 @@ + + + diff --git a/android/build/intermediates/bundles/debug/res/drawable-anydpi-v21/ic_tag_tv.xml b/android/build/intermediates/bundles/debug/res/drawable-anydpi-v21/ic_tag_tv.xml new file mode 100644 index 000000000..13a82b0a1 --- /dev/null +++ b/android/build/intermediates/bundles/debug/res/drawable-anydpi-v21/ic_tag_tv.xml @@ -0,0 +1,4 @@ + + + diff --git a/android/build/intermediates/bundles/debug/res/drawable-hdpi-v4/angle.png b/android/build/intermediates/bundles/debug/res/drawable-hdpi-v4/angle.png new file mode 100644 index 000000000..5433efae0 Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/drawable-hdpi-v4/angle.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-hdpi-v4/ic_arrow_back_24dp.png b/android/build/intermediates/bundles/debug/res/drawable-hdpi-v4/ic_arrow_back_24dp.png new file mode 100644 index 000000000..ac90addd1 Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/drawable-hdpi-v4/ic_arrow_back_24dp.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-hdpi-v4/ic_camera_green.png b/android/build/intermediates/bundles/debug/res/drawable-hdpi-v4/ic_camera_green.png new file mode 100644 index 000000000..7b8e7f0d3 Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/drawable-hdpi-v4/ic_camera_green.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-hdpi-v4/ic_delete_white_24dp.png b/android/build/intermediates/bundles/debug/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/debug/res/drawable-hdpi-v4/ic_delete_white_24dp.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-hdpi-v4/ic_done_all_24dp.png b/android/build/intermediates/bundles/debug/res/drawable-hdpi-v4/ic_done_all_24dp.png new file mode 100644 index 000000000..379119cc9 Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/drawable-hdpi-v4/ic_done_all_24dp.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-hdpi-v4/ic_find_in_page.png b/android/build/intermediates/bundles/debug/res/drawable-hdpi-v4/ic_find_in_page.png new file mode 100644 index 000000000..a1c2d2c67 Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/drawable-hdpi-v4/ic_find_in_page.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-hdpi-v4/ic_flash_on_24dp.png b/android/build/intermediates/bundles/debug/res/drawable-hdpi-v4/ic_flash_on_24dp.png new file mode 100644 index 000000000..589602aaf Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/drawable-hdpi-v4/ic_flash_on_24dp.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-hdpi-v4/ic_info_outline_white_24px.png b/android/build/intermediates/bundles/debug/res/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/bundles/debug/res/drawable-hdpi-v4/ic_info_outline_white_24px.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-hdpi-v4/ic_launcher_background.png b/android/build/intermediates/bundles/debug/res/drawable-hdpi-v4/ic_launcher_background.png new file mode 100644 index 000000000..b7e37ae94 Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/drawable-hdpi-v4/ic_launcher_background.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-hdpi-v4/ic_menu_tag.png b/android/build/intermediates/bundles/debug/res/drawable-hdpi-v4/ic_menu_tag.png new file mode 100644 index 000000000..37462f473 Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/drawable-hdpi-v4/ic_menu_tag.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-hdpi-v4/ic_monochrome.png b/android/build/intermediates/bundles/debug/res/drawable-hdpi-v4/ic_monochrome.png new file mode 100644 index 000000000..9fdc78541 Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/drawable-hdpi-v4/ic_monochrome.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-hdpi-v4/ic_palette.png b/android/build/intermediates/bundles/debug/res/drawable-hdpi-v4/ic_palette.png new file mode 100644 index 000000000..653306eb8 Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/drawable-hdpi-v4/ic_palette.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-hdpi-v4/ic_photo_filter_white_24dp.png b/android/build/intermediates/bundles/debug/res/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/bundles/debug/res/drawable-hdpi-v4/ic_photo_filter_white_24dp.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-hdpi-v4/ic_settings.png b/android/build/intermediates/bundles/debug/res/drawable-hdpi-v4/ic_settings.png new file mode 100644 index 000000000..befb03bd0 Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/drawable-hdpi-v4/ic_settings.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-hdpi-v4/ic_tag_bell.png b/android/build/intermediates/bundles/debug/res/drawable-hdpi-v4/ic_tag_bell.png new file mode 100644 index 000000000..6fd1885b9 Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/drawable-hdpi-v4/ic_tag_bell.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-hdpi-v4/ic_tag_game.png b/android/build/intermediates/bundles/debug/res/drawable-hdpi-v4/ic_tag_game.png new file mode 100644 index 000000000..c5a80bc59 Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/drawable-hdpi-v4/ic_tag_game.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-hdpi-v4/ic_tag_gift.png b/android/build/intermediates/bundles/debug/res/drawable-hdpi-v4/ic_tag_gift.png new file mode 100644 index 000000000..bc4ce02f9 Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/drawable-hdpi-v4/ic_tag_gift.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-hdpi-v4/ic_tag_magnet.png b/android/build/intermediates/bundles/debug/res/drawable-hdpi-v4/ic_tag_magnet.png new file mode 100644 index 000000000..d6c97a5eb Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/drawable-hdpi-v4/ic_tag_magnet.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-hdpi-v4/ic_tag_rocket.png b/android/build/intermediates/bundles/debug/res/drawable-hdpi-v4/ic_tag_rocket.png new file mode 100644 index 000000000..24a0aa2f6 Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/drawable-hdpi-v4/ic_tag_rocket.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-hdpi-v4/ic_tag_star.png b/android/build/intermediates/bundles/debug/res/drawable-hdpi-v4/ic_tag_star.png new file mode 100644 index 000000000..7c1da37c6 Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/drawable-hdpi-v4/ic_tag_star.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-hdpi-v4/ic_tag_tv.png b/android/build/intermediates/bundles/debug/res/drawable-hdpi-v4/ic_tag_tv.png new file mode 100644 index 000000000..8ac4c7761 Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/drawable-hdpi-v4/ic_tag_tv.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-ldpi-v4/angle.png b/android/build/intermediates/bundles/debug/res/drawable-ldpi-v4/angle.png new file mode 100644 index 000000000..2bc26f68f Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/drawable-ldpi-v4/angle.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-ldpi-v4/ic_arrow_back_24dp.png b/android/build/intermediates/bundles/debug/res/drawable-ldpi-v4/ic_arrow_back_24dp.png new file mode 100644 index 000000000..51a52c68e Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/drawable-ldpi-v4/ic_arrow_back_24dp.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-ldpi-v4/ic_camera_green.png b/android/build/intermediates/bundles/debug/res/drawable-ldpi-v4/ic_camera_green.png new file mode 100644 index 000000000..cb5d4d53c Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/drawable-ldpi-v4/ic_camera_green.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-ldpi-v4/ic_done_all_24dp.png b/android/build/intermediates/bundles/debug/res/drawable-ldpi-v4/ic_done_all_24dp.png new file mode 100644 index 000000000..6ae7378c1 Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/drawable-ldpi-v4/ic_done_all_24dp.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-ldpi-v4/ic_find_in_page.png b/android/build/intermediates/bundles/debug/res/drawable-ldpi-v4/ic_find_in_page.png new file mode 100644 index 000000000..92aaea9e2 Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/drawable-ldpi-v4/ic_find_in_page.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-ldpi-v4/ic_flash_on_24dp.png b/android/build/intermediates/bundles/debug/res/drawable-ldpi-v4/ic_flash_on_24dp.png new file mode 100644 index 000000000..c79e82a4b Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/drawable-ldpi-v4/ic_flash_on_24dp.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-ldpi-v4/ic_info_outline_white_24px.png b/android/build/intermediates/bundles/debug/res/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/bundles/debug/res/drawable-ldpi-v4/ic_info_outline_white_24px.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-ldpi-v4/ic_launcher_background.png b/android/build/intermediates/bundles/debug/res/drawable-ldpi-v4/ic_launcher_background.png new file mode 100644 index 000000000..0ddbe1c5f Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/drawable-ldpi-v4/ic_launcher_background.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-ldpi-v4/ic_menu_tag.png b/android/build/intermediates/bundles/debug/res/drawable-ldpi-v4/ic_menu_tag.png new file mode 100644 index 000000000..6a3e242e2 Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/drawable-ldpi-v4/ic_menu_tag.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-ldpi-v4/ic_monochrome.png b/android/build/intermediates/bundles/debug/res/drawable-ldpi-v4/ic_monochrome.png new file mode 100644 index 000000000..627d0be43 Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/drawable-ldpi-v4/ic_monochrome.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-ldpi-v4/ic_palette.png b/android/build/intermediates/bundles/debug/res/drawable-ldpi-v4/ic_palette.png new file mode 100644 index 000000000..b85e842b4 Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/drawable-ldpi-v4/ic_palette.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-ldpi-v4/ic_photo_filter_white_24dp.png b/android/build/intermediates/bundles/debug/res/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/bundles/debug/res/drawable-ldpi-v4/ic_photo_filter_white_24dp.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-ldpi-v4/ic_settings.png b/android/build/intermediates/bundles/debug/res/drawable-ldpi-v4/ic_settings.png new file mode 100644 index 000000000..3cba81fa4 Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/drawable-ldpi-v4/ic_settings.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-ldpi-v4/ic_tag_bell.png b/android/build/intermediates/bundles/debug/res/drawable-ldpi-v4/ic_tag_bell.png new file mode 100644 index 000000000..9c7da82a0 Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/drawable-ldpi-v4/ic_tag_bell.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-ldpi-v4/ic_tag_game.png b/android/build/intermediates/bundles/debug/res/drawable-ldpi-v4/ic_tag_game.png new file mode 100644 index 000000000..48f25c250 Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/drawable-ldpi-v4/ic_tag_game.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-ldpi-v4/ic_tag_gift.png b/android/build/intermediates/bundles/debug/res/drawable-ldpi-v4/ic_tag_gift.png new file mode 100644 index 000000000..25bcca44e Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/drawable-ldpi-v4/ic_tag_gift.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-ldpi-v4/ic_tag_magnet.png b/android/build/intermediates/bundles/debug/res/drawable-ldpi-v4/ic_tag_magnet.png new file mode 100644 index 000000000..d57f9dafb Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/drawable-ldpi-v4/ic_tag_magnet.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-ldpi-v4/ic_tag_rocket.png b/android/build/intermediates/bundles/debug/res/drawable-ldpi-v4/ic_tag_rocket.png new file mode 100644 index 000000000..56a52cd85 Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/drawable-ldpi-v4/ic_tag_rocket.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-ldpi-v4/ic_tag_star.png b/android/build/intermediates/bundles/debug/res/drawable-ldpi-v4/ic_tag_star.png new file mode 100644 index 000000000..b1e67a634 Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/drawable-ldpi-v4/ic_tag_star.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-ldpi-v4/ic_tag_tv.png b/android/build/intermediates/bundles/debug/res/drawable-ldpi-v4/ic_tag_tv.png new file mode 100644 index 000000000..cb78d2acf Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/drawable-ldpi-v4/ic_tag_tv.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-mdpi-v4/angle.png b/android/build/intermediates/bundles/debug/res/drawable-mdpi-v4/angle.png new file mode 100644 index 000000000..0ef8547a0 Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/drawable-mdpi-v4/angle.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-mdpi-v4/ic_arrow_back_24dp.png b/android/build/intermediates/bundles/debug/res/drawable-mdpi-v4/ic_arrow_back_24dp.png new file mode 100644 index 000000000..4214c25d1 Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/drawable-mdpi-v4/ic_arrow_back_24dp.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-mdpi-v4/ic_camera_green.png b/android/build/intermediates/bundles/debug/res/drawable-mdpi-v4/ic_camera_green.png new file mode 100644 index 000000000..6b2f061a4 Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/drawable-mdpi-v4/ic_camera_green.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-mdpi-v4/ic_delete_white_24dp.png b/android/build/intermediates/bundles/debug/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/debug/res/drawable-mdpi-v4/ic_delete_white_24dp.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-mdpi-v4/ic_done_all_24dp.png b/android/build/intermediates/bundles/debug/res/drawable-mdpi-v4/ic_done_all_24dp.png new file mode 100644 index 000000000..d00da71dc Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/drawable-mdpi-v4/ic_done_all_24dp.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-mdpi-v4/ic_find_in_page.png b/android/build/intermediates/bundles/debug/res/drawable-mdpi-v4/ic_find_in_page.png new file mode 100644 index 000000000..6f76def11 Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/drawable-mdpi-v4/ic_find_in_page.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-mdpi-v4/ic_flash_on_24dp.png b/android/build/intermediates/bundles/debug/res/drawable-mdpi-v4/ic_flash_on_24dp.png new file mode 100644 index 000000000..3717dcd22 Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/drawable-mdpi-v4/ic_flash_on_24dp.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-mdpi-v4/ic_info_outline_white_24px.png b/android/build/intermediates/bundles/debug/res/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/bundles/debug/res/drawable-mdpi-v4/ic_info_outline_white_24px.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-mdpi-v4/ic_launcher_background.png b/android/build/intermediates/bundles/debug/res/drawable-mdpi-v4/ic_launcher_background.png new file mode 100644 index 000000000..366e2de53 Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/drawable-mdpi-v4/ic_launcher_background.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-mdpi-v4/ic_menu_tag.png b/android/build/intermediates/bundles/debug/res/drawable-mdpi-v4/ic_menu_tag.png new file mode 100644 index 000000000..d292d9cf4 Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/drawable-mdpi-v4/ic_menu_tag.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-mdpi-v4/ic_monochrome.png b/android/build/intermediates/bundles/debug/res/drawable-mdpi-v4/ic_monochrome.png new file mode 100644 index 000000000..b596690f5 Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/drawable-mdpi-v4/ic_monochrome.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-mdpi-v4/ic_palette.png b/android/build/intermediates/bundles/debug/res/drawable-mdpi-v4/ic_palette.png new file mode 100644 index 000000000..ce5190cdb Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/drawable-mdpi-v4/ic_palette.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-mdpi-v4/ic_photo_filter_white_24dp.png b/android/build/intermediates/bundles/debug/res/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/bundles/debug/res/drawable-mdpi-v4/ic_photo_filter_white_24dp.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-mdpi-v4/ic_settings.png b/android/build/intermediates/bundles/debug/res/drawable-mdpi-v4/ic_settings.png new file mode 100644 index 000000000..c166d6834 Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/drawable-mdpi-v4/ic_settings.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-mdpi-v4/ic_tag_bell.png b/android/build/intermediates/bundles/debug/res/drawable-mdpi-v4/ic_tag_bell.png new file mode 100644 index 000000000..7be0dce10 Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/drawable-mdpi-v4/ic_tag_bell.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-mdpi-v4/ic_tag_game.png b/android/build/intermediates/bundles/debug/res/drawable-mdpi-v4/ic_tag_game.png new file mode 100644 index 000000000..1efaa4eb2 Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/drawable-mdpi-v4/ic_tag_game.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-mdpi-v4/ic_tag_gift.png b/android/build/intermediates/bundles/debug/res/drawable-mdpi-v4/ic_tag_gift.png new file mode 100644 index 000000000..14d873f2f Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/drawable-mdpi-v4/ic_tag_gift.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-mdpi-v4/ic_tag_magnet.png b/android/build/intermediates/bundles/debug/res/drawable-mdpi-v4/ic_tag_magnet.png new file mode 100644 index 000000000..7af83edd5 Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/drawable-mdpi-v4/ic_tag_magnet.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-mdpi-v4/ic_tag_rocket.png b/android/build/intermediates/bundles/debug/res/drawable-mdpi-v4/ic_tag_rocket.png new file mode 100644 index 000000000..836cb2187 Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/drawable-mdpi-v4/ic_tag_rocket.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-mdpi-v4/ic_tag_star.png b/android/build/intermediates/bundles/debug/res/drawable-mdpi-v4/ic_tag_star.png new file mode 100644 index 000000000..3ccfcc417 Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/drawable-mdpi-v4/ic_tag_star.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-mdpi-v4/ic_tag_tv.png b/android/build/intermediates/bundles/debug/res/drawable-mdpi-v4/ic_tag_tv.png new file mode 100644 index 000000000..d46d1674f Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/drawable-mdpi-v4/ic_tag_tv.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-v21/ic_menu_camera.xml b/android/build/intermediates/bundles/debug/res/drawable-v21/ic_menu_camera.xml new file mode 100644 index 000000000..0d9ea104b --- /dev/null +++ b/android/build/intermediates/bundles/debug/res/drawable-v21/ic_menu_camera.xml @@ -0,0 +1,12 @@ + + + + diff --git a/android/build/intermediates/bundles/debug/res/drawable-v21/ic_menu_gallery.xml b/android/build/intermediates/bundles/debug/res/drawable-v21/ic_menu_gallery.xml new file mode 100644 index 000000000..f6872c409 --- /dev/null +++ b/android/build/intermediates/bundles/debug/res/drawable-v21/ic_menu_gallery.xml @@ -0,0 +1,9 @@ + + + diff --git a/android/build/intermediates/bundles/debug/res/drawable-v21/ic_menu_manage.xml b/android/build/intermediates/bundles/debug/res/drawable-v21/ic_menu_manage.xml new file mode 100644 index 000000000..c1be60b36 --- /dev/null +++ b/android/build/intermediates/bundles/debug/res/drawable-v21/ic_menu_manage.xml @@ -0,0 +1,9 @@ + + + \ No newline at end of file diff --git a/android/build/intermediates/bundles/debug/res/drawable-v21/ic_menu_send.xml b/android/build/intermediates/bundles/debug/res/drawable-v21/ic_menu_send.xml new file mode 100644 index 000000000..00c668c60 --- /dev/null +++ b/android/build/intermediates/bundles/debug/res/drawable-v21/ic_menu_send.xml @@ -0,0 +1,9 @@ + + + diff --git a/android/build/intermediates/bundles/debug/res/drawable-v21/ic_menu_share.xml b/android/build/intermediates/bundles/debug/res/drawable-v21/ic_menu_share.xml new file mode 100644 index 000000000..c5027c659 --- /dev/null +++ b/android/build/intermediates/bundles/debug/res/drawable-v21/ic_menu_share.xml @@ -0,0 +1,9 @@ + + + diff --git a/android/build/intermediates/bundles/debug/res/drawable-v21/ic_menu_slideshow.xml b/android/build/intermediates/bundles/debug/res/drawable-v21/ic_menu_slideshow.xml new file mode 100644 index 000000000..209aa6430 --- /dev/null +++ b/android/build/intermediates/bundles/debug/res/drawable-v21/ic_menu_slideshow.xml @@ -0,0 +1,9 @@ + + + diff --git a/android/build/intermediates/bundles/debug/res/drawable-v24/ic_launcher_foreground.xml b/android/build/intermediates/bundles/debug/res/drawable-v24/ic_launcher_foreground.xml new file mode 100644 index 000000000..89c01cbfd --- /dev/null +++ b/android/build/intermediates/bundles/debug/res/drawable-v24/ic_launcher_foreground.xml @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/android/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/angle.png b/android/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/angle.png new file mode 100644 index 000000000..3e2fe209b Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/angle.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/ic_arrow_back_24dp.png b/android/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/ic_arrow_back_24dp.png new file mode 100644 index 000000000..f09bce589 Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/ic_arrow_back_24dp.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/ic_camera_green.png b/android/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/ic_camera_green.png new file mode 100644 index 000000000..7b6420e46 Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/ic_camera_green.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/ic_delete_white_24dp.png b/android/build/intermediates/bundles/debug/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/debug/res/drawable-xhdpi-v4/ic_delete_white_24dp.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/ic_done_all_24dp.png b/android/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/ic_done_all_24dp.png new file mode 100644 index 000000000..161817679 Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/ic_done_all_24dp.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/ic_find_in_page.png b/android/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/ic_find_in_page.png new file mode 100644 index 000000000..41bd4bbf5 Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/ic_find_in_page.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/ic_flash_on_24dp.png b/android/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/ic_flash_on_24dp.png new file mode 100644 index 000000000..5b352ef2c Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/ic_flash_on_24dp.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/ic_info_outline_white_24px.png b/android/build/intermediates/bundles/debug/res/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/bundles/debug/res/drawable-xhdpi-v4/ic_info_outline_white_24px.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/ic_launcher_background.png b/android/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/ic_launcher_background.png new file mode 100644 index 000000000..c771e70e9 Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/ic_launcher_background.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/ic_menu_tag.png b/android/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/ic_menu_tag.png new file mode 100644 index 000000000..5f84b6bfa Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/ic_menu_tag.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/ic_monochrome.png b/android/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/ic_monochrome.png new file mode 100644 index 000000000..5102eca6b Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/ic_monochrome.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/ic_palette.png b/android/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/ic_palette.png new file mode 100644 index 000000000..e51b11c6f Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/ic_palette.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/ic_photo_filter_white_24dp.png b/android/build/intermediates/bundles/debug/res/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/bundles/debug/res/drawable-xhdpi-v4/ic_photo_filter_white_24dp.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/ic_settings.png b/android/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/ic_settings.png new file mode 100644 index 000000000..ffb6c4cfa Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/ic_settings.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/ic_tag_bell.png b/android/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/ic_tag_bell.png new file mode 100644 index 000000000..ac132447f Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/ic_tag_bell.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/ic_tag_game.png b/android/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/ic_tag_game.png new file mode 100644 index 000000000..6f8534347 Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/ic_tag_game.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/ic_tag_gift.png b/android/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/ic_tag_gift.png new file mode 100644 index 000000000..9d2f3af66 Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/ic_tag_gift.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/ic_tag_magnet.png b/android/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/ic_tag_magnet.png new file mode 100644 index 000000000..8d44365df Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/ic_tag_magnet.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/ic_tag_rocket.png b/android/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/ic_tag_rocket.png new file mode 100644 index 000000000..ee42f2d76 Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/ic_tag_rocket.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/ic_tag_star.png b/android/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/ic_tag_star.png new file mode 100644 index 000000000..9c58b9afd Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/ic_tag_star.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/ic_tag_tv.png b/android/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/ic_tag_tv.png new file mode 100644 index 000000000..c75e3e0b7 Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/ic_tag_tv.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/angle.png b/android/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/angle.png new file mode 100644 index 000000000..9b241b603 Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/angle.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/ic_arrow_back_24dp.png b/android/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/ic_arrow_back_24dp.png new file mode 100644 index 000000000..7c227907a Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/ic_arrow_back_24dp.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/ic_camera_green.png b/android/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/ic_camera_green.png new file mode 100644 index 000000000..c9bef326d Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/ic_camera_green.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/ic_delete_white_24dp.png b/android/build/intermediates/bundles/debug/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/debug/res/drawable-xxhdpi-v4/ic_delete_white_24dp.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/ic_done_all_24dp.png b/android/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/ic_done_all_24dp.png new file mode 100644 index 000000000..66055fa27 Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/ic_done_all_24dp.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/ic_find_in_page.png b/android/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/ic_find_in_page.png new file mode 100644 index 000000000..b97a1bd2e Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/ic_find_in_page.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/ic_flash_on_24dp.png b/android/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/ic_flash_on_24dp.png new file mode 100644 index 000000000..cb240876a Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/ic_flash_on_24dp.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/ic_info_outline_white_24px.png b/android/build/intermediates/bundles/debug/res/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/bundles/debug/res/drawable-xxhdpi-v4/ic_info_outline_white_24px.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/ic_launcher_background.png b/android/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/ic_launcher_background.png new file mode 100644 index 000000000..2692be602 Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/ic_launcher_background.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/ic_menu_tag.png b/android/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/ic_menu_tag.png new file mode 100644 index 000000000..ee1f3a046 Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/ic_menu_tag.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/ic_monochrome.png b/android/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/ic_monochrome.png new file mode 100644 index 000000000..9432d22d4 Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/ic_monochrome.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/ic_palette.png b/android/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/ic_palette.png new file mode 100644 index 000000000..333dbabc0 Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/ic_palette.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/ic_photo_filter_white_24dp.png b/android/build/intermediates/bundles/debug/res/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/bundles/debug/res/drawable-xxhdpi-v4/ic_photo_filter_white_24dp.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/ic_settings.png b/android/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/ic_settings.png new file mode 100644 index 000000000..e8e6c2961 Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/ic_settings.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/ic_tag_bell.png b/android/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/ic_tag_bell.png new file mode 100644 index 000000000..32754ea08 Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/ic_tag_bell.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/ic_tag_game.png b/android/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/ic_tag_game.png new file mode 100644 index 000000000..be379e7e2 Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/ic_tag_game.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/ic_tag_gift.png b/android/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/ic_tag_gift.png new file mode 100644 index 000000000..9e6182bb7 Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/ic_tag_gift.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/ic_tag_magnet.png b/android/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/ic_tag_magnet.png new file mode 100644 index 000000000..b19b72624 Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/ic_tag_magnet.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/ic_tag_rocket.png b/android/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/ic_tag_rocket.png new file mode 100644 index 000000000..cf01c0faa Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/ic_tag_rocket.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/ic_tag_star.png b/android/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/ic_tag_star.png new file mode 100644 index 000000000..1cb7e1891 Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/ic_tag_star.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/ic_tag_tv.png b/android/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/ic_tag_tv.png new file mode 100644 index 000000000..19bca9489 Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/ic_tag_tv.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-xxxhdpi-v4/angle.png b/android/build/intermediates/bundles/debug/res/drawable-xxxhdpi-v4/angle.png new file mode 100644 index 000000000..c30c4dd9b Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/drawable-xxxhdpi-v4/angle.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-xxxhdpi-v4/ic_arrow_back_24dp.png b/android/build/intermediates/bundles/debug/res/drawable-xxxhdpi-v4/ic_arrow_back_24dp.png new file mode 100644 index 000000000..d8fc03389 Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/drawable-xxxhdpi-v4/ic_arrow_back_24dp.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-xxxhdpi-v4/ic_camera_green.png b/android/build/intermediates/bundles/debug/res/drawable-xxxhdpi-v4/ic_camera_green.png new file mode 100644 index 000000000..572292e8f Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/drawable-xxxhdpi-v4/ic_camera_green.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-xxxhdpi-v4/ic_delete_white_24dp.png b/android/build/intermediates/bundles/debug/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/debug/res/drawable-xxxhdpi-v4/ic_delete_white_24dp.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-xxxhdpi-v4/ic_done_all_24dp.png b/android/build/intermediates/bundles/debug/res/drawable-xxxhdpi-v4/ic_done_all_24dp.png new file mode 100644 index 000000000..73a97fbf9 Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/drawable-xxxhdpi-v4/ic_done_all_24dp.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-xxxhdpi-v4/ic_find_in_page.png b/android/build/intermediates/bundles/debug/res/drawable-xxxhdpi-v4/ic_find_in_page.png new file mode 100644 index 000000000..4bba353c2 Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/drawable-xxxhdpi-v4/ic_find_in_page.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-xxxhdpi-v4/ic_flash_on_24dp.png b/android/build/intermediates/bundles/debug/res/drawable-xxxhdpi-v4/ic_flash_on_24dp.png new file mode 100644 index 000000000..95584d084 Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/drawable-xxxhdpi-v4/ic_flash_on_24dp.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-xxxhdpi-v4/ic_info_outline_white_24px.png b/android/build/intermediates/bundles/debug/res/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/bundles/debug/res/drawable-xxxhdpi-v4/ic_info_outline_white_24px.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-xxxhdpi-v4/ic_launcher_background.png b/android/build/intermediates/bundles/debug/res/drawable-xxxhdpi-v4/ic_launcher_background.png new file mode 100644 index 000000000..21bead54f Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/drawable-xxxhdpi-v4/ic_launcher_background.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-xxxhdpi-v4/ic_menu_tag.png b/android/build/intermediates/bundles/debug/res/drawable-xxxhdpi-v4/ic_menu_tag.png new file mode 100644 index 000000000..b73903865 Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/drawable-xxxhdpi-v4/ic_menu_tag.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-xxxhdpi-v4/ic_monochrome.png b/android/build/intermediates/bundles/debug/res/drawable-xxxhdpi-v4/ic_monochrome.png new file mode 100644 index 000000000..d4457bd8f Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/drawable-xxxhdpi-v4/ic_monochrome.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-xxxhdpi-v4/ic_palette.png b/android/build/intermediates/bundles/debug/res/drawable-xxxhdpi-v4/ic_palette.png new file mode 100644 index 000000000..b25619ccf Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/drawable-xxxhdpi-v4/ic_palette.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-xxxhdpi-v4/ic_photo_filter_white_24dp.png b/android/build/intermediates/bundles/debug/res/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/bundles/debug/res/drawable-xxxhdpi-v4/ic_photo_filter_white_24dp.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-xxxhdpi-v4/ic_settings.png b/android/build/intermediates/bundles/debug/res/drawable-xxxhdpi-v4/ic_settings.png new file mode 100644 index 000000000..d2cea43b4 Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/drawable-xxxhdpi-v4/ic_settings.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-xxxhdpi-v4/ic_tag_bell.png b/android/build/intermediates/bundles/debug/res/drawable-xxxhdpi-v4/ic_tag_bell.png new file mode 100644 index 000000000..0c865eaea Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/drawable-xxxhdpi-v4/ic_tag_bell.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-xxxhdpi-v4/ic_tag_game.png b/android/build/intermediates/bundles/debug/res/drawable-xxxhdpi-v4/ic_tag_game.png new file mode 100644 index 000000000..507e2d426 Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/drawable-xxxhdpi-v4/ic_tag_game.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-xxxhdpi-v4/ic_tag_gift.png b/android/build/intermediates/bundles/debug/res/drawable-xxxhdpi-v4/ic_tag_gift.png new file mode 100644 index 000000000..e8c1b71d3 Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/drawable-xxxhdpi-v4/ic_tag_gift.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-xxxhdpi-v4/ic_tag_magnet.png b/android/build/intermediates/bundles/debug/res/drawable-xxxhdpi-v4/ic_tag_magnet.png new file mode 100644 index 000000000..6c48b7601 Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/drawable-xxxhdpi-v4/ic_tag_magnet.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-xxxhdpi-v4/ic_tag_rocket.png b/android/build/intermediates/bundles/debug/res/drawable-xxxhdpi-v4/ic_tag_rocket.png new file mode 100644 index 000000000..5b4d833d3 Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/drawable-xxxhdpi-v4/ic_tag_rocket.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-xxxhdpi-v4/ic_tag_star.png b/android/build/intermediates/bundles/debug/res/drawable-xxxhdpi-v4/ic_tag_star.png new file mode 100644 index 000000000..b341c0e16 Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/drawable-xxxhdpi-v4/ic_tag_star.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable-xxxhdpi-v4/ic_tag_tv.png b/android/build/intermediates/bundles/debug/res/drawable-xxxhdpi-v4/ic_tag_tv.png new file mode 100644 index 000000000..d28fbe4b5 Binary files /dev/null and b/android/build/intermediates/bundles/debug/res/drawable-xxxhdpi-v4/ic_tag_tv.png differ diff --git a/android/build/intermediates/bundles/debug/res/drawable/button_background.xml b/android/build/intermediates/bundles/debug/res/drawable/button_background.xml new file mode 100644 index 000000000..3c394bd48 --- /dev/null +++ b/android/build/intermediates/bundles/debug/res/drawable/button_background.xml @@ -0,0 +1,13 @@ + + + + + + + + + + \ No newline at end of file diff --git a/android/build/intermediates/bundles/debug/res/drawable/round_button.xml b/android/build/intermediates/bundles/debug/res/drawable/round_button.xml new file mode 100644 index 000000000..0a5d98e5d --- /dev/null +++ b/android/build/intermediates/bundles/debug/res/drawable/round_button.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/android/build/intermediates/bundles/debug/res/drawable/side_nav_bar.xml b/android/build/intermediates/bundles/debug/res/drawable/side_nav_bar.xml new file mode 100644 index 000000000..458b4b07d --- /dev/null +++ b/android/build/intermediates/bundles/debug/res/drawable/side_nav_bar.xml @@ -0,0 +1,9 @@ + + + \ No newline at end of file diff --git a/android/build/intermediates/bundles/debug/res/layout/about_view.xml b/android/build/intermediates/bundles/debug/res/layout/about_view.xml new file mode 100644 index 000000000..d1d6f07c5 --- /dev/null +++ b/android/build/intermediates/bundles/debug/res/layout/about_view.xml @@ -0,0 +1,32 @@ + + + + + + + +