[
  {
    "path": ".gitignore",
    "content": "node_modules/\n.gradle/\nbin/\n.idea/\n\n*.xcuserstate\n\n*.xcuserstate\n"
  },
  {
    "path": "README.md",
    "content": "# Go React Native!\n\nThis is a small POC of integrating a Go (Golang) shared library and a React Native UI within a mobile application.\n\nTo run this demo you don't need anything go related installed just download the source, run\nnpm install and then run in xcode (or Android studio to run the android version).  For more\ninformation about running a React Native Application, see the docs for that project.\n\n![Demo Screenshot](/screenshot.png?raw=true \"Demo Screenshot\")\n\nThis sample illustrates 3 ways of communicating between your React Native UI \nand a Go shared library\n*  Http\n*  Websockets\n*  Native Bridge provided by React native.\n\nThe Go source code is in the /demo folder (demo.go).  To modify it, you will need Go 1.6 and \nthe go mobile tool chain.  \n\nOnce you modify the demo.go file, then you can run \"gomobile bind platform=(ios|android)\" to build \neither the new Demo.framework for ios or demo.aar for Android.  Once those are built,\nthen copy them to the appropriate platform folder (ios/Demo.framework or android/demo/demo.aar)\n\n# NOTE\nIf you have something else running on PORT 8081, this demo will fail to run the http and websocket examples,\nyou can change the port number in the index.*.js files and the demo.go file then rebuild.\n"
  },
  {
    "path": "android/GoReact.iml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<module external.linked.project.id=\"GoReact\" external.linked.project.path=\"$MODULE_DIR$\" external.root.project.path=\"$MODULE_DIR$\" external.system.id=\"GRADLE\" external.system.module.group=\"\" external.system.module.version=\"unspecified\" type=\"JAVA_MODULE\" version=\"4\">\n  <component name=\"FacetManager\">\n    <facet type=\"java-gradle\" name=\"Java-Gradle\">\n      <configuration>\n        <option name=\"BUILD_FOLDER_PATH\" value=\"$MODULE_DIR$/build\" />\n        <option name=\"BUILDABLE\" value=\"false\" />\n      </configuration>\n    </facet>\n  </component>\n  <component name=\"NewModuleRootManager\" LANGUAGE_LEVEL=\"JDK_1_7\" inherit-compiler-output=\"true\">\n    <exclude-output />\n    <content url=\"file://$MODULE_DIR$\">\n      <excludeFolder url=\"file://$MODULE_DIR$/.gradle\" />\n    </content>\n    <orderEntry type=\"inheritedJdk\" />\n    <orderEntry type=\"sourceFolder\" forTests=\"false\" />\n  </component>\n</module>"
  },
  {
    "path": "android/app/BUCK",
    "content": "import re\n\n# To learn about Buck see [Docs](https://buckbuild.com/).\n# To run your application with Buck:\n# - install Buck\n# - `npm start` - to start the packager\n# - `cd android`\n# - `cp ~/.android/debug.keystore keystores/debug.keystore`\n# - `./gradlew :app:copyDownloadableDepsToLibs` - make all Gradle compile dependencies available to Buck\n# - `buck install -r android/app` - compile, install and run application\n#\n\nlib_deps = []\nfor jarfile in glob(['libs/*.jar']):\n  name = 'jars__' + re.sub(r'^.*/([^/]+)\\.jar$', r'\\1', jarfile)\n  lib_deps.append(':' + name)\n  prebuilt_jar(\n    name = name,\n    binary_jar = jarfile,\n  )\n\nfor aarfile in glob(['libs/*.aar']):\n  name = 'aars__' + re.sub(r'^.*/([^/]+)\\.aar$', r'\\1', aarfile)\n  lib_deps.append(':' + name)\n  android_prebuilt_aar(\n    name = name,\n    aar = aarfile,\n  )\n\nandroid_library(\n  name = 'all-libs',\n  exported_deps = lib_deps\n)\n\nandroid_library(\n  name = 'app-code',\n  srcs = glob([\n    'src/main/java/**/*.java',\n  ]),\n  deps = [\n    ':all-libs',\n    ':build_config',\n    ':res',\n  ],\n)\n\nandroid_build_config(\n  name = 'build_config',\n  package = 'com.goreact',\n)\n\nandroid_resource(\n  name = 'res',\n  res = 'src/main/res',\n  package = 'com.goreact',\n)\n\nandroid_binary(\n  name = 'app',\n  package_type = 'debug',\n  manifest = 'src/main/AndroidManifest.xml',\n  keystore = '//android/keystores:debug',\n  deps = [\n    ':app-code',\n  ],\n)\n"
  },
  {
    "path": "android/app/app.iml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<module external.linked.project.id=\":app\" external.linked.project.path=\"$MODULE_DIR$\" external.root.project.path=\"$MODULE_DIR$/..\" external.system.id=\"GRADLE\" external.system.module.group=\"GoReact\" external.system.module.version=\"unspecified\" type=\"JAVA_MODULE\" version=\"4\">\n  <component name=\"FacetManager\">\n    <facet type=\"android-gradle\" name=\"Android-Gradle\">\n      <configuration>\n        <option name=\"GRADLE_PROJECT_PATH\" value=\":app\" />\n      </configuration>\n    </facet>\n    <facet type=\"android\" name=\"Android\">\n      <configuration>\n        <option name=\"SELECTED_BUILD_VARIANT\" value=\"debug\" />\n        <option name=\"SELECTED_TEST_ARTIFACT\" value=\"_android_test_\" />\n        <option name=\"ASSEMBLE_TASK_NAME\" value=\"assembleDebug\" />\n        <option name=\"COMPILE_JAVA_TASK_NAME\" value=\"compileDebugSources\" />\n        <afterSyncTasks>\n          <task>generateDebugSources</task>\n        </afterSyncTasks>\n        <option name=\"ALLOW_USER_CONFIGURATION\" value=\"false\" />\n        <option name=\"MANIFEST_FILE_RELATIVE_PATH\" value=\"/src/main/AndroidManifest.xml\" />\n        <option name=\"RES_FOLDER_RELATIVE_PATH\" value=\"/src/main/res\" />\n        <option name=\"RES_FOLDERS_RELATIVE_PATH\" value=\"file://$MODULE_DIR$/src/main/res\" />\n        <option name=\"ASSETS_FOLDER_RELATIVE_PATH\" value=\"/src/main/assets\" />\n      </configuration>\n    </facet>\n  </component>\n  <component name=\"NewModuleRootManager\" LANGUAGE_LEVEL=\"JDK_1_7\" inherit-compiler-output=\"false\">\n    <output url=\"file://$MODULE_DIR$/build/intermediates/classes/debug\" />\n    <output-test url=\"file://$MODULE_DIR$/build/intermediates/classes/test/debug\" />\n    <exclude-output />\n    <content url=\"file://$MODULE_DIR$\">\n      <sourceFolder url=\"file://$MODULE_DIR$/build/generated/source/r/debug\" isTestSource=\"false\" generated=\"true\" />\n      <sourceFolder url=\"file://$MODULE_DIR$/build/generated/source/aidl/debug\" isTestSource=\"false\" generated=\"true\" />\n      <sourceFolder url=\"file://$MODULE_DIR$/build/generated/source/buildConfig/debug\" isTestSource=\"false\" generated=\"true\" />\n      <sourceFolder url=\"file://$MODULE_DIR$/build/generated/source/rs/debug\" isTestSource=\"false\" generated=\"true\" />\n      <sourceFolder url=\"file://$MODULE_DIR$/build/generated/res/rs/debug\" type=\"java-resource\" />\n      <sourceFolder url=\"file://$MODULE_DIR$/build/generated/res/resValues/debug\" type=\"java-resource\" />\n      <sourceFolder url=\"file://$MODULE_DIR$/build/generated/source/r/androidTest/debug\" isTestSource=\"true\" generated=\"true\" />\n      <sourceFolder url=\"file://$MODULE_DIR$/build/generated/source/aidl/androidTest/debug\" isTestSource=\"true\" generated=\"true\" />\n      <sourceFolder url=\"file://$MODULE_DIR$/build/generated/source/buildConfig/androidTest/debug\" isTestSource=\"true\" generated=\"true\" />\n      <sourceFolder url=\"file://$MODULE_DIR$/build/generated/source/rs/androidTest/debug\" isTestSource=\"true\" generated=\"true\" />\n      <sourceFolder url=\"file://$MODULE_DIR$/build/generated/res/rs/androidTest/debug\" type=\"java-test-resource\" />\n      <sourceFolder url=\"file://$MODULE_DIR$/build/generated/res/resValues/androidTest/debug\" type=\"java-test-resource\" />\n      <sourceFolder url=\"file://$MODULE_DIR$/src/debug/res\" type=\"java-resource\" />\n      <sourceFolder url=\"file://$MODULE_DIR$/src/debug/resources\" type=\"java-resource\" />\n      <sourceFolder url=\"file://$MODULE_DIR$/src/debug/assets\" type=\"java-resource\" />\n      <sourceFolder url=\"file://$MODULE_DIR$/src/debug/aidl\" isTestSource=\"false\" />\n      <sourceFolder url=\"file://$MODULE_DIR$/src/debug/java\" isTestSource=\"false\" />\n      <sourceFolder url=\"file://$MODULE_DIR$/src/debug/jni\" isTestSource=\"false\" />\n      <sourceFolder url=\"file://$MODULE_DIR$/src/debug/rs\" isTestSource=\"false\" />\n      <sourceFolder url=\"file://$MODULE_DIR$/src/testDebug/res\" type=\"java-test-resource\" />\n      <sourceFolder url=\"file://$MODULE_DIR$/src/testDebug/resources\" type=\"java-test-resource\" />\n      <sourceFolder url=\"file://$MODULE_DIR$/src/testDebug/assets\" type=\"java-test-resource\" />\n      <sourceFolder url=\"file://$MODULE_DIR$/src/testDebug/aidl\" isTestSource=\"true\" />\n      <sourceFolder url=\"file://$MODULE_DIR$/src/testDebug/java\" isTestSource=\"true\" />\n      <sourceFolder url=\"file://$MODULE_DIR$/src/testDebug/jni\" isTestSource=\"true\" />\n      <sourceFolder url=\"file://$MODULE_DIR$/src/testDebug/rs\" isTestSource=\"true\" />\n      <sourceFolder url=\"file://$MODULE_DIR$/src/main/res\" type=\"java-resource\" />\n      <sourceFolder url=\"file://$MODULE_DIR$/src/main/resources\" type=\"java-resource\" />\n      <sourceFolder url=\"file://$MODULE_DIR$/src/main/assets\" type=\"java-resource\" />\n      <sourceFolder url=\"file://$MODULE_DIR$/src/main/aidl\" isTestSource=\"false\" />\n      <sourceFolder url=\"file://$MODULE_DIR$/src/main/java\" isTestSource=\"false\" />\n      <sourceFolder url=\"file://$MODULE_DIR$/src/main/jni\" isTestSource=\"false\" />\n      <sourceFolder url=\"file://$MODULE_DIR$/src/main/rs\" isTestSource=\"false\" />\n      <sourceFolder url=\"file://$MODULE_DIR$/src/androidTest/res\" type=\"java-test-resource\" />\n      <sourceFolder url=\"file://$MODULE_DIR$/src/androidTest/resources\" type=\"java-test-resource\" />\n      <sourceFolder url=\"file://$MODULE_DIR$/src/androidTest/assets\" type=\"java-test-resource\" />\n      <sourceFolder url=\"file://$MODULE_DIR$/src/androidTest/aidl\" isTestSource=\"true\" />\n      <sourceFolder url=\"file://$MODULE_DIR$/src/androidTest/java\" isTestSource=\"true\" />\n      <sourceFolder url=\"file://$MODULE_DIR$/src/androidTest/jni\" isTestSource=\"true\" />\n      <sourceFolder url=\"file://$MODULE_DIR$/src/androidTest/rs\" isTestSource=\"true\" />\n      <sourceFolder url=\"file://$MODULE_DIR$/src/test/res\" type=\"java-test-resource\" />\n      <sourceFolder url=\"file://$MODULE_DIR$/src/test/resources\" type=\"java-test-resource\" />\n      <sourceFolder url=\"file://$MODULE_DIR$/src/test/assets\" type=\"java-test-resource\" />\n      <sourceFolder url=\"file://$MODULE_DIR$/src/test/aidl\" isTestSource=\"true\" />\n      <sourceFolder url=\"file://$MODULE_DIR$/src/test/java\" isTestSource=\"true\" />\n      <sourceFolder url=\"file://$MODULE_DIR$/src/test/jni\" isTestSource=\"true\" />\n      <sourceFolder url=\"file://$MODULE_DIR$/src/test/rs\" isTestSource=\"true\" />\n      <excludeFolder url=\"file://$MODULE_DIR$/build/intermediates/assets\" />\n      <excludeFolder url=\"file://$MODULE_DIR$/build/intermediates/classes\" />\n      <excludeFolder url=\"file://$MODULE_DIR$/build/intermediates/debug\" />\n      <excludeFolder url=\"file://$MODULE_DIR$/build/intermediates/dependency-cache\" />\n      <excludeFolder url=\"file://$MODULE_DIR$/build/intermediates/dex\" />\n      <excludeFolder url=\"file://$MODULE_DIR$/build/intermediates/exploded-aar/GoReact/demo/unspecified/jars\" />\n      <excludeFolder url=\"file://$MODULE_DIR$/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/jars\" />\n      <excludeFolder url=\"file://$MODULE_DIR$/build/intermediates/exploded-aar/com.android.support/recyclerview-v7/23.0.1/jars\" />\n      <excludeFolder url=\"file://$MODULE_DIR$/build/intermediates/exploded-aar/com.android.support/support-v4/23.0.1/jars\" />\n      <excludeFolder url=\"file://$MODULE_DIR$/build/intermediates/exploded-aar/com.facebook.fresco/drawee/0.8.1/jars\" />\n      <excludeFolder url=\"file://$MODULE_DIR$/build/intermediates/exploded-aar/com.facebook.fresco/fbcore/0.8.1/jars\" />\n      <excludeFolder url=\"file://$MODULE_DIR$/build/intermediates/exploded-aar/com.facebook.fresco/fresco/0.8.1/jars\" />\n      <excludeFolder url=\"file://$MODULE_DIR$/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline-okhttp/0.8.1/jars\" />\n      <excludeFolder url=\"file://$MODULE_DIR$/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/jars\" />\n      <excludeFolder url=\"file://$MODULE_DIR$/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/jars\" />\n      <excludeFolder url=\"file://$MODULE_DIR$/build/intermediates/exploded-aar/org.webkit/android-jsc/r174650/jars\" />\n      <excludeFolder url=\"file://$MODULE_DIR$/build/intermediates/incremental\" />\n      <excludeFolder url=\"file://$MODULE_DIR$/build/intermediates/manifests\" />\n      <excludeFolder url=\"file://$MODULE_DIR$/build/intermediates/mockable-android-23.jar\" />\n      <excludeFolder url=\"file://$MODULE_DIR$/build/intermediates/pre-dexed\" />\n      <excludeFolder url=\"file://$MODULE_DIR$/build/intermediates/res\" />\n      <excludeFolder url=\"file://$MODULE_DIR$/build/intermediates/rs\" />\n      <excludeFolder url=\"file://$MODULE_DIR$/build/intermediates/symbols\" />\n      <excludeFolder url=\"file://$MODULE_DIR$/build/intermediates/tmp\" />\n      <excludeFolder url=\"file://$MODULE_DIR$/build/outputs\" />\n      <excludeFolder url=\"file://$MODULE_DIR$/build/tmp\" />\n    </content>\n    <orderEntry type=\"jdk\" jdkName=\"Android API 23 Platform\" jdkType=\"Android SDK\" />\n    <orderEntry type=\"sourceFolder\" forTests=\"false\" />\n    <orderEntry type=\"library\" exported=\"\" name=\"okhttp-ws-2.5.0\" level=\"project\" />\n    <orderEntry type=\"library\" exported=\"\" name=\"library-2.4.0\" level=\"project\" />\n    <orderEntry type=\"library\" exported=\"\" name=\"okio-1.6.0\" level=\"project\" />\n    <orderEntry type=\"library\" exported=\"\" name=\"okhttp-2.5.0\" level=\"project\" />\n    <orderEntry type=\"library\" exported=\"\" name=\"jsr305-3.0.0\" level=\"project\" />\n    <orderEntry type=\"library\" exported=\"\" name=\"jackson-core-2.2.3\" level=\"project\" />\n    <orderEntry type=\"library\" exported=\"\" name=\"fbcore-0.8.1\" level=\"project\" />\n    <orderEntry type=\"library\" exported=\"\" name=\"react-native-0.24.1\" level=\"project\" />\n    <orderEntry type=\"library\" exported=\"\" name=\"recyclerview-v7-23.0.1\" level=\"project\" />\n    <orderEntry type=\"library\" exported=\"\" name=\"imagepipeline-0.8.1\" level=\"project\" />\n    <orderEntry type=\"library\" exported=\"\" name=\"android-jsc-r174650\" level=\"project\" />\n    <orderEntry type=\"library\" exported=\"\" name=\"fresco-0.8.1\" level=\"project\" />\n    <orderEntry type=\"library\" exported=\"\" name=\"imagepipeline-okhttp-0.8.1\" level=\"project\" />\n    <orderEntry type=\"library\" exported=\"\" name=\"bolts-android-1.1.4\" level=\"project\" />\n    <orderEntry type=\"library\" exported=\"\" name=\"support-v4-23.0.1\" level=\"project\" />\n    <orderEntry type=\"library\" exported=\"\" name=\"drawee-0.8.1\" level=\"project\" />\n    <orderEntry type=\"library\" exported=\"\" name=\"appcompat-v7-23.0.1\" level=\"project\" />\n    <orderEntry type=\"library\" exported=\"\" name=\"support-annotations-23.0.1\" level=\"project\" />\n    <orderEntry type=\"module\" module-name=\"demo\" exported=\"\" />\n    <orderEntry type=\"library\" exported=\"\" name=\"demo-unspecified\" level=\"project\" />\n  </component>\n</module>"
  },
  {
    "path": "android/app/build/generated/source/buildConfig/androidTest/debug/com/goreact/test/BuildConfig.java",
    "content": "/**\n * Automatically generated file. DO NOT MODIFY\n */\npackage com.goreact.test;\n\npublic final class BuildConfig {\n  public static final boolean DEBUG = Boolean.parseBoolean(\"true\");\n  public static final String APPLICATION_ID = \"com.goreact.test\";\n  public static final String BUILD_TYPE = \"debug\";\n  public static final String FLAVOR = \"\";\n  public static final int VERSION_CODE = 1;\n  public static final String VERSION_NAME = \"1.0\";\n}\n"
  },
  {
    "path": "android/app/build/generated/source/buildConfig/debug/com/goreact/BuildConfig.java",
    "content": "/**\n * Automatically generated file. DO NOT MODIFY\n */\npackage com.goreact;\n\npublic final class BuildConfig {\n  public static final boolean DEBUG = Boolean.parseBoolean(\"true\");\n  public static final String APPLICATION_ID = \"com.goreact\";\n  public static final String BUILD_TYPE = \"debug\";\n  public static final String FLAVOR = \"\";\n  public static final int VERSION_CODE = 1;\n  public static final String VERSION_NAME = \"1.0\";\n}\n"
  },
  {
    "path": "android/app/build/generated/source/r/debug/android/support/v7/appcompat/R.java",
    "content": "/* AUTO-GENERATED FILE.  DO NOT MODIFY.\n *\n * This class was automatically generated by the\n * aapt tool from the resource data it found.  It\n * should not be modified by hand.\n */\npackage android.support.v7.appcompat;\n\npublic final class R {\n\tpublic static final class anim {\n\t\tpublic static final int abc_fade_in = 0x7f050000;\n\t\tpublic static final int abc_fade_out = 0x7f050001;\n\t\tpublic static final int abc_grow_fade_in_from_bottom = 0x7f050002;\n\t\tpublic static final int abc_popup_enter = 0x7f050003;\n\t\tpublic static final int abc_popup_exit = 0x7f050004;\n\t\tpublic static final int abc_shrink_fade_out_from_bottom = 0x7f050005;\n\t\tpublic static final int abc_slide_in_bottom = 0x7f050006;\n\t\tpublic static final int abc_slide_in_top = 0x7f050007;\n\t\tpublic static final int abc_slide_out_bottom = 0x7f050008;\n\t\tpublic static final int abc_slide_out_top = 0x7f050009;\n\t}\n\tpublic static final class attr {\n\t\tpublic static final int actionBarDivider = 0x7f01007e;\n\t\tpublic static final int actionBarItemBackground = 0x7f01007f;\n\t\tpublic static final int actionBarPopupTheme = 0x7f010078;\n\t\tpublic static final int actionBarSize = 0x7f01007d;\n\t\tpublic static final int actionBarSplitStyle = 0x7f01007a;\n\t\tpublic static final int actionBarStyle = 0x7f010079;\n\t\tpublic static final int actionBarTabBarStyle = 0x7f010074;\n\t\tpublic static final int actionBarTabStyle = 0x7f010073;\n\t\tpublic static final int actionBarTabTextStyle = 0x7f010075;\n\t\tpublic static final int actionBarTheme = 0x7f01007b;\n\t\tpublic static final int actionBarWidgetTheme = 0x7f01007c;\n\t\tpublic static final int actionButtonStyle = 0x7f010098;\n\t\tpublic static final int actionDropDownStyle = 0x7f010094;\n\t\tpublic static final int actionLayout = 0x7f01004b;\n\t\tpublic static final int actionMenuTextAppearance = 0x7f010080;\n\t\tpublic static final int actionMenuTextColor = 0x7f010081;\n\t\tpublic static final int actionModeBackground = 0x7f010084;\n\t\tpublic static final int actionModeCloseButtonStyle = 0x7f010083;\n\t\tpublic static final int actionModeCloseDrawable = 0x7f010086;\n\t\tpublic static final int actionModeCopyDrawable = 0x7f010088;\n\t\tpublic static final int actionModeCutDrawable = 0x7f010087;\n\t\tpublic static final int actionModeFindDrawable = 0x7f01008c;\n\t\tpublic static final int actionModePasteDrawable = 0x7f010089;\n\t\tpublic static final int actionModePopupWindowStyle = 0x7f01008e;\n\t\tpublic static final int actionModeSelectAllDrawable = 0x7f01008a;\n\t\tpublic static final int actionModeShareDrawable = 0x7f01008b;\n\t\tpublic static final int actionModeSplitBackground = 0x7f010085;\n\t\tpublic static final int actionModeStyle = 0x7f010082;\n\t\tpublic static final int actionModeWebSearchDrawable = 0x7f01008d;\n\t\tpublic static final int actionOverflowButtonStyle = 0x7f010076;\n\t\tpublic static final int actionOverflowMenuStyle = 0x7f010077;\n\t\tpublic static final int actionProviderClass = 0x7f01004d;\n\t\tpublic static final int actionViewClass = 0x7f01004c;\n\t\tpublic static final int activityChooserViewStyle = 0x7f0100a0;\n\t\tpublic static final int alertDialogButtonGroupStyle = 0x7f0100c2;\n\t\tpublic static final int alertDialogCenterButtons = 0x7f0100c3;\n\t\tpublic static final int alertDialogStyle = 0x7f0100c1;\n\t\tpublic static final int alertDialogTheme = 0x7f0100c4;\n\t\tpublic static final int arrowHeadLength = 0x7f01002b;\n\t\tpublic static final int arrowShaftLength = 0x7f01002c;\n\t\tpublic static final int autoCompleteTextViewStyle = 0x7f0100c9;\n\t\tpublic static final int background = 0x7f01000c;\n\t\tpublic static final int backgroundSplit = 0x7f01000e;\n\t\tpublic static final int backgroundStacked = 0x7f01000d;\n\t\tpublic static final int backgroundTint = 0x7f0100e5;\n\t\tpublic static final int backgroundTintMode = 0x7f0100e6;\n\t\tpublic static final int barLength = 0x7f01002d;\n\t\tpublic static final int borderlessButtonStyle = 0x7f01009d;\n\t\tpublic static final int buttonBarButtonStyle = 0x7f01009a;\n\t\tpublic static final int buttonBarNegativeButtonStyle = 0x7f0100c7;\n\t\tpublic static final int buttonBarNeutralButtonStyle = 0x7f0100c8;\n\t\tpublic static final int buttonBarPositiveButtonStyle = 0x7f0100c6;\n\t\tpublic static final int buttonBarStyle = 0x7f010099;\n\t\tpublic static final int buttonPanelSideLayout = 0x7f01001f;\n\t\tpublic static final int buttonStyle = 0x7f0100ca;\n\t\tpublic static final int buttonStyleSmall = 0x7f0100cb;\n\t\tpublic static final int buttonTint = 0x7f010025;\n\t\tpublic static final int buttonTintMode = 0x7f010026;\n\t\tpublic static final int checkboxStyle = 0x7f0100cc;\n\t\tpublic static final int checkedTextViewStyle = 0x7f0100cd;\n\t\tpublic static final int closeIcon = 0x7f010059;\n\t\tpublic static final int closeItemLayout = 0x7f01001c;\n\t\tpublic static final int collapseContentDescription = 0x7f0100dc;\n\t\tpublic static final int collapseIcon = 0x7f0100db;\n\t\tpublic static final int color = 0x7f010027;\n\t\tpublic static final int colorAccent = 0x7f0100ba;\n\t\tpublic static final int colorButtonNormal = 0x7f0100be;\n\t\tpublic static final int colorControlActivated = 0x7f0100bc;\n\t\tpublic static final int colorControlHighlight = 0x7f0100bd;\n\t\tpublic static final int colorControlNormal = 0x7f0100bb;\n\t\tpublic static final int colorPrimary = 0x7f0100b8;\n\t\tpublic static final int colorPrimaryDark = 0x7f0100b9;\n\t\tpublic static final int colorSwitchThumbNormal = 0x7f0100bf;\n\t\tpublic static final int commitIcon = 0x7f01005e;\n\t\tpublic static final int contentInsetEnd = 0x7f010017;\n\t\tpublic static final int contentInsetLeft = 0x7f010018;\n\t\tpublic static final int contentInsetRight = 0x7f010019;\n\t\tpublic static final int contentInsetStart = 0x7f010016;\n\t\tpublic static final int controlBackground = 0x7f0100c0;\n\t\tpublic static final int customNavigationLayout = 0x7f01000f;\n\t\tpublic static final int defaultQueryHint = 0x7f010058;\n\t\tpublic static final int dialogPreferredPadding = 0x7f010092;\n\t\tpublic static final int dialogTheme = 0x7f010091;\n\t\tpublic static final int displayOptions = 0x7f010005;\n\t\tpublic static final int divider = 0x7f01000b;\n\t\tpublic static final int dividerHorizontal = 0x7f01009f;\n\t\tpublic static final int dividerPadding = 0x7f010049;\n\t\tpublic static final int dividerVertical = 0x7f01009e;\n\t\tpublic static final int drawableSize = 0x7f010029;\n\t\tpublic static final int drawerArrowStyle = 0x7f010000;\n\t\tpublic static final int dropDownListViewStyle = 0x7f0100b0;\n\t\tpublic static final int dropdownListPreferredItemHeight = 0x7f010095;\n\t\tpublic static final int editTextBackground = 0x7f0100a6;\n\t\tpublic static final int editTextColor = 0x7f0100a5;\n\t\tpublic static final int editTextStyle = 0x7f0100ce;\n\t\tpublic static final int elevation = 0x7f01001a;\n\t\tpublic static final int expandActivityOverflowButtonDrawable = 0x7f01001e;\n\t\tpublic static final int gapBetweenBars = 0x7f01002a;\n\t\tpublic static final int goIcon = 0x7f01005a;\n\t\tpublic static final int height = 0x7f010001;\n\t\tpublic static final int hideOnContentScroll = 0x7f010015;\n\t\tpublic static final int homeAsUpIndicator = 0x7f010097;\n\t\tpublic static final int homeLayout = 0x7f010010;\n\t\tpublic static final int icon = 0x7f010009;\n\t\tpublic static final int iconifiedByDefault = 0x7f010056;\n\t\tpublic static final int indeterminateProgressStyle = 0x7f010012;\n\t\tpublic static final int initialActivityCount = 0x7f01001d;\n\t\tpublic static final int isLightTheme = 0x7f010002;\n\t\tpublic static final int itemPadding = 0x7f010014;\n\t\tpublic static final int layout = 0x7f010055;\n\t\tpublic static final int listChoiceBackgroundIndicator = 0x7f0100b7;\n\t\tpublic static final int listDividerAlertDialog = 0x7f010093;\n\t\tpublic static final int listItemLayout = 0x7f010023;\n\t\tpublic static final int listLayout = 0x7f010020;\n\t\tpublic static final int listPopupWindowStyle = 0x7f0100b1;\n\t\tpublic static final int listPreferredItemHeight = 0x7f0100ab;\n\t\tpublic static final int listPreferredItemHeightLarge = 0x7f0100ad;\n\t\tpublic static final int listPreferredItemHeightSmall = 0x7f0100ac;\n\t\tpublic static final int listPreferredItemPaddingLeft = 0x7f0100ae;\n\t\tpublic static final int listPreferredItemPaddingRight = 0x7f0100af;\n\t\tpublic static final int logo = 0x7f01000a;\n\t\tpublic static final int logoDescription = 0x7f0100df;\n\t\tpublic static final int maxButtonHeight = 0x7f0100da;\n\t\tpublic static final int measureWithLargestChild = 0x7f010047;\n\t\tpublic static final int multiChoiceItemLayout = 0x7f010021;\n\t\tpublic static final int navigationContentDescription = 0x7f0100de;\n\t\tpublic static final int navigationIcon = 0x7f0100dd;\n\t\tpublic static final int navigationMode = 0x7f010004;\n\t\tpublic static final int overlapAnchor = 0x7f01004f;\n\t\tpublic static final int paddingEnd = 0x7f0100e3;\n\t\tpublic static final int paddingStart = 0x7f0100e2;\n\t\tpublic static final int panelBackground = 0x7f0100b4;\n\t\tpublic static final int panelMenuListTheme = 0x7f0100b6;\n\t\tpublic static final int panelMenuListWidth = 0x7f0100b5;\n\t\tpublic static final int popupMenuStyle = 0x7f0100a3;\n\t\tpublic static final int popupTheme = 0x7f01001b;\n\t\tpublic static final int popupWindowStyle = 0x7f0100a4;\n\t\tpublic static final int preserveIconSpacing = 0x7f01004e;\n\t\tpublic static final int progressBarPadding = 0x7f010013;\n\t\tpublic static final int progressBarStyle = 0x7f010011;\n\t\tpublic static final int queryBackground = 0x7f010060;\n\t\tpublic static final int queryHint = 0x7f010057;\n\t\tpublic static final int radioButtonStyle = 0x7f0100cf;\n\t\tpublic static final int ratingBarStyle = 0x7f0100d0;\n\t\tpublic static final int searchHintIcon = 0x7f01005c;\n\t\tpublic static final int searchIcon = 0x7f01005b;\n\t\tpublic static final int searchViewStyle = 0x7f0100aa;\n\t\tpublic static final int selectableItemBackground = 0x7f01009b;\n\t\tpublic static final int selectableItemBackgroundBorderless = 0x7f01009c;\n\t\tpublic static final int showAsAction = 0x7f01004a;\n\t\tpublic static final int showDividers = 0x7f010048;\n\t\tpublic static final int showText = 0x7f010068;\n\t\tpublic static final int singleChoiceItemLayout = 0x7f010022;\n\t\tpublic static final int spinBars = 0x7f010028;\n\t\tpublic static final int spinnerDropDownItemStyle = 0x7f010096;\n\t\tpublic static final int spinnerStyle = 0x7f0100d1;\n\t\tpublic static final int splitTrack = 0x7f010067;\n\t\tpublic static final int state_above_anchor = 0x7f010050;\n\t\tpublic static final int submitBackground = 0x7f010061;\n\t\tpublic static final int subtitle = 0x7f010006;\n\t\tpublic static final int subtitleTextAppearance = 0x7f0100d4;\n\t\tpublic static final int subtitleTextColor = 0x7f0100e1;\n\t\tpublic static final int subtitleTextStyle = 0x7f010008;\n\t\tpublic static final int suggestionRowLayout = 0x7f01005f;\n\t\tpublic static final int switchMinWidth = 0x7f010065;\n\t\tpublic static final int switchPadding = 0x7f010066;\n\t\tpublic static final int switchStyle = 0x7f0100d2;\n\t\tpublic static final int switchTextAppearance = 0x7f010064;\n\t\tpublic static final int textAllCaps = 0x7f010024;\n\t\tpublic static final int textAppearanceLargePopupMenu = 0x7f01008f;\n\t\tpublic static final int textAppearanceListItem = 0x7f0100b2;\n\t\tpublic static final int textAppearanceListItemSmall = 0x7f0100b3;\n\t\tpublic static final int textAppearanceSearchResultSubtitle = 0x7f0100a8;\n\t\tpublic static final int textAppearanceSearchResultTitle = 0x7f0100a7;\n\t\tpublic static final int textAppearanceSmallPopupMenu = 0x7f010090;\n\t\tpublic static final int textColorAlertDialogListItem = 0x7f0100c5;\n\t\tpublic static final int textColorSearchUrl = 0x7f0100a9;\n\t\tpublic static final int theme = 0x7f0100e4;\n\t\tpublic static final int thickness = 0x7f01002e;\n\t\tpublic static final int thumbTextPadding = 0x7f010063;\n\t\tpublic static final int title = 0x7f010003;\n\t\tpublic static final int titleMarginBottom = 0x7f0100d9;\n\t\tpublic static final int titleMarginEnd = 0x7f0100d7;\n\t\tpublic static final int titleMarginStart = 0x7f0100d6;\n\t\tpublic static final int titleMarginTop = 0x7f0100d8;\n\t\tpublic static final int titleMargins = 0x7f0100d5;\n\t\tpublic static final int titleTextAppearance = 0x7f0100d3;\n\t\tpublic static final int titleTextColor = 0x7f0100e0;\n\t\tpublic static final int titleTextStyle = 0x7f010007;\n\t\tpublic static final int toolbarNavigationButtonStyle = 0x7f0100a2;\n\t\tpublic static final int toolbarStyle = 0x7f0100a1;\n\t\tpublic static final int track = 0x7f010062;\n\t\tpublic static final int voiceIcon = 0x7f01005d;\n\t\tpublic static final int windowActionBar = 0x7f010069;\n\t\tpublic static final int windowActionBarOverlay = 0x7f01006b;\n\t\tpublic static final int windowActionModeOverlay = 0x7f01006c;\n\t\tpublic static final int windowFixedHeightMajor = 0x7f010070;\n\t\tpublic static final int windowFixedHeightMinor = 0x7f01006e;\n\t\tpublic static final int windowFixedWidthMajor = 0x7f01006d;\n\t\tpublic static final int windowFixedWidthMinor = 0x7f01006f;\n\t\tpublic static final int windowMinWidthMajor = 0x7f010071;\n\t\tpublic static final int windowMinWidthMinor = 0x7f010072;\n\t\tpublic static final int windowNoTitle = 0x7f01006a;\n\t}\n\tpublic static final class bool {\n\t\tpublic static final int abc_action_bar_embed_tabs = 0x7f0a0002;\n\t\tpublic static final int abc_action_bar_embed_tabs_pre_jb = 0x7f0a0000;\n\t\tpublic static final int abc_action_bar_expanded_action_views_exclusive = 0x7f0a0003;\n\t\tpublic static final int abc_config_actionMenuItemAllCaps = 0x7f0a0004;\n\t\tpublic static final int abc_config_allowActionMenuItemTextWithIcon = 0x7f0a0001;\n\t\tpublic static final int abc_config_closeDialogWhenTouchOutside = 0x7f0a0005;\n\t\tpublic static final int abc_config_showMenuShortcutsWhenKeyboardPresent = 0x7f0a0006;\n\t}\n\tpublic static final class color {\n\t\tpublic static final int abc_background_cache_hint_selector_material_dark = 0x7f0c003b;\n\t\tpublic static final int abc_background_cache_hint_selector_material_light = 0x7f0c003c;\n\t\tpublic static final int abc_color_highlight_material = 0x7f0c003d;\n\t\tpublic static final int abc_input_method_navigation_guard = 0x7f0c0000;\n\t\tpublic static final int abc_primary_text_disable_only_material_dark = 0x7f0c003e;\n\t\tpublic static final int abc_primary_text_disable_only_material_light = 0x7f0c003f;\n\t\tpublic static final int abc_primary_text_material_dark = 0x7f0c0040;\n\t\tpublic static final int abc_primary_text_material_light = 0x7f0c0041;\n\t\tpublic static final int abc_search_url_text = 0x7f0c0042;\n\t\tpublic static final int abc_search_url_text_normal = 0x7f0c0001;\n\t\tpublic static final int abc_search_url_text_pressed = 0x7f0c0002;\n\t\tpublic static final int abc_search_url_text_selected = 0x7f0c0003;\n\t\tpublic static final int abc_secondary_text_material_dark = 0x7f0c0043;\n\t\tpublic static final int abc_secondary_text_material_light = 0x7f0c0044;\n\t\tpublic static final int accent_material_dark = 0x7f0c0004;\n\t\tpublic static final int accent_material_light = 0x7f0c0005;\n\t\tpublic static final int background_floating_material_dark = 0x7f0c0006;\n\t\tpublic static final int background_floating_material_light = 0x7f0c0007;\n\t\tpublic static final int background_material_dark = 0x7f0c0008;\n\t\tpublic static final int background_material_light = 0x7f0c0009;\n\t\tpublic static final int bright_foreground_disabled_material_dark = 0x7f0c000a;\n\t\tpublic static final int bright_foreground_disabled_material_light = 0x7f0c000b;\n\t\tpublic static final int bright_foreground_inverse_material_dark = 0x7f0c000c;\n\t\tpublic static final int bright_foreground_inverse_material_light = 0x7f0c000d;\n\t\tpublic static final int bright_foreground_material_dark = 0x7f0c000e;\n\t\tpublic static final int bright_foreground_material_light = 0x7f0c000f;\n\t\tpublic static final int button_material_dark = 0x7f0c0010;\n\t\tpublic static final int button_material_light = 0x7f0c0011;\n\t\tpublic static final int dim_foreground_disabled_material_dark = 0x7f0c0013;\n\t\tpublic static final int dim_foreground_disabled_material_light = 0x7f0c0014;\n\t\tpublic static final int dim_foreground_material_dark = 0x7f0c0015;\n\t\tpublic static final int dim_foreground_material_light = 0x7f0c0016;\n\t\tpublic static final int foreground_material_dark = 0x7f0c0017;\n\t\tpublic static final int foreground_material_light = 0x7f0c0018;\n\t\tpublic static final int highlighted_text_material_dark = 0x7f0c0019;\n\t\tpublic static final int highlighted_text_material_light = 0x7f0c001a;\n\t\tpublic static final int hint_foreground_material_dark = 0x7f0c001b;\n\t\tpublic static final int hint_foreground_material_light = 0x7f0c001c;\n\t\tpublic static final int material_blue_grey_800 = 0x7f0c001d;\n\t\tpublic static final int material_blue_grey_900 = 0x7f0c001e;\n\t\tpublic static final int material_blue_grey_950 = 0x7f0c001f;\n\t\tpublic static final int material_deep_teal_200 = 0x7f0c0020;\n\t\tpublic static final int material_deep_teal_500 = 0x7f0c0021;\n\t\tpublic static final int material_grey_100 = 0x7f0c0022;\n\t\tpublic static final int material_grey_300 = 0x7f0c0023;\n\t\tpublic static final int material_grey_50 = 0x7f0c0024;\n\t\tpublic static final int material_grey_600 = 0x7f0c0025;\n\t\tpublic static final int material_grey_800 = 0x7f0c0026;\n\t\tpublic static final int material_grey_850 = 0x7f0c0027;\n\t\tpublic static final int material_grey_900 = 0x7f0c0028;\n\t\tpublic static final int primary_dark_material_dark = 0x7f0c0029;\n\t\tpublic static final int primary_dark_material_light = 0x7f0c002a;\n\t\tpublic static final int primary_material_dark = 0x7f0c002b;\n\t\tpublic static final int primary_material_light = 0x7f0c002c;\n\t\tpublic static final int primary_text_default_material_dark = 0x7f0c002d;\n\t\tpublic static final int primary_text_default_material_light = 0x7f0c002e;\n\t\tpublic static final int primary_text_disabled_material_dark = 0x7f0c002f;\n\t\tpublic static final int primary_text_disabled_material_light = 0x7f0c0030;\n\t\tpublic static final int ripple_material_dark = 0x7f0c0031;\n\t\tpublic static final int ripple_material_light = 0x7f0c0032;\n\t\tpublic static final int secondary_text_default_material_dark = 0x7f0c0033;\n\t\tpublic static final int secondary_text_default_material_light = 0x7f0c0034;\n\t\tpublic static final int secondary_text_disabled_material_dark = 0x7f0c0035;\n\t\tpublic static final int secondary_text_disabled_material_light = 0x7f0c0036;\n\t\tpublic static final int switch_thumb_disabled_material_dark = 0x7f0c0037;\n\t\tpublic static final int switch_thumb_disabled_material_light = 0x7f0c0038;\n\t\tpublic static final int switch_thumb_material_dark = 0x7f0c0045;\n\t\tpublic static final int switch_thumb_material_light = 0x7f0c0046;\n\t\tpublic static final int switch_thumb_normal_material_dark = 0x7f0c0039;\n\t\tpublic static final int switch_thumb_normal_material_light = 0x7f0c003a;\n\t}\n\tpublic static final class dimen {\n\t\tpublic static final int abc_action_bar_content_inset_material = 0x7f08000b;\n\t\tpublic static final int abc_action_bar_default_height_material = 0x7f080001;\n\t\tpublic static final int abc_action_bar_default_padding_end_material = 0x7f08000c;\n\t\tpublic static final int abc_action_bar_default_padding_start_material = 0x7f08000d;\n\t\tpublic static final int abc_action_bar_icon_vertical_padding_material = 0x7f08000f;\n\t\tpublic static final int abc_action_bar_overflow_padding_end_material = 0x7f080010;\n\t\tpublic static final int abc_action_bar_overflow_padding_start_material = 0x7f080011;\n\t\tpublic static final int abc_action_bar_progress_bar_size = 0x7f080002;\n\t\tpublic static final int abc_action_bar_stacked_max_height = 0x7f080012;\n\t\tpublic static final int abc_action_bar_stacked_tab_max_width = 0x7f080013;\n\t\tpublic static final int abc_action_bar_subtitle_bottom_margin_material = 0x7f080014;\n\t\tpublic static final int abc_action_bar_subtitle_top_margin_material = 0x7f080015;\n\t\tpublic static final int abc_action_button_min_height_material = 0x7f080016;\n\t\tpublic static final int abc_action_button_min_width_material = 0x7f080017;\n\t\tpublic static final int abc_action_button_min_width_overflow_material = 0x7f080018;\n\t\tpublic static final int abc_alert_dialog_button_bar_height = 0x7f080000;\n\t\tpublic static final int abc_button_inset_horizontal_material = 0x7f080019;\n\t\tpublic static final int abc_button_inset_vertical_material = 0x7f08001a;\n\t\tpublic static final int abc_button_padding_horizontal_material = 0x7f08001b;\n\t\tpublic static final int abc_button_padding_vertical_material = 0x7f08001c;\n\t\tpublic static final int abc_config_prefDialogWidth = 0x7f080005;\n\t\tpublic static final int abc_control_corner_material = 0x7f08001d;\n\t\tpublic static final int abc_control_inset_material = 0x7f08001e;\n\t\tpublic static final int abc_control_padding_material = 0x7f08001f;\n\t\tpublic static final int abc_dialog_list_padding_vertical_material = 0x7f080020;\n\t\tpublic static final int abc_dialog_min_width_major = 0x7f080021;\n\t\tpublic static final int abc_dialog_min_width_minor = 0x7f080022;\n\t\tpublic static final int abc_dialog_padding_material = 0x7f080023;\n\t\tpublic static final int abc_dialog_padding_top_material = 0x7f080024;\n\t\tpublic static final int abc_disabled_alpha_material_dark = 0x7f080025;\n\t\tpublic static final int abc_disabled_alpha_material_light = 0x7f080026;\n\t\tpublic static final int abc_dropdownitem_icon_width = 0x7f080027;\n\t\tpublic static final int abc_dropdownitem_text_padding_left = 0x7f080028;\n\t\tpublic static final int abc_dropdownitem_text_padding_right = 0x7f080029;\n\t\tpublic static final int abc_edit_text_inset_bottom_material = 0x7f08002a;\n\t\tpublic static final int abc_edit_text_inset_horizontal_material = 0x7f08002b;\n\t\tpublic static final int abc_edit_text_inset_top_material = 0x7f08002c;\n\t\tpublic static final int abc_floating_window_z = 0x7f08002d;\n\t\tpublic static final int abc_list_item_padding_horizontal_material = 0x7f08002e;\n\t\tpublic static final int abc_panel_menu_list_width = 0x7f08002f;\n\t\tpublic static final int abc_search_view_preferred_width = 0x7f080030;\n\t\tpublic static final int abc_search_view_text_min_width = 0x7f080006;\n\t\tpublic static final int abc_switch_padding = 0x7f08000e;\n\t\tpublic static final int abc_text_size_body_1_material = 0x7f080031;\n\t\tpublic static final int abc_text_size_body_2_material = 0x7f080032;\n\t\tpublic static final int abc_text_size_button_material = 0x7f080033;\n\t\tpublic static final int abc_text_size_caption_material = 0x7f080034;\n\t\tpublic static final int abc_text_size_display_1_material = 0x7f080035;\n\t\tpublic static final int abc_text_size_display_2_material = 0x7f080036;\n\t\tpublic static final int abc_text_size_display_3_material = 0x7f080037;\n\t\tpublic static final int abc_text_size_display_4_material = 0x7f080038;\n\t\tpublic static final int abc_text_size_headline_material = 0x7f080039;\n\t\tpublic static final int abc_text_size_large_material = 0x7f08003a;\n\t\tpublic static final int abc_text_size_medium_material = 0x7f08003b;\n\t\tpublic static final int abc_text_size_menu_material = 0x7f08003c;\n\t\tpublic static final int abc_text_size_small_material = 0x7f08003d;\n\t\tpublic static final int abc_text_size_subhead_material = 0x7f08003e;\n\t\tpublic static final int abc_text_size_subtitle_material_toolbar = 0x7f080003;\n\t\tpublic static final int abc_text_size_title_material = 0x7f08003f;\n\t\tpublic static final int abc_text_size_title_material_toolbar = 0x7f080004;\n\t\tpublic static final int dialog_fixed_height_major = 0x7f080007;\n\t\tpublic static final int dialog_fixed_height_minor = 0x7f080008;\n\t\tpublic static final int dialog_fixed_width_major = 0x7f080009;\n\t\tpublic static final int dialog_fixed_width_minor = 0x7f08000a;\n\t\tpublic static final int disabled_alpha_material_dark = 0x7f080040;\n\t\tpublic static final int disabled_alpha_material_light = 0x7f080041;\n\t\tpublic static final int highlight_alpha_material_colored = 0x7f080042;\n\t\tpublic static final int highlight_alpha_material_dark = 0x7f080043;\n\t\tpublic static final int highlight_alpha_material_light = 0x7f080044;\n\t\tpublic static final int notification_large_icon_height = 0x7f080046;\n\t\tpublic static final int notification_large_icon_width = 0x7f080047;\n\t\tpublic static final int notification_subtext_size = 0x7f080048;\n\t}\n\tpublic static final class drawable {\n\t\tpublic static final int abc_ab_share_pack_mtrl_alpha = 0x7f020000;\n\t\tpublic static final int abc_action_bar_item_background_material = 0x7f020001;\n\t\tpublic static final int abc_btn_borderless_material = 0x7f020002;\n\t\tpublic static final int abc_btn_check_material = 0x7f020003;\n\t\tpublic static final int abc_btn_check_to_on_mtrl_000 = 0x7f020004;\n\t\tpublic static final int abc_btn_check_to_on_mtrl_015 = 0x7f020005;\n\t\tpublic static final int abc_btn_colored_material = 0x7f020006;\n\t\tpublic static final int abc_btn_default_mtrl_shape = 0x7f020007;\n\t\tpublic static final int abc_btn_radio_material = 0x7f020008;\n\t\tpublic static final int abc_btn_radio_to_on_mtrl_000 = 0x7f020009;\n\t\tpublic static final int abc_btn_radio_to_on_mtrl_015 = 0x7f02000a;\n\t\tpublic static final int abc_btn_rating_star_off_mtrl_alpha = 0x7f02000b;\n\t\tpublic static final int abc_btn_rating_star_on_mtrl_alpha = 0x7f02000c;\n\t\tpublic static final int abc_btn_switch_to_on_mtrl_00001 = 0x7f02000d;\n\t\tpublic static final int abc_btn_switch_to_on_mtrl_00012 = 0x7f02000e;\n\t\tpublic static final int abc_cab_background_internal_bg = 0x7f02000f;\n\t\tpublic static final int abc_cab_background_top_material = 0x7f020010;\n\t\tpublic static final int abc_cab_background_top_mtrl_alpha = 0x7f020011;\n\t\tpublic static final int abc_control_background_material = 0x7f020012;\n\t\tpublic static final int abc_dialog_material_background_dark = 0x7f020013;\n\t\tpublic static final int abc_dialog_material_background_light = 0x7f020014;\n\t\tpublic static final int abc_edit_text_material = 0x7f020015;\n\t\tpublic static final int abc_ic_ab_back_mtrl_am_alpha = 0x7f020016;\n\t\tpublic static final int abc_ic_clear_mtrl_alpha = 0x7f020017;\n\t\tpublic static final int abc_ic_commit_search_api_mtrl_alpha = 0x7f020018;\n\t\tpublic static final int abc_ic_go_search_api_mtrl_alpha = 0x7f020019;\n\t\tpublic static final int abc_ic_menu_copy_mtrl_am_alpha = 0x7f02001a;\n\t\tpublic static final int abc_ic_menu_cut_mtrl_alpha = 0x7f02001b;\n\t\tpublic static final int abc_ic_menu_moreoverflow_mtrl_alpha = 0x7f02001c;\n\t\tpublic static final int abc_ic_menu_paste_mtrl_am_alpha = 0x7f02001d;\n\t\tpublic static final int abc_ic_menu_selectall_mtrl_alpha = 0x7f02001e;\n\t\tpublic static final int abc_ic_menu_share_mtrl_alpha = 0x7f02001f;\n\t\tpublic static final int abc_ic_search_api_mtrl_alpha = 0x7f020020;\n\t\tpublic static final int abc_ic_voice_search_api_mtrl_alpha = 0x7f020021;\n\t\tpublic static final int abc_item_background_holo_dark = 0x7f020022;\n\t\tpublic static final int abc_item_background_holo_light = 0x7f020023;\n\t\tpublic static final int abc_list_divider_mtrl_alpha = 0x7f020024;\n\t\tpublic static final int abc_list_focused_holo = 0x7f020025;\n\t\tpublic static final int abc_list_longpressed_holo = 0x7f020026;\n\t\tpublic static final int abc_list_pressed_holo_dark = 0x7f020027;\n\t\tpublic static final int abc_list_pressed_holo_light = 0x7f020028;\n\t\tpublic static final int abc_list_selector_background_transition_holo_dark = 0x7f020029;\n\t\tpublic static final int abc_list_selector_background_transition_holo_light = 0x7f02002a;\n\t\tpublic static final int abc_list_selector_disabled_holo_dark = 0x7f02002b;\n\t\tpublic static final int abc_list_selector_disabled_holo_light = 0x7f02002c;\n\t\tpublic static final int abc_list_selector_holo_dark = 0x7f02002d;\n\t\tpublic static final int abc_list_selector_holo_light = 0x7f02002e;\n\t\tpublic static final int abc_menu_hardkey_panel_mtrl_mult = 0x7f02002f;\n\t\tpublic static final int abc_popup_background_mtrl_mult = 0x7f020030;\n\t\tpublic static final int abc_ratingbar_full_material = 0x7f020031;\n\t\tpublic static final int abc_spinner_mtrl_am_alpha = 0x7f020032;\n\t\tpublic static final int abc_spinner_textfield_background_material = 0x7f020033;\n\t\tpublic static final int abc_switch_thumb_material = 0x7f020034;\n\t\tpublic static final int abc_switch_track_mtrl_alpha = 0x7f020035;\n\t\tpublic static final int abc_tab_indicator_material = 0x7f020036;\n\t\tpublic static final int abc_tab_indicator_mtrl_alpha = 0x7f020037;\n\t\tpublic static final int abc_text_cursor_material = 0x7f020038;\n\t\tpublic static final int abc_textfield_activated_mtrl_alpha = 0x7f020039;\n\t\tpublic static final int abc_textfield_default_mtrl_alpha = 0x7f02003a;\n\t\tpublic static final int abc_textfield_search_activated_mtrl_alpha = 0x7f02003b;\n\t\tpublic static final int abc_textfield_search_default_mtrl_alpha = 0x7f02003c;\n\t\tpublic static final int abc_textfield_search_material = 0x7f02003d;\n\t\tpublic static final int notification_template_icon_bg = 0x7f02003e;\n\t}\n\tpublic static final class id {\n\t\tpublic static final int action0 = 0x7f0d0057;\n\t\tpublic static final int action_bar = 0x7f0d0047;\n\t\tpublic static final int action_bar_activity_content = 0x7f0d0000;\n\t\tpublic static final int action_bar_container = 0x7f0d0046;\n\t\tpublic static final int action_bar_root = 0x7f0d0042;\n\t\tpublic static final int action_bar_spinner = 0x7f0d0001;\n\t\tpublic static final int action_bar_subtitle = 0x7f0d002b;\n\t\tpublic static final int action_bar_title = 0x7f0d002a;\n\t\tpublic static final int action_context_bar = 0x7f0d0048;\n\t\tpublic static final int action_divider = 0x7f0d005b;\n\t\tpublic static final int action_menu_divider = 0x7f0d0002;\n\t\tpublic static final int action_menu_presenter = 0x7f0d0003;\n\t\tpublic static final int action_mode_bar = 0x7f0d0044;\n\t\tpublic static final int action_mode_bar_stub = 0x7f0d0043;\n\t\tpublic static final int action_mode_close_button = 0x7f0d002c;\n\t\tpublic static final int activity_chooser_view_content = 0x7f0d002d;\n\t\tpublic static final int alertTitle = 0x7f0d0037;\n\t\tpublic static final int always = 0x7f0d0024;\n\t\tpublic static final int beginning = 0x7f0d0021;\n\t\tpublic static final int buttonPanel = 0x7f0d003d;\n\t\tpublic static final int cancel_action = 0x7f0d0058;\n\t\tpublic static final int checkbox = 0x7f0d003f;\n\t\tpublic static final int chronometer = 0x7f0d005e;\n\t\tpublic static final int collapseActionView = 0x7f0d0025;\n\t\tpublic static final int contentPanel = 0x7f0d0038;\n\t\tpublic static final int custom = 0x7f0d003c;\n\t\tpublic static final int customPanel = 0x7f0d003b;\n\t\tpublic static final int decor_content_parent = 0x7f0d0045;\n\t\tpublic static final int default_activity_button = 0x7f0d0030;\n\t\tpublic static final int disableHome = 0x7f0d000d;\n\t\tpublic static final int edit_query = 0x7f0d0049;\n\t\tpublic static final int end = 0x7f0d0022;\n\t\tpublic static final int end_padder = 0x7f0d0063;\n\t\tpublic static final int expand_activities_button = 0x7f0d002e;\n\t\tpublic static final int expanded_menu = 0x7f0d003e;\n\t\tpublic static final int home = 0x7f0d0004;\n\t\tpublic static final int homeAsUp = 0x7f0d000e;\n\t\tpublic static final int icon = 0x7f0d0032;\n\t\tpublic static final int ifRoom = 0x7f0d0026;\n\t\tpublic static final int image = 0x7f0d002f;\n\t\tpublic static final int info = 0x7f0d0062;\n\t\tpublic static final int line1 = 0x7f0d005c;\n\t\tpublic static final int line3 = 0x7f0d0060;\n\t\tpublic static final int listMode = 0x7f0d000a;\n\t\tpublic static final int list_item = 0x7f0d0031;\n\t\tpublic static final int media_actions = 0x7f0d005a;\n\t\tpublic static final int middle = 0x7f0d0023;\n\t\tpublic static final int multiply = 0x7f0d0014;\n\t\tpublic static final int never = 0x7f0d0027;\n\t\tpublic static final int none = 0x7f0d000f;\n\t\tpublic static final int normal = 0x7f0d000b;\n\t\tpublic static final int parentPanel = 0x7f0d0034;\n\t\tpublic static final int progress_circular = 0x7f0d0006;\n\t\tpublic static final int progress_horizontal = 0x7f0d0007;\n\t\tpublic static final int radio = 0x7f0d0041;\n\t\tpublic static final int screen = 0x7f0d0015;\n\t\tpublic static final int scrollView = 0x7f0d0039;\n\t\tpublic static final int search_badge = 0x7f0d004b;\n\t\tpublic static final int search_bar = 0x7f0d004a;\n\t\tpublic static final int search_button = 0x7f0d004c;\n\t\tpublic static final int search_close_btn = 0x7f0d0051;\n\t\tpublic static final int search_edit_frame = 0x7f0d004d;\n\t\tpublic static final int search_go_btn = 0x7f0d0053;\n\t\tpublic static final int search_mag_icon = 0x7f0d004e;\n\t\tpublic static final int search_plate = 0x7f0d004f;\n\t\tpublic static final int search_src_text = 0x7f0d0050;\n\t\tpublic static final int search_voice_btn = 0x7f0d0054;\n\t\tpublic static final int select_dialog_listview = 0x7f0d0055;\n\t\tpublic static final int shortcut = 0x7f0d0040;\n\t\tpublic static final int showCustom = 0x7f0d0010;\n\t\tpublic static final int showHome = 0x7f0d0011;\n\t\tpublic static final int showTitle = 0x7f0d0012;\n\t\tpublic static final int split_action_bar = 0x7f0d0008;\n\t\tpublic static final int src_atop = 0x7f0d0016;\n\t\tpublic static final int src_in = 0x7f0d0017;\n\t\tpublic static final int src_over = 0x7f0d0018;\n\t\tpublic static final int status_bar_latest_event_content = 0x7f0d0059;\n\t\tpublic static final int submit_area = 0x7f0d0052;\n\t\tpublic static final int tabMode = 0x7f0d000c;\n\t\tpublic static final int text = 0x7f0d0061;\n\t\tpublic static final int text2 = 0x7f0d005f;\n\t\tpublic static final int textSpacerNoButtons = 0x7f0d003a;\n\t\tpublic static final int time = 0x7f0d005d;\n\t\tpublic static final int title = 0x7f0d0033;\n\t\tpublic static final int title_template = 0x7f0d0036;\n\t\tpublic static final int topPanel = 0x7f0d0035;\n\t\tpublic static final int up = 0x7f0d0009;\n\t\tpublic static final int useLogo = 0x7f0d0013;\n\t\tpublic static final int withText = 0x7f0d0028;\n\t\tpublic static final int wrap_content = 0x7f0d0029;\n\t}\n\tpublic static final class integer {\n\t\tpublic static final int abc_config_activityDefaultDur = 0x7f0b0001;\n\t\tpublic static final int abc_config_activityShortDur = 0x7f0b0002;\n\t\tpublic static final int abc_max_action_buttons = 0x7f0b0000;\n\t\tpublic static final int cancel_button_image_alpha = 0x7f0b0003;\n\t\tpublic static final int status_bar_notification_info_maxnum = 0x7f0b0004;\n\t}\n\tpublic static final class layout {\n\t\tpublic static final int abc_action_bar_title_item = 0x7f040000;\n\t\tpublic static final int abc_action_bar_up_container = 0x7f040001;\n\t\tpublic static final int abc_action_bar_view_list_nav_layout = 0x7f040002;\n\t\tpublic static final int abc_action_menu_item_layout = 0x7f040003;\n\t\tpublic static final int abc_action_menu_layout = 0x7f040004;\n\t\tpublic static final int abc_action_mode_bar = 0x7f040005;\n\t\tpublic static final int abc_action_mode_close_item_material = 0x7f040006;\n\t\tpublic static final int abc_activity_chooser_view = 0x7f040007;\n\t\tpublic static final int abc_activity_chooser_view_list_item = 0x7f040008;\n\t\tpublic static final int abc_alert_dialog_material = 0x7f040009;\n\t\tpublic static final int abc_dialog_title_material = 0x7f04000a;\n\t\tpublic static final int abc_expanded_menu_layout = 0x7f04000b;\n\t\tpublic static final int abc_list_menu_item_checkbox = 0x7f04000c;\n\t\tpublic static final int abc_list_menu_item_icon = 0x7f04000d;\n\t\tpublic static final int abc_list_menu_item_layout = 0x7f04000e;\n\t\tpublic static final int abc_list_menu_item_radio = 0x7f04000f;\n\t\tpublic static final int abc_popup_menu_item_layout = 0x7f040010;\n\t\tpublic static final int abc_screen_content_include = 0x7f040011;\n\t\tpublic static final int abc_screen_simple = 0x7f040012;\n\t\tpublic static final int abc_screen_simple_overlay_action_mode = 0x7f040013;\n\t\tpublic static final int abc_screen_toolbar = 0x7f040014;\n\t\tpublic static final int abc_search_dropdown_item_icons_2line = 0x7f040015;\n\t\tpublic static final int abc_search_view = 0x7f040016;\n\t\tpublic static final int abc_select_dialog_material = 0x7f040017;\n\t\tpublic static final int notification_media_action = 0x7f040019;\n\t\tpublic static final int notification_media_cancel_action = 0x7f04001a;\n\t\tpublic static final int notification_template_big_media = 0x7f04001b;\n\t\tpublic static final int notification_template_big_media_narrow = 0x7f04001c;\n\t\tpublic static final int notification_template_lines = 0x7f04001d;\n\t\tpublic static final int notification_template_media = 0x7f04001e;\n\t\tpublic static final int notification_template_part_chronometer = 0x7f04001f;\n\t\tpublic static final int notification_template_part_time = 0x7f040020;\n\t\tpublic static final int select_dialog_item_material = 0x7f040024;\n\t\tpublic static final int select_dialog_multichoice_material = 0x7f040025;\n\t\tpublic static final int select_dialog_singlechoice_material = 0x7f040026;\n\t\tpublic static final int support_simple_spinner_dropdown_item = 0x7f040027;\n\t}\n\tpublic static final class string {\n\t\tpublic static final int abc_action_bar_home_description = 0x7f070000;\n\t\tpublic static final int abc_action_bar_home_description_format = 0x7f070001;\n\t\tpublic static final int abc_action_bar_home_subtitle_description_format = 0x7f070002;\n\t\tpublic static final int abc_action_bar_up_description = 0x7f070003;\n\t\tpublic static final int abc_action_menu_overflow_description = 0x7f070004;\n\t\tpublic static final int abc_action_mode_done = 0x7f070005;\n\t\tpublic static final int abc_activity_chooser_view_see_all = 0x7f070006;\n\t\tpublic static final int abc_activitychooserview_choose_application = 0x7f070007;\n\t\tpublic static final int abc_search_hint = 0x7f070008;\n\t\tpublic static final int abc_searchview_description_clear = 0x7f070009;\n\t\tpublic static final int abc_searchview_description_query = 0x7f07000a;\n\t\tpublic static final int abc_searchview_description_search = 0x7f07000b;\n\t\tpublic static final int abc_searchview_description_submit = 0x7f07000c;\n\t\tpublic static final int abc_searchview_description_voice = 0x7f07000d;\n\t\tpublic static final int abc_shareactionprovider_share_with = 0x7f07000e;\n\t\tpublic static final int abc_shareactionprovider_share_with_application = 0x7f07000f;\n\t\tpublic static final int abc_toolbar_collapse_description = 0x7f070010;\n\t\tpublic static final int status_bar_notification_info_overflow = 0x7f070011;\n\t}\n\tpublic static final class style {\n\t\tpublic static final int AlertDialog_AppCompat = 0x7f09007a;\n\t\tpublic static final int AlertDialog_AppCompat_Light = 0x7f09007b;\n\t\tpublic static final int Animation_AppCompat_Dialog = 0x7f09007c;\n\t\tpublic static final int Animation_AppCompat_DropDownUp = 0x7f09007d;\n\t\tpublic static final int Base_AlertDialog_AppCompat = 0x7f090080;\n\t\tpublic static final int Base_AlertDialog_AppCompat_Light = 0x7f090081;\n\t\tpublic static final int Base_Animation_AppCompat_Dialog = 0x7f090082;\n\t\tpublic static final int Base_Animation_AppCompat_DropDownUp = 0x7f090083;\n\t\tpublic static final int Base_DialogWindowTitleBackground_AppCompat = 0x7f090085;\n\t\tpublic static final int Base_DialogWindowTitle_AppCompat = 0x7f090084;\n\t\tpublic static final int Base_TextAppearance_AppCompat = 0x7f09002d;\n\t\tpublic static final int Base_TextAppearance_AppCompat_Body1 = 0x7f09002e;\n\t\tpublic static final int Base_TextAppearance_AppCompat_Body2 = 0x7f09002f;\n\t\tpublic static final int Base_TextAppearance_AppCompat_Button = 0x7f090018;\n\t\tpublic static final int Base_TextAppearance_AppCompat_Caption = 0x7f090030;\n\t\tpublic static final int Base_TextAppearance_AppCompat_Display1 = 0x7f090031;\n\t\tpublic static final int Base_TextAppearance_AppCompat_Display2 = 0x7f090032;\n\t\tpublic static final int Base_TextAppearance_AppCompat_Display3 = 0x7f090033;\n\t\tpublic static final int Base_TextAppearance_AppCompat_Display4 = 0x7f090034;\n\t\tpublic static final int Base_TextAppearance_AppCompat_Headline = 0x7f090035;\n\t\tpublic static final int Base_TextAppearance_AppCompat_Inverse = 0x7f090003;\n\t\tpublic static final int Base_TextAppearance_AppCompat_Large = 0x7f090036;\n\t\tpublic static final int Base_TextAppearance_AppCompat_Large_Inverse = 0x7f090004;\n\t\tpublic static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 0x7f090037;\n\t\tpublic static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 0x7f090038;\n\t\tpublic static final int Base_TextAppearance_AppCompat_Medium = 0x7f090039;\n\t\tpublic static final int Base_TextAppearance_AppCompat_Medium_Inverse = 0x7f090005;\n\t\tpublic static final int Base_TextAppearance_AppCompat_Menu = 0x7f09003a;\n\t\tpublic static final int Base_TextAppearance_AppCompat_SearchResult = 0x7f090086;\n\t\tpublic static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle = 0x7f09003b;\n\t\tpublic static final int Base_TextAppearance_AppCompat_SearchResult_Title = 0x7f09003c;\n\t\tpublic static final int Base_TextAppearance_AppCompat_Small = 0x7f09003d;\n\t\tpublic static final int Base_TextAppearance_AppCompat_Small_Inverse = 0x7f090006;\n\t\tpublic static final int Base_TextAppearance_AppCompat_Subhead = 0x7f09003e;\n\t\tpublic static final int Base_TextAppearance_AppCompat_Subhead_Inverse = 0x7f090007;\n\t\tpublic static final int Base_TextAppearance_AppCompat_Title = 0x7f09003f;\n\t\tpublic static final int Base_TextAppearance_AppCompat_Title_Inverse = 0x7f090008;\n\t\tpublic static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu = 0x7f090040;\n\t\tpublic static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 0x7f090041;\n\t\tpublic static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 0x7f090042;\n\t\tpublic static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title = 0x7f090043;\n\t\tpublic static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 0x7f090044;\n\t\tpublic static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 0x7f090045;\n\t\tpublic static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title = 0x7f090046;\n\t\tpublic static final int Base_TextAppearance_AppCompat_Widget_Button = 0x7f090047;\n\t\tpublic static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse = 0x7f090076;\n\t\tpublic static final int Base_TextAppearance_AppCompat_Widget_DropDownItem = 0x7f090087;\n\t\tpublic static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large = 0x7f090048;\n\t\tpublic static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small = 0x7f090049;\n\t\tpublic static final int Base_TextAppearance_AppCompat_Widget_Switch = 0x7f09004a;\n\t\tpublic static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 0x7f09004b;\n\t\tpublic static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 0x7f090088;\n\t\tpublic static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 0x7f09004c;\n\t\tpublic static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title = 0x7f09004d;\n\t\tpublic static final int Base_ThemeOverlay_AppCompat = 0x7f090091;\n\t\tpublic static final int Base_ThemeOverlay_AppCompat_ActionBar = 0x7f090092;\n\t\tpublic static final int Base_ThemeOverlay_AppCompat_Dark = 0x7f090093;\n\t\tpublic static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar = 0x7f090094;\n\t\tpublic static final int Base_ThemeOverlay_AppCompat_Light = 0x7f090095;\n\t\tpublic static final int Base_Theme_AppCompat = 0x7f09004e;\n\t\tpublic static final int Base_Theme_AppCompat_CompactMenu = 0x7f090089;\n\t\tpublic static final int Base_Theme_AppCompat_Dialog = 0x7f090009;\n\t\tpublic static final int Base_Theme_AppCompat_DialogWhenLarge = 0x7f090001;\n\t\tpublic static final int Base_Theme_AppCompat_Dialog_Alert = 0x7f09008a;\n\t\tpublic static final int Base_Theme_AppCompat_Dialog_FixedSize = 0x7f09008b;\n\t\tpublic static final int Base_Theme_AppCompat_Dialog_MinWidth = 0x7f09008c;\n\t\tpublic static final int Base_Theme_AppCompat_Light = 0x7f09004f;\n\t\tpublic static final int Base_Theme_AppCompat_Light_DarkActionBar = 0x7f09008d;\n\t\tpublic static final int Base_Theme_AppCompat_Light_Dialog = 0x7f09000a;\n\t\tpublic static final int Base_Theme_AppCompat_Light_DialogWhenLarge = 0x7f090002;\n\t\tpublic static final int Base_Theme_AppCompat_Light_Dialog_Alert = 0x7f09008e;\n\t\tpublic static final int Base_Theme_AppCompat_Light_Dialog_FixedSize = 0x7f09008f;\n\t\tpublic static final int Base_Theme_AppCompat_Light_Dialog_MinWidth = 0x7f090090;\n\t\tpublic static final int Base_V11_Theme_AppCompat_Dialog = 0x7f09000b;\n\t\tpublic static final int Base_V11_Theme_AppCompat_Light_Dialog = 0x7f09000c;\n\t\tpublic static final int Base_V12_Widget_AppCompat_AutoCompleteTextView = 0x7f090014;\n\t\tpublic static final int Base_V12_Widget_AppCompat_EditText = 0x7f090015;\n\t\tpublic static final int Base_V21_Theme_AppCompat = 0x7f090050;\n\t\tpublic static final int Base_V21_Theme_AppCompat_Dialog = 0x7f090051;\n\t\tpublic static final int Base_V21_Theme_AppCompat_Light = 0x7f090052;\n\t\tpublic static final int Base_V21_Theme_AppCompat_Light_Dialog = 0x7f090053;\n\t\tpublic static final int Base_V22_Theme_AppCompat = 0x7f090074;\n\t\tpublic static final int Base_V22_Theme_AppCompat_Light = 0x7f090075;\n\t\tpublic static final int Base_V23_Theme_AppCompat = 0x7f090077;\n\t\tpublic static final int Base_V23_Theme_AppCompat_Light = 0x7f090078;\n\t\tpublic static final int Base_V7_Theme_AppCompat = 0x7f090096;\n\t\tpublic static final int Base_V7_Theme_AppCompat_Dialog = 0x7f090097;\n\t\tpublic static final int Base_V7_Theme_AppCompat_Light = 0x7f090098;\n\t\tpublic static final int Base_V7_Theme_AppCompat_Light_Dialog = 0x7f090099;\n\t\tpublic static final int Base_V7_Widget_AppCompat_AutoCompleteTextView = 0x7f09009a;\n\t\tpublic static final int Base_V7_Widget_AppCompat_EditText = 0x7f09009b;\n\t\tpublic static final int Base_Widget_AppCompat_ActionBar = 0x7f09009c;\n\t\tpublic static final int Base_Widget_AppCompat_ActionBar_Solid = 0x7f09009d;\n\t\tpublic static final int Base_Widget_AppCompat_ActionBar_TabBar = 0x7f09009e;\n\t\tpublic static final int Base_Widget_AppCompat_ActionBar_TabText = 0x7f090054;\n\t\tpublic static final int Base_Widget_AppCompat_ActionBar_TabView = 0x7f090055;\n\t\tpublic static final int Base_Widget_AppCompat_ActionButton = 0x7f090056;\n\t\tpublic static final int Base_Widget_AppCompat_ActionButton_CloseMode = 0x7f090057;\n\t\tpublic static final int Base_Widget_AppCompat_ActionButton_Overflow = 0x7f090058;\n\t\tpublic static final int Base_Widget_AppCompat_ActionMode = 0x7f09009f;\n\t\tpublic static final int Base_Widget_AppCompat_ActivityChooserView = 0x7f0900a0;\n\t\tpublic static final int Base_Widget_AppCompat_AutoCompleteTextView = 0x7f090016;\n\t\tpublic static final int Base_Widget_AppCompat_Button = 0x7f090059;\n\t\tpublic static final int Base_Widget_AppCompat_ButtonBar = 0x7f09005d;\n\t\tpublic static final int Base_Widget_AppCompat_ButtonBar_AlertDialog = 0x7f0900a2;\n\t\tpublic static final int Base_Widget_AppCompat_Button_Borderless = 0x7f09005a;\n\t\tpublic static final int Base_Widget_AppCompat_Button_Borderless_Colored = 0x7f09005b;\n\t\tpublic static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog = 0x7f0900a1;\n\t\tpublic static final int Base_Widget_AppCompat_Button_Colored = 0x7f090079;\n\t\tpublic static final int Base_Widget_AppCompat_Button_Small = 0x7f09005c;\n\t\tpublic static final int Base_Widget_AppCompat_CompoundButton_CheckBox = 0x7f09005e;\n\t\tpublic static final int Base_Widget_AppCompat_CompoundButton_RadioButton = 0x7f09005f;\n\t\tpublic static final int Base_Widget_AppCompat_CompoundButton_Switch = 0x7f0900a3;\n\t\tpublic static final int Base_Widget_AppCompat_DrawerArrowToggle = 0x7f090000;\n\t\tpublic static final int Base_Widget_AppCompat_DrawerArrowToggle_Common = 0x7f0900a4;\n\t\tpublic static final int Base_Widget_AppCompat_DropDownItem_Spinner = 0x7f090060;\n\t\tpublic static final int Base_Widget_AppCompat_EditText = 0x7f090017;\n\t\tpublic static final int Base_Widget_AppCompat_Light_ActionBar = 0x7f0900a5;\n\t\tpublic static final int Base_Widget_AppCompat_Light_ActionBar_Solid = 0x7f0900a6;\n\t\tpublic static final int Base_Widget_AppCompat_Light_ActionBar_TabBar = 0x7f0900a7;\n\t\tpublic static final int Base_Widget_AppCompat_Light_ActionBar_TabText = 0x7f090061;\n\t\tpublic static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse = 0x7f090062;\n\t\tpublic static final int Base_Widget_AppCompat_Light_ActionBar_TabView = 0x7f090063;\n\t\tpublic static final int Base_Widget_AppCompat_Light_PopupMenu = 0x7f090064;\n\t\tpublic static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow = 0x7f090065;\n\t\tpublic static final int Base_Widget_AppCompat_ListPopupWindow = 0x7f090066;\n\t\tpublic static final int Base_Widget_AppCompat_ListView = 0x7f090067;\n\t\tpublic static final int Base_Widget_AppCompat_ListView_DropDown = 0x7f090068;\n\t\tpublic static final int Base_Widget_AppCompat_ListView_Menu = 0x7f090069;\n\t\tpublic static final int Base_Widget_AppCompat_PopupMenu = 0x7f09006a;\n\t\tpublic static final int Base_Widget_AppCompat_PopupMenu_Overflow = 0x7f09006b;\n\t\tpublic static final int Base_Widget_AppCompat_PopupWindow = 0x7f0900a8;\n\t\tpublic static final int Base_Widget_AppCompat_ProgressBar = 0x7f09000d;\n\t\tpublic static final int Base_Widget_AppCompat_ProgressBar_Horizontal = 0x7f09000e;\n\t\tpublic static final int Base_Widget_AppCompat_RatingBar = 0x7f09006c;\n\t\tpublic static final int Base_Widget_AppCompat_SearchView = 0x7f0900a9;\n\t\tpublic static final int Base_Widget_AppCompat_SearchView_ActionBar = 0x7f0900aa;\n\t\tpublic static final int Base_Widget_AppCompat_Spinner = 0x7f09006d;\n\t\tpublic static final int Base_Widget_AppCompat_Spinner_Underlined = 0x7f09006e;\n\t\tpublic static final int Base_Widget_AppCompat_TextView_SpinnerItem = 0x7f09006f;\n\t\tpublic static final int Base_Widget_AppCompat_Toolbar = 0x7f0900ab;\n\t\tpublic static final int Base_Widget_AppCompat_Toolbar_Button_Navigation = 0x7f090070;\n\t\tpublic static final int Platform_AppCompat = 0x7f09000f;\n\t\tpublic static final int Platform_AppCompat_Light = 0x7f090010;\n\t\tpublic static final int Platform_ThemeOverlay_AppCompat = 0x7f090071;\n\t\tpublic static final int Platform_ThemeOverlay_AppCompat_Dark = 0x7f090072;\n\t\tpublic static final int Platform_ThemeOverlay_AppCompat_Light = 0x7f090073;\n\t\tpublic static final int Platform_V11_AppCompat = 0x7f090011;\n\t\tpublic static final int Platform_V11_AppCompat_Light = 0x7f090012;\n\t\tpublic static final int Platform_V14_AppCompat = 0x7f090019;\n\t\tpublic static final int Platform_V14_AppCompat_Light = 0x7f09001a;\n\t\tpublic static final int Platform_Widget_AppCompat_Spinner = 0x7f090013;\n\t\tpublic static final int RtlOverlay_DialogWindowTitle_AppCompat = 0x7f090020;\n\t\tpublic static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem = 0x7f090021;\n\t\tpublic static final int RtlOverlay_Widget_AppCompat_ActionButton_Overflow = 0x7f090022;\n\t\tpublic static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon = 0x7f090023;\n\t\tpublic static final int RtlOverlay_Widget_AppCompat_PopupMenuItem = 0x7f090024;\n\t\tpublic static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup = 0x7f090025;\n\t\tpublic static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text = 0x7f090026;\n\t\tpublic static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon = 0x7f09002c;\n\t\tpublic static final int RtlOverlay_Widget_AppCompat_Search_DropDown = 0x7f090027;\n\t\tpublic static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 = 0x7f090028;\n\t\tpublic static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 = 0x7f090029;\n\t\tpublic static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query = 0x7f09002a;\n\t\tpublic static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text = 0x7f09002b;\n\t\tpublic static final int TextAppearance_AppCompat = 0x7f0900ad;\n\t\tpublic static final int TextAppearance_AppCompat_Body1 = 0x7f0900ae;\n\t\tpublic static final int TextAppearance_AppCompat_Body2 = 0x7f0900af;\n\t\tpublic static final int TextAppearance_AppCompat_Button = 0x7f0900b0;\n\t\tpublic static final int TextAppearance_AppCompat_Caption = 0x7f0900b1;\n\t\tpublic static final int TextAppearance_AppCompat_Display1 = 0x7f0900b2;\n\t\tpublic static final int TextAppearance_AppCompat_Display2 = 0x7f0900b3;\n\t\tpublic static final int TextAppearance_AppCompat_Display3 = 0x7f0900b4;\n\t\tpublic static final int TextAppearance_AppCompat_Display4 = 0x7f0900b5;\n\t\tpublic static final int TextAppearance_AppCompat_Headline = 0x7f0900b6;\n\t\tpublic static final int TextAppearance_AppCompat_Inverse = 0x7f0900b7;\n\t\tpublic static final int TextAppearance_AppCompat_Large = 0x7f0900b8;\n\t\tpublic static final int TextAppearance_AppCompat_Large_Inverse = 0x7f0900b9;\n\t\tpublic static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle = 0x7f0900ba;\n\t\tpublic static final int TextAppearance_AppCompat_Light_SearchResult_Title = 0x7f0900bb;\n\t\tpublic static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 0x7f0900bc;\n\t\tpublic static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 0x7f0900bd;\n\t\tpublic static final int TextAppearance_AppCompat_Medium = 0x7f0900be;\n\t\tpublic static final int TextAppearance_AppCompat_Medium_Inverse = 0x7f0900bf;\n\t\tpublic static final int TextAppearance_AppCompat_Menu = 0x7f0900c0;\n\t\tpublic static final int TextAppearance_AppCompat_SearchResult_Subtitle = 0x7f0900c1;\n\t\tpublic static final int TextAppearance_AppCompat_SearchResult_Title = 0x7f0900c2;\n\t\tpublic static final int TextAppearance_AppCompat_Small = 0x7f0900c3;\n\t\tpublic static final int TextAppearance_AppCompat_Small_Inverse = 0x7f0900c4;\n\t\tpublic static final int TextAppearance_AppCompat_Subhead = 0x7f0900c5;\n\t\tpublic static final int TextAppearance_AppCompat_Subhead_Inverse = 0x7f0900c6;\n\t\tpublic static final int TextAppearance_AppCompat_Title = 0x7f0900c7;\n\t\tpublic static final int TextAppearance_AppCompat_Title_Inverse = 0x7f0900c8;\n\t\tpublic static final int TextAppearance_AppCompat_Widget_ActionBar_Menu = 0x7f0900c9;\n\t\tpublic static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 0x7f0900ca;\n\t\tpublic static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 0x7f0900cb;\n\t\tpublic static final int TextAppearance_AppCompat_Widget_ActionBar_Title = 0x7f0900cc;\n\t\tpublic static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 0x7f0900cd;\n\t\tpublic static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 0x7f0900ce;\n\t\tpublic static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse = 0x7f0900cf;\n\t\tpublic static final int TextAppearance_AppCompat_Widget_ActionMode_Title = 0x7f0900d0;\n\t\tpublic static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse = 0x7f0900d1;\n\t\tpublic static final int TextAppearance_AppCompat_Widget_Button = 0x7f0900d2;\n\t\tpublic static final int TextAppearance_AppCompat_Widget_Button_Inverse = 0x7f0900d3;\n\t\tpublic static final int TextAppearance_AppCompat_Widget_DropDownItem = 0x7f0900d4;\n\t\tpublic static final int TextAppearance_AppCompat_Widget_PopupMenu_Large = 0x7f0900d5;\n\t\tpublic static final int TextAppearance_AppCompat_Widget_PopupMenu_Small = 0x7f0900d6;\n\t\tpublic static final int TextAppearance_AppCompat_Widget_Switch = 0x7f0900d7;\n\t\tpublic static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 0x7f0900d8;\n\t\tpublic static final int TextAppearance_StatusBar_EventContent = 0x7f09001b;\n\t\tpublic static final int TextAppearance_StatusBar_EventContent_Info = 0x7f09001c;\n\t\tpublic static final int TextAppearance_StatusBar_EventContent_Line2 = 0x7f09001d;\n\t\tpublic static final int TextAppearance_StatusBar_EventContent_Time = 0x7f09001e;\n\t\tpublic static final int TextAppearance_StatusBar_EventContent_Title = 0x7f09001f;\n\t\tpublic static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 0x7f0900d9;\n\t\tpublic static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 0x7f0900da;\n\t\tpublic static final int TextAppearance_Widget_AppCompat_Toolbar_Title = 0x7f0900db;\n\t\tpublic static final int ThemeOverlay_AppCompat = 0x7f0900f1;\n\t\tpublic static final int ThemeOverlay_AppCompat_ActionBar = 0x7f0900f2;\n\t\tpublic static final int ThemeOverlay_AppCompat_Dark = 0x7f0900f3;\n\t\tpublic static final int ThemeOverlay_AppCompat_Dark_ActionBar = 0x7f0900f4;\n\t\tpublic static final int ThemeOverlay_AppCompat_Light = 0x7f0900f5;\n\t\tpublic static final int Theme_AppCompat = 0x7f0900dd;\n\t\tpublic static final int Theme_AppCompat_CompactMenu = 0x7f0900de;\n\t\tpublic static final int Theme_AppCompat_Dialog = 0x7f0900df;\n\t\tpublic static final int Theme_AppCompat_DialogWhenLarge = 0x7f0900e2;\n\t\tpublic static final int Theme_AppCompat_Dialog_Alert = 0x7f0900e0;\n\t\tpublic static final int Theme_AppCompat_Dialog_MinWidth = 0x7f0900e1;\n\t\tpublic static final int Theme_AppCompat_Light = 0x7f0900e3;\n\t\tpublic static final int Theme_AppCompat_Light_DarkActionBar = 0x7f0900e4;\n\t\tpublic static final int Theme_AppCompat_Light_Dialog = 0x7f0900e5;\n\t\tpublic static final int Theme_AppCompat_Light_DialogWhenLarge = 0x7f0900e8;\n\t\tpublic static final int Theme_AppCompat_Light_Dialog_Alert = 0x7f0900e6;\n\t\tpublic static final int Theme_AppCompat_Light_Dialog_MinWidth = 0x7f0900e7;\n\t\tpublic static final int Theme_AppCompat_Light_NoActionBar = 0x7f0900e9;\n\t\tpublic static final int Theme_AppCompat_NoActionBar = 0x7f0900ea;\n\t\tpublic static final int Widget_AppCompat_ActionBar = 0x7f0900f6;\n\t\tpublic static final int Widget_AppCompat_ActionBar_Solid = 0x7f0900f7;\n\t\tpublic static final int Widget_AppCompat_ActionBar_TabBar = 0x7f0900f8;\n\t\tpublic static final int Widget_AppCompat_ActionBar_TabText = 0x7f0900f9;\n\t\tpublic static final int Widget_AppCompat_ActionBar_TabView = 0x7f0900fa;\n\t\tpublic static final int Widget_AppCompat_ActionButton = 0x7f0900fb;\n\t\tpublic static final int Widget_AppCompat_ActionButton_CloseMode = 0x7f0900fc;\n\t\tpublic static final int Widget_AppCompat_ActionButton_Overflow = 0x7f0900fd;\n\t\tpublic static final int Widget_AppCompat_ActionMode = 0x7f0900fe;\n\t\tpublic static final int Widget_AppCompat_ActivityChooserView = 0x7f0900ff;\n\t\tpublic static final int Widget_AppCompat_AutoCompleteTextView = 0x7f090100;\n\t\tpublic static final int Widget_AppCompat_Button = 0x7f090101;\n\t\tpublic static final int Widget_AppCompat_ButtonBar = 0x7f090107;\n\t\tpublic static final int Widget_AppCompat_ButtonBar_AlertDialog = 0x7f090108;\n\t\tpublic static final int Widget_AppCompat_Button_Borderless = 0x7f090102;\n\t\tpublic static final int Widget_AppCompat_Button_Borderless_Colored = 0x7f090103;\n\t\tpublic static final int Widget_AppCompat_Button_ButtonBar_AlertDialog = 0x7f090104;\n\t\tpublic static final int Widget_AppCompat_Button_Colored = 0x7f090105;\n\t\tpublic static final int Widget_AppCompat_Button_Small = 0x7f090106;\n\t\tpublic static final int Widget_AppCompat_CompoundButton_CheckBox = 0x7f090109;\n\t\tpublic static final int Widget_AppCompat_CompoundButton_RadioButton = 0x7f09010a;\n\t\tpublic static final int Widget_AppCompat_CompoundButton_Switch = 0x7f09010b;\n\t\tpublic static final int Widget_AppCompat_DrawerArrowToggle = 0x7f09010c;\n\t\tpublic static final int Widget_AppCompat_DropDownItem_Spinner = 0x7f09010d;\n\t\tpublic static final int Widget_AppCompat_EditText = 0x7f09010e;\n\t\tpublic static final int Widget_AppCompat_Light_ActionBar = 0x7f09010f;\n\t\tpublic static final int Widget_AppCompat_Light_ActionBar_Solid = 0x7f090110;\n\t\tpublic static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse = 0x7f090111;\n\t\tpublic static final int Widget_AppCompat_Light_ActionBar_TabBar = 0x7f090112;\n\t\tpublic static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse = 0x7f090113;\n\t\tpublic static final int Widget_AppCompat_Light_ActionBar_TabText = 0x7f090114;\n\t\tpublic static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse = 0x7f090115;\n\t\tpublic static final int Widget_AppCompat_Light_ActionBar_TabView = 0x7f090116;\n\t\tpublic static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse = 0x7f090117;\n\t\tpublic static final int Widget_AppCompat_Light_ActionButton = 0x7f090118;\n\t\tpublic static final int Widget_AppCompat_Light_ActionButton_CloseMode = 0x7f090119;\n\t\tpublic static final int Widget_AppCompat_Light_ActionButton_Overflow = 0x7f09011a;\n\t\tpublic static final int Widget_AppCompat_Light_ActionMode_Inverse = 0x7f09011b;\n\t\tpublic static final int Widget_AppCompat_Light_ActivityChooserView = 0x7f09011c;\n\t\tpublic static final int Widget_AppCompat_Light_AutoCompleteTextView = 0x7f09011d;\n\t\tpublic static final int Widget_AppCompat_Light_DropDownItem_Spinner = 0x7f09011e;\n\t\tpublic static final int Widget_AppCompat_Light_ListPopupWindow = 0x7f09011f;\n\t\tpublic static final int Widget_AppCompat_Light_ListView_DropDown = 0x7f090120;\n\t\tpublic static final int Widget_AppCompat_Light_PopupMenu = 0x7f090121;\n\t\tpublic static final int Widget_AppCompat_Light_PopupMenu_Overflow = 0x7f090122;\n\t\tpublic static final int Widget_AppCompat_Light_SearchView = 0x7f090123;\n\t\tpublic static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar = 0x7f090124;\n\t\tpublic static final int Widget_AppCompat_ListPopupWindow = 0x7f090125;\n\t\tpublic static final int Widget_AppCompat_ListView = 0x7f090126;\n\t\tpublic static final int Widget_AppCompat_ListView_DropDown = 0x7f090127;\n\t\tpublic static final int Widget_AppCompat_ListView_Menu = 0x7f090128;\n\t\tpublic static final int Widget_AppCompat_PopupMenu = 0x7f090129;\n\t\tpublic static final int Widget_AppCompat_PopupMenu_Overflow = 0x7f09012a;\n\t\tpublic static final int Widget_AppCompat_PopupWindow = 0x7f09012b;\n\t\tpublic static final int Widget_AppCompat_ProgressBar = 0x7f09012c;\n\t\tpublic static final int Widget_AppCompat_ProgressBar_Horizontal = 0x7f09012d;\n\t\tpublic static final int Widget_AppCompat_RatingBar = 0x7f09012e;\n\t\tpublic static final int Widget_AppCompat_SearchView = 0x7f09012f;\n\t\tpublic static final int Widget_AppCompat_SearchView_ActionBar = 0x7f090130;\n\t\tpublic static final int Widget_AppCompat_Spinner = 0x7f090131;\n\t\tpublic static final int Widget_AppCompat_Spinner_DropDown = 0x7f090132;\n\t\tpublic static final int Widget_AppCompat_Spinner_DropDown_ActionBar = 0x7f090133;\n\t\tpublic static final int Widget_AppCompat_Spinner_Underlined = 0x7f090134;\n\t\tpublic static final int Widget_AppCompat_TextView_SpinnerItem = 0x7f090135;\n\t\tpublic static final int Widget_AppCompat_Toolbar = 0x7f090136;\n\t\tpublic static final int Widget_AppCompat_Toolbar_Button_Navigation = 0x7f090137;\n\t}\n\tpublic static final class styleable {\n\t\tpublic 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, 0x7f010097 };\n\t\tpublic static final int[] ActionBarLayout = { 0x010100b3 };\n\t\tpublic static final int ActionBarLayout_android_layout_gravity = 0;\n\t\tpublic static final int ActionBar_background = 10;\n\t\tpublic static final int ActionBar_backgroundSplit = 12;\n\t\tpublic static final int ActionBar_backgroundStacked = 11;\n\t\tpublic static final int ActionBar_contentInsetEnd = 21;\n\t\tpublic static final int ActionBar_contentInsetLeft = 22;\n\t\tpublic static final int ActionBar_contentInsetRight = 23;\n\t\tpublic static final int ActionBar_contentInsetStart = 20;\n\t\tpublic static final int ActionBar_customNavigationLayout = 13;\n\t\tpublic static final int ActionBar_displayOptions = 3;\n\t\tpublic static final int ActionBar_divider = 9;\n\t\tpublic static final int ActionBar_elevation = 24;\n\t\tpublic static final int ActionBar_height = 0;\n\t\tpublic static final int ActionBar_hideOnContentScroll = 19;\n\t\tpublic static final int ActionBar_homeAsUpIndicator = 26;\n\t\tpublic static final int ActionBar_homeLayout = 14;\n\t\tpublic static final int ActionBar_icon = 7;\n\t\tpublic static final int ActionBar_indeterminateProgressStyle = 16;\n\t\tpublic static final int ActionBar_itemPadding = 18;\n\t\tpublic static final int ActionBar_logo = 8;\n\t\tpublic static final int ActionBar_navigationMode = 2;\n\t\tpublic static final int ActionBar_popupTheme = 25;\n\t\tpublic static final int ActionBar_progressBarPadding = 17;\n\t\tpublic static final int ActionBar_progressBarStyle = 15;\n\t\tpublic static final int ActionBar_subtitle = 4;\n\t\tpublic static final int ActionBar_subtitleTextStyle = 6;\n\t\tpublic static final int ActionBar_title = 1;\n\t\tpublic static final int ActionBar_titleTextStyle = 5;\n\t\tpublic static final int[] ActionMenuItemView = { 0x0101013f };\n\t\tpublic static final int ActionMenuItemView_android_minWidth = 0;\n\t\tpublic static final int[] ActionMenuView = { };\n\t\tpublic static final int[] ActionMode = { 0x7f010001, 0x7f010007, 0x7f010008, 0x7f01000c, 0x7f01000e, 0x7f01001c };\n\t\tpublic static final int ActionMode_background = 3;\n\t\tpublic static final int ActionMode_backgroundSplit = 4;\n\t\tpublic static final int ActionMode_closeItemLayout = 5;\n\t\tpublic static final int ActionMode_height = 0;\n\t\tpublic static final int ActionMode_subtitleTextStyle = 2;\n\t\tpublic static final int ActionMode_titleTextStyle = 1;\n\t\tpublic static final int[] ActivityChooserView = { 0x7f01001d, 0x7f01001e };\n\t\tpublic static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 1;\n\t\tpublic static final int ActivityChooserView_initialActivityCount = 0;\n\t\tpublic static final int[] AlertDialog = { 0x010100f2, 0x7f01001f, 0x7f010020, 0x7f010021, 0x7f010022, 0x7f010023 };\n\t\tpublic static final int AlertDialog_android_layout = 0;\n\t\tpublic static final int AlertDialog_buttonPanelSideLayout = 1;\n\t\tpublic static final int AlertDialog_listItemLayout = 5;\n\t\tpublic static final int AlertDialog_listLayout = 2;\n\t\tpublic static final int AlertDialog_multiChoiceItemLayout = 3;\n\t\tpublic static final int AlertDialog_singleChoiceItemLayout = 4;\n\t\tpublic static final int[] AppCompatTextView = { 0x01010034, 0x7f010024 };\n\t\tpublic static final int AppCompatTextView_android_textAppearance = 0;\n\t\tpublic static final int AppCompatTextView_textAllCaps = 1;\n\t\tpublic static final int[] CompoundButton = { 0x01010107, 0x7f010025, 0x7f010026 };\n\t\tpublic static final int CompoundButton_android_button = 0;\n\t\tpublic static final int CompoundButton_buttonTint = 1;\n\t\tpublic static final int CompoundButton_buttonTintMode = 2;\n\t\tpublic static final int[] DrawerArrowToggle = { 0x7f010027, 0x7f010028, 0x7f010029, 0x7f01002a, 0x7f01002b, 0x7f01002c, 0x7f01002d, 0x7f01002e };\n\t\tpublic static final int DrawerArrowToggle_arrowHeadLength = 4;\n\t\tpublic static final int DrawerArrowToggle_arrowShaftLength = 5;\n\t\tpublic static final int DrawerArrowToggle_barLength = 6;\n\t\tpublic static final int DrawerArrowToggle_color = 0;\n\t\tpublic static final int DrawerArrowToggle_drawableSize = 2;\n\t\tpublic static final int DrawerArrowToggle_gapBetweenBars = 3;\n\t\tpublic static final int DrawerArrowToggle_spinBars = 1;\n\t\tpublic static final int DrawerArrowToggle_thickness = 7;\n\t\tpublic static final int[] LinearLayoutCompat = { 0x010100af, 0x010100c4, 0x01010126, 0x01010127, 0x01010128, 0x7f01000b, 0x7f010047, 0x7f010048, 0x7f010049 };\n\t\tpublic static final int[] LinearLayoutCompat_Layout = { 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 };\n\t\tpublic static final int LinearLayoutCompat_Layout_android_layout_gravity = 0;\n\t\tpublic static final int LinearLayoutCompat_Layout_android_layout_height = 2;\n\t\tpublic static final int LinearLayoutCompat_Layout_android_layout_weight = 3;\n\t\tpublic static final int LinearLayoutCompat_Layout_android_layout_width = 1;\n\t\tpublic static final int LinearLayoutCompat_android_baselineAligned = 2;\n\t\tpublic static final int LinearLayoutCompat_android_baselineAlignedChildIndex = 3;\n\t\tpublic static final int LinearLayoutCompat_android_gravity = 0;\n\t\tpublic static final int LinearLayoutCompat_android_orientation = 1;\n\t\tpublic static final int LinearLayoutCompat_android_weightSum = 4;\n\t\tpublic static final int LinearLayoutCompat_divider = 5;\n\t\tpublic static final int LinearLayoutCompat_dividerPadding = 8;\n\t\tpublic static final int LinearLayoutCompat_measureWithLargestChild = 6;\n\t\tpublic static final int LinearLayoutCompat_showDividers = 7;\n\t\tpublic static final int[] ListPopupWindow = { 0x010102ac, 0x010102ad };\n\t\tpublic static final int ListPopupWindow_android_dropDownHorizontalOffset = 0;\n\t\tpublic static final int ListPopupWindow_android_dropDownVerticalOffset = 1;\n\t\tpublic static final int[] MenuGroup = { 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, 0x010101df, 0x010101e0 };\n\t\tpublic static final int MenuGroup_android_checkableBehavior = 5;\n\t\tpublic static final int MenuGroup_android_enabled = 0;\n\t\tpublic static final int MenuGroup_android_id = 1;\n\t\tpublic static final int MenuGroup_android_menuCategory = 3;\n\t\tpublic static final int MenuGroup_android_orderInCategory = 4;\n\t\tpublic static final int MenuGroup_android_visible = 2;\n\t\tpublic static final int[] MenuItem = { 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f01004a, 0x7f01004b, 0x7f01004c, 0x7f01004d };\n\t\tpublic static final int MenuItem_actionLayout = 14;\n\t\tpublic static final int MenuItem_actionProviderClass = 16;\n\t\tpublic static final int MenuItem_actionViewClass = 15;\n\t\tpublic static final int MenuItem_android_alphabeticShortcut = 9;\n\t\tpublic static final int MenuItem_android_checkable = 11;\n\t\tpublic static final int MenuItem_android_checked = 3;\n\t\tpublic static final int MenuItem_android_enabled = 1;\n\t\tpublic static final int MenuItem_android_icon = 0;\n\t\tpublic static final int MenuItem_android_id = 2;\n\t\tpublic static final int MenuItem_android_menuCategory = 5;\n\t\tpublic static final int MenuItem_android_numericShortcut = 10;\n\t\tpublic static final int MenuItem_android_onClick = 12;\n\t\tpublic static final int MenuItem_android_orderInCategory = 6;\n\t\tpublic static final int MenuItem_android_title = 7;\n\t\tpublic static final int MenuItem_android_titleCondensed = 8;\n\t\tpublic static final int MenuItem_android_visible = 4;\n\t\tpublic static final int MenuItem_showAsAction = 13;\n\t\tpublic static final int[] MenuView = { 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x7f01004e };\n\t\tpublic static final int MenuView_android_headerBackground = 4;\n\t\tpublic static final int MenuView_android_horizontalDivider = 2;\n\t\tpublic static final int MenuView_android_itemBackground = 5;\n\t\tpublic static final int MenuView_android_itemIconDisabledAlpha = 6;\n\t\tpublic static final int MenuView_android_itemTextAppearance = 1;\n\t\tpublic static final int MenuView_android_verticalDivider = 3;\n\t\tpublic static final int MenuView_android_windowAnimationStyle = 0;\n\t\tpublic static final int MenuView_preserveIconSpacing = 7;\n\t\tpublic static final int[] PopupWindow = { 0x01010176, 0x7f01004f };\n\t\tpublic static final int[] PopupWindowBackgroundState = { 0x7f010050 };\n\t\tpublic static final int PopupWindowBackgroundState_state_above_anchor = 0;\n\t\tpublic static final int PopupWindow_android_popupBackground = 0;\n\t\tpublic static final int PopupWindow_overlapAnchor = 1;\n\t\tpublic static final int[] SearchView = { 0x010100da, 0x0101011f, 0x01010220, 0x01010264, 0x7f010055, 0x7f010056, 0x7f010057, 0x7f010058, 0x7f010059, 0x7f01005a, 0x7f01005b, 0x7f01005c, 0x7f01005d, 0x7f01005e, 0x7f01005f, 0x7f010060, 0x7f010061 };\n\t\tpublic static final int SearchView_android_focusable = 0;\n\t\tpublic static final int SearchView_android_imeOptions = 3;\n\t\tpublic static final int SearchView_android_inputType = 2;\n\t\tpublic static final int SearchView_android_maxWidth = 1;\n\t\tpublic static final int SearchView_closeIcon = 8;\n\t\tpublic static final int SearchView_commitIcon = 13;\n\t\tpublic static final int SearchView_defaultQueryHint = 7;\n\t\tpublic static final int SearchView_goIcon = 9;\n\t\tpublic static final int SearchView_iconifiedByDefault = 5;\n\t\tpublic static final int SearchView_layout = 4;\n\t\tpublic static final int SearchView_queryBackground = 15;\n\t\tpublic static final int SearchView_queryHint = 6;\n\t\tpublic static final int SearchView_searchHintIcon = 11;\n\t\tpublic static final int SearchView_searchIcon = 10;\n\t\tpublic static final int SearchView_submitBackground = 16;\n\t\tpublic static final int SearchView_suggestionRowLayout = 14;\n\t\tpublic static final int SearchView_voiceIcon = 12;\n\t\tpublic static final int[] Spinner = { 0x01010176, 0x0101017b, 0x01010262, 0x7f01001b };\n\t\tpublic static final int Spinner_android_dropDownWidth = 2;\n\t\tpublic static final int Spinner_android_popupBackground = 0;\n\t\tpublic static final int Spinner_android_prompt = 1;\n\t\tpublic static final int Spinner_popupTheme = 3;\n\t\tpublic static final int[] SwitchCompat = { 0x01010124, 0x01010125, 0x01010142, 0x7f010062, 0x7f010063, 0x7f010064, 0x7f010065, 0x7f010066, 0x7f010067, 0x7f010068 };\n\t\tpublic static final int SwitchCompat_android_textOff = 1;\n\t\tpublic static final int SwitchCompat_android_textOn = 0;\n\t\tpublic static final int SwitchCompat_android_thumb = 2;\n\t\tpublic static final int SwitchCompat_showText = 9;\n\t\tpublic static final int SwitchCompat_splitTrack = 8;\n\t\tpublic static final int SwitchCompat_switchMinWidth = 6;\n\t\tpublic static final int SwitchCompat_switchPadding = 7;\n\t\tpublic static final int SwitchCompat_switchTextAppearance = 5;\n\t\tpublic static final int SwitchCompat_thumbTextPadding = 4;\n\t\tpublic static final int SwitchCompat_track = 3;\n\t\tpublic static final int[] TextAppearance = { 0x01010095, 0x01010096, 0x01010097, 0x01010098, 0x7f010024 };\n\t\tpublic static final int TextAppearance_android_textColor = 3;\n\t\tpublic static final int TextAppearance_android_textSize = 0;\n\t\tpublic static final int TextAppearance_android_textStyle = 2;\n\t\tpublic static final int TextAppearance_android_typeface = 1;\n\t\tpublic static final int TextAppearance_textAllCaps = 4;\n\t\tpublic static final int[] Theme = { 0x01010057, 0x010100ae, 0x7f010069, 0x7f01006a, 0x7f01006b, 0x7f01006c, 0x7f01006d, 0x7f01006e, 0x7f01006f, 0x7f010070, 0x7f010071, 0x7f010072, 0x7f010073, 0x7f010074, 0x7f010075, 0x7f010076, 0x7f010077, 0x7f010078, 0x7f010079, 0x7f01007a, 0x7f01007b, 0x7f01007c, 0x7f01007d, 0x7f01007e, 0x7f01007f, 0x7f010080, 0x7f010081, 0x7f010082, 0x7f010083, 0x7f010084, 0x7f010085, 0x7f010086, 0x7f010087, 0x7f010088, 0x7f010089, 0x7f01008a, 0x7f01008b, 0x7f01008c, 0x7f01008d, 0x7f01008e, 0x7f01008f, 0x7f010090, 0x7f010091, 0x7f010092, 0x7f010093, 0x7f010094, 0x7f010095, 0x7f010096, 0x7f010097, 0x7f010098, 0x7f010099, 0x7f01009a, 0x7f01009b, 0x7f01009c, 0x7f01009d, 0x7f01009e, 0x7f01009f, 0x7f0100a0, 0x7f0100a1, 0x7f0100a2, 0x7f0100a3, 0x7f0100a4, 0x7f0100a5, 0x7f0100a6, 0x7f0100a7, 0x7f0100a8, 0x7f0100a9, 0x7f0100aa, 0x7f0100ab, 0x7f0100ac, 0x7f0100ad, 0x7f0100ae, 0x7f0100af, 0x7f0100b0, 0x7f0100b1, 0x7f0100b2, 0x7f0100b3, 0x7f0100b4, 0x7f0100b5, 0x7f0100b6, 0x7f0100b7, 0x7f0100b8, 0x7f0100b9, 0x7f0100ba, 0x7f0100bb, 0x7f0100bc, 0x7f0100bd, 0x7f0100be, 0x7f0100bf, 0x7f0100c0, 0x7f0100c1, 0x7f0100c2, 0x7f0100c3, 0x7f0100c4, 0x7f0100c5, 0x7f0100c6, 0x7f0100c7, 0x7f0100c8, 0x7f0100c9, 0x7f0100ca, 0x7f0100cb, 0x7f0100cc, 0x7f0100cd, 0x7f0100ce, 0x7f0100cf, 0x7f0100d0, 0x7f0100d1, 0x7f0100d2 };\n\t\tpublic static final int Theme_actionBarDivider = 23;\n\t\tpublic static final int Theme_actionBarItemBackground = 24;\n\t\tpublic static final int Theme_actionBarPopupTheme = 17;\n\t\tpublic static final int Theme_actionBarSize = 22;\n\t\tpublic static final int Theme_actionBarSplitStyle = 19;\n\t\tpublic static final int Theme_actionBarStyle = 18;\n\t\tpublic static final int Theme_actionBarTabBarStyle = 13;\n\t\tpublic static final int Theme_actionBarTabStyle = 12;\n\t\tpublic static final int Theme_actionBarTabTextStyle = 14;\n\t\tpublic static final int Theme_actionBarTheme = 20;\n\t\tpublic static final int Theme_actionBarWidgetTheme = 21;\n\t\tpublic static final int Theme_actionButtonStyle = 49;\n\t\tpublic static final int Theme_actionDropDownStyle = 45;\n\t\tpublic static final int Theme_actionMenuTextAppearance = 25;\n\t\tpublic static final int Theme_actionMenuTextColor = 26;\n\t\tpublic static final int Theme_actionModeBackground = 29;\n\t\tpublic static final int Theme_actionModeCloseButtonStyle = 28;\n\t\tpublic static final int Theme_actionModeCloseDrawable = 31;\n\t\tpublic static final int Theme_actionModeCopyDrawable = 33;\n\t\tpublic static final int Theme_actionModeCutDrawable = 32;\n\t\tpublic static final int Theme_actionModeFindDrawable = 37;\n\t\tpublic static final int Theme_actionModePasteDrawable = 34;\n\t\tpublic static final int Theme_actionModePopupWindowStyle = 39;\n\t\tpublic static final int Theme_actionModeSelectAllDrawable = 35;\n\t\tpublic static final int Theme_actionModeShareDrawable = 36;\n\t\tpublic static final int Theme_actionModeSplitBackground = 30;\n\t\tpublic static final int Theme_actionModeStyle = 27;\n\t\tpublic static final int Theme_actionModeWebSearchDrawable = 38;\n\t\tpublic static final int Theme_actionOverflowButtonStyle = 15;\n\t\tpublic static final int Theme_actionOverflowMenuStyle = 16;\n\t\tpublic static final int Theme_activityChooserViewStyle = 57;\n\t\tpublic static final int Theme_alertDialogButtonGroupStyle = 91;\n\t\tpublic static final int Theme_alertDialogCenterButtons = 92;\n\t\tpublic static final int Theme_alertDialogStyle = 90;\n\t\tpublic static final int Theme_alertDialogTheme = 93;\n\t\tpublic static final int Theme_android_windowAnimationStyle = 1;\n\t\tpublic static final int Theme_android_windowIsFloating = 0;\n\t\tpublic static final int Theme_autoCompleteTextViewStyle = 98;\n\t\tpublic static final int Theme_borderlessButtonStyle = 54;\n\t\tpublic static final int Theme_buttonBarButtonStyle = 51;\n\t\tpublic static final int Theme_buttonBarNegativeButtonStyle = 96;\n\t\tpublic static final int Theme_buttonBarNeutralButtonStyle = 97;\n\t\tpublic static final int Theme_buttonBarPositiveButtonStyle = 95;\n\t\tpublic static final int Theme_buttonBarStyle = 50;\n\t\tpublic static final int Theme_buttonStyle = 99;\n\t\tpublic static final int Theme_buttonStyleSmall = 100;\n\t\tpublic static final int Theme_checkboxStyle = 101;\n\t\tpublic static final int Theme_checkedTextViewStyle = 102;\n\t\tpublic static final int Theme_colorAccent = 83;\n\t\tpublic static final int Theme_colorButtonNormal = 87;\n\t\tpublic static final int Theme_colorControlActivated = 85;\n\t\tpublic static final int Theme_colorControlHighlight = 86;\n\t\tpublic static final int Theme_colorControlNormal = 84;\n\t\tpublic static final int Theme_colorPrimary = 81;\n\t\tpublic static final int Theme_colorPrimaryDark = 82;\n\t\tpublic static final int Theme_colorSwitchThumbNormal = 88;\n\t\tpublic static final int Theme_controlBackground = 89;\n\t\tpublic static final int Theme_dialogPreferredPadding = 43;\n\t\tpublic static final int Theme_dialogTheme = 42;\n\t\tpublic static final int Theme_dividerHorizontal = 56;\n\t\tpublic static final int Theme_dividerVertical = 55;\n\t\tpublic static final int Theme_dropDownListViewStyle = 73;\n\t\tpublic static final int Theme_dropdownListPreferredItemHeight = 46;\n\t\tpublic static final int Theme_editTextBackground = 63;\n\t\tpublic static final int Theme_editTextColor = 62;\n\t\tpublic static final int Theme_editTextStyle = 103;\n\t\tpublic static final int Theme_homeAsUpIndicator = 48;\n\t\tpublic static final int Theme_listChoiceBackgroundIndicator = 80;\n\t\tpublic static final int Theme_listDividerAlertDialog = 44;\n\t\tpublic static final int Theme_listPopupWindowStyle = 74;\n\t\tpublic static final int Theme_listPreferredItemHeight = 68;\n\t\tpublic static final int Theme_listPreferredItemHeightLarge = 70;\n\t\tpublic static final int Theme_listPreferredItemHeightSmall = 69;\n\t\tpublic static final int Theme_listPreferredItemPaddingLeft = 71;\n\t\tpublic static final int Theme_listPreferredItemPaddingRight = 72;\n\t\tpublic static final int Theme_panelBackground = 77;\n\t\tpublic static final int Theme_panelMenuListTheme = 79;\n\t\tpublic static final int Theme_panelMenuListWidth = 78;\n\t\tpublic static final int Theme_popupMenuStyle = 60;\n\t\tpublic static final int Theme_popupWindowStyle = 61;\n\t\tpublic static final int Theme_radioButtonStyle = 104;\n\t\tpublic static final int Theme_ratingBarStyle = 105;\n\t\tpublic static final int Theme_searchViewStyle = 67;\n\t\tpublic static final int Theme_selectableItemBackground = 52;\n\t\tpublic static final int Theme_selectableItemBackgroundBorderless = 53;\n\t\tpublic static final int Theme_spinnerDropDownItemStyle = 47;\n\t\tpublic static final int Theme_spinnerStyle = 106;\n\t\tpublic static final int Theme_switchStyle = 107;\n\t\tpublic static final int Theme_textAppearanceLargePopupMenu = 40;\n\t\tpublic static final int Theme_textAppearanceListItem = 75;\n\t\tpublic static final int Theme_textAppearanceListItemSmall = 76;\n\t\tpublic static final int Theme_textAppearanceSearchResultSubtitle = 65;\n\t\tpublic static final int Theme_textAppearanceSearchResultTitle = 64;\n\t\tpublic static final int Theme_textAppearanceSmallPopupMenu = 41;\n\t\tpublic static final int Theme_textColorAlertDialogListItem = 94;\n\t\tpublic static final int Theme_textColorSearchUrl = 66;\n\t\tpublic static final int Theme_toolbarNavigationButtonStyle = 59;\n\t\tpublic static final int Theme_toolbarStyle = 58;\n\t\tpublic static final int Theme_windowActionBar = 2;\n\t\tpublic static final int Theme_windowActionBarOverlay = 4;\n\t\tpublic static final int Theme_windowActionModeOverlay = 5;\n\t\tpublic static final int Theme_windowFixedHeightMajor = 9;\n\t\tpublic static final int Theme_windowFixedHeightMinor = 7;\n\t\tpublic static final int Theme_windowFixedWidthMajor = 6;\n\t\tpublic static final int Theme_windowFixedWidthMinor = 8;\n\t\tpublic static final int Theme_windowMinWidthMajor = 10;\n\t\tpublic static final int Theme_windowMinWidthMinor = 11;\n\t\tpublic static final int Theme_windowNoTitle = 3;\n\t\tpublic static final int[] Toolbar = { 0x010100af, 0x01010140, 0x7f010003, 0x7f010006, 0x7f01000a, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001b, 0x7f0100d3, 0x7f0100d4, 0x7f0100d5, 0x7f0100d6, 0x7f0100d7, 0x7f0100d8, 0x7f0100d9, 0x7f0100da, 0x7f0100db, 0x7f0100dc, 0x7f0100dd, 0x7f0100de, 0x7f0100df, 0x7f0100e0, 0x7f0100e1 };\n\t\tpublic static final int Toolbar_android_gravity = 0;\n\t\tpublic static final int Toolbar_android_minHeight = 1;\n\t\tpublic static final int Toolbar_collapseContentDescription = 19;\n\t\tpublic static final int Toolbar_collapseIcon = 18;\n\t\tpublic static final int Toolbar_contentInsetEnd = 6;\n\t\tpublic static final int Toolbar_contentInsetLeft = 7;\n\t\tpublic static final int Toolbar_contentInsetRight = 8;\n\t\tpublic static final int Toolbar_contentInsetStart = 5;\n\t\tpublic static final int Toolbar_logo = 4;\n\t\tpublic static final int Toolbar_logoDescription = 22;\n\t\tpublic static final int Toolbar_maxButtonHeight = 17;\n\t\tpublic static final int Toolbar_navigationContentDescription = 21;\n\t\tpublic static final int Toolbar_navigationIcon = 20;\n\t\tpublic static final int Toolbar_popupTheme = 9;\n\t\tpublic static final int Toolbar_subtitle = 3;\n\t\tpublic static final int Toolbar_subtitleTextAppearance = 11;\n\t\tpublic static final int Toolbar_subtitleTextColor = 24;\n\t\tpublic static final int Toolbar_title = 2;\n\t\tpublic static final int Toolbar_titleMarginBottom = 16;\n\t\tpublic static final int Toolbar_titleMarginEnd = 14;\n\t\tpublic static final int Toolbar_titleMarginStart = 13;\n\t\tpublic static final int Toolbar_titleMarginTop = 15;\n\t\tpublic static final int Toolbar_titleMargins = 12;\n\t\tpublic static final int Toolbar_titleTextAppearance = 10;\n\t\tpublic static final int Toolbar_titleTextColor = 23;\n\t\tpublic static final int[] View = { 0x01010000, 0x010100da, 0x7f0100e2, 0x7f0100e3, 0x7f0100e4 };\n\t\tpublic static final int[] ViewBackgroundHelper = { 0x010100d4, 0x7f0100e5, 0x7f0100e6 };\n\t\tpublic static final int ViewBackgroundHelper_android_background = 0;\n\t\tpublic static final int ViewBackgroundHelper_backgroundTint = 1;\n\t\tpublic static final int ViewBackgroundHelper_backgroundTintMode = 2;\n\t\tpublic static final int[] ViewStubCompat = { 0x010100d0, 0x010100f2, 0x010100f3 };\n\t\tpublic static final int ViewStubCompat_android_id = 0;\n\t\tpublic static final int ViewStubCompat_android_inflatedId = 2;\n\t\tpublic static final int ViewStubCompat_android_layout = 1;\n\t\tpublic static final int View_android_focusable = 1;\n\t\tpublic static final int View_android_theme = 0;\n\t\tpublic static final int View_paddingEnd = 3;\n\t\tpublic static final int View_paddingStart = 2;\n\t\tpublic static final int View_theme = 4;\n\t}\n}\n"
  },
  {
    "path": "android/app/build/generated/source/r/debug/android/support/v7/recyclerview/R.java",
    "content": "/* AUTO-GENERATED FILE.  DO NOT MODIFY.\n *\n * This class was automatically generated by the\n * aapt tool from the resource data it found.  It\n * should not be modified by hand.\n */\npackage android.support.v7.recyclerview;\n\npublic final class R {\n\tpublic static final class attr {\n\t\tpublic static final int layoutManager = 0x7f010051;\n\t\tpublic static final int reverseLayout = 0x7f010053;\n\t\tpublic static final int spanCount = 0x7f010052;\n\t\tpublic static final int stackFromEnd = 0x7f010054;\n\t}\n\tpublic static final class dimen {\n\t\tpublic static final int item_touch_helper_max_drag_scroll_per_frame = 0x7f080045;\n\t}\n\tpublic static final class id {\n\t\tpublic static final int item_touch_helper_previous_elevation = 0x7f0d0005;\n\t}\n\tpublic static final class styleable {\n\t\tpublic static final int[] RecyclerView = { 0x010100c4, 0x7f010051, 0x7f010052, 0x7f010053, 0x7f010054 };\n\t\tpublic static final int RecyclerView_android_orientation = 0;\n\t\tpublic static final int RecyclerView_layoutManager = 1;\n\t\tpublic static final int RecyclerView_reverseLayout = 3;\n\t\tpublic static final int RecyclerView_spanCount = 2;\n\t\tpublic static final int RecyclerView_stackFromEnd = 4;\n\t}\n}\n"
  },
  {
    "path": "android/app/build/generated/source/r/debug/com/facebook/drawee/R.java",
    "content": "/* AUTO-GENERATED FILE.  DO NOT MODIFY.\n *\n * This class was automatically generated by the\n * aapt tool from the resource data it found.  It\n * should not be modified by hand.\n */\npackage com.facebook.drawee;\n\npublic final class R {\n\tpublic static final class attr {\n\t\tpublic static final int actualImageScaleType = 0x7f01003a;\n\t\tpublic static final int backgroundImage = 0x7f01003b;\n\t\tpublic static final int fadeDuration = 0x7f01002f;\n\t\tpublic static final int failureImage = 0x7f010035;\n\t\tpublic static final int failureImageScaleType = 0x7f010036;\n\t\tpublic static final int overlayImage = 0x7f01003c;\n\t\tpublic static final int placeholderImage = 0x7f010031;\n\t\tpublic static final int placeholderImageScaleType = 0x7f010032;\n\t\tpublic static final int pressedStateOverlayImage = 0x7f01003d;\n\t\tpublic static final int progressBarAutoRotateInterval = 0x7f010039;\n\t\tpublic static final int progressBarImage = 0x7f010037;\n\t\tpublic static final int progressBarImageScaleType = 0x7f010038;\n\t\tpublic static final int retryImage = 0x7f010033;\n\t\tpublic static final int retryImageScaleType = 0x7f010034;\n\t\tpublic static final int roundAsCircle = 0x7f01003e;\n\t\tpublic static final int roundBottomLeft = 0x7f010043;\n\t\tpublic static final int roundBottomRight = 0x7f010042;\n\t\tpublic static final int roundTopLeft = 0x7f010040;\n\t\tpublic static final int roundTopRight = 0x7f010041;\n\t\tpublic static final int roundWithOverlayColor = 0x7f010044;\n\t\tpublic static final int roundedCornerRadius = 0x7f01003f;\n\t\tpublic static final int roundingBorderColor = 0x7f010046;\n\t\tpublic static final int roundingBorderWidth = 0x7f010045;\n\t\tpublic static final int viewAspectRatio = 0x7f010030;\n\t}\n\tpublic static final class id {\n\t\tpublic static final int center = 0x7f0d0019;\n\t\tpublic static final int centerCrop = 0x7f0d001a;\n\t\tpublic static final int centerInside = 0x7f0d001b;\n\t\tpublic static final int fitCenter = 0x7f0d001c;\n\t\tpublic static final int fitEnd = 0x7f0d001d;\n\t\tpublic static final int fitStart = 0x7f0d001e;\n\t\tpublic static final int fitXY = 0x7f0d001f;\n\t\tpublic static final int focusCrop = 0x7f0d0020;\n\t\tpublic static final int none = 0x7f0d000f;\n\t}\n\tpublic static final class styleable {\n\t\tpublic static final int[] GenericDraweeView = { 0x7f01002f, 0x7f010030, 0x7f010031, 0x7f010032, 0x7f010033, 0x7f010034, 0x7f010035, 0x7f010036, 0x7f010037, 0x7f010038, 0x7f010039, 0x7f01003a, 0x7f01003b, 0x7f01003c, 0x7f01003d, 0x7f01003e, 0x7f01003f, 0x7f010040, 0x7f010041, 0x7f010042, 0x7f010043, 0x7f010044, 0x7f010045, 0x7f010046 };\n\t\tpublic static final int GenericDraweeView_actualImageScaleType = 11;\n\t\tpublic static final int GenericDraweeView_backgroundImage = 12;\n\t\tpublic static final int GenericDraweeView_fadeDuration = 0;\n\t\tpublic static final int GenericDraweeView_failureImage = 6;\n\t\tpublic static final int GenericDraweeView_failureImageScaleType = 7;\n\t\tpublic static final int GenericDraweeView_overlayImage = 13;\n\t\tpublic static final int GenericDraweeView_placeholderImage = 2;\n\t\tpublic static final int GenericDraweeView_placeholderImageScaleType = 3;\n\t\tpublic static final int GenericDraweeView_pressedStateOverlayImage = 14;\n\t\tpublic static final int GenericDraweeView_progressBarAutoRotateInterval = 10;\n\t\tpublic static final int GenericDraweeView_progressBarImage = 8;\n\t\tpublic static final int GenericDraweeView_progressBarImageScaleType = 9;\n\t\tpublic static final int GenericDraweeView_retryImage = 4;\n\t\tpublic static final int GenericDraweeView_retryImageScaleType = 5;\n\t\tpublic static final int GenericDraweeView_roundAsCircle = 15;\n\t\tpublic static final int GenericDraweeView_roundBottomLeft = 20;\n\t\tpublic static final int GenericDraweeView_roundBottomRight = 19;\n\t\tpublic static final int GenericDraweeView_roundTopLeft = 17;\n\t\tpublic static final int GenericDraweeView_roundTopRight = 18;\n\t\tpublic static final int GenericDraweeView_roundWithOverlayColor = 21;\n\t\tpublic static final int GenericDraweeView_roundedCornerRadius = 16;\n\t\tpublic static final int GenericDraweeView_roundingBorderColor = 23;\n\t\tpublic static final int GenericDraweeView_roundingBorderWidth = 22;\n\t\tpublic static final int GenericDraweeView_viewAspectRatio = 1;\n\t}\n}\n"
  },
  {
    "path": "android/app/build/generated/source/r/debug/com/facebook/drawee/backends/pipeline/R.java",
    "content": "/* AUTO-GENERATED FILE.  DO NOT MODIFY.\n *\n * This class was automatically generated by the\n * aapt tool from the resource data it found.  It\n * should not be modified by hand.\n */\npackage com.facebook.drawee.backends.pipeline;\n\npublic final class R {\n\tpublic static final class attr {\n\t\tpublic static final int actualImageScaleType = 0x7f01003a;\n\t\tpublic static final int backgroundImage = 0x7f01003b;\n\t\tpublic static final int fadeDuration = 0x7f01002f;\n\t\tpublic static final int failureImage = 0x7f010035;\n\t\tpublic static final int failureImageScaleType = 0x7f010036;\n\t\tpublic static final int overlayImage = 0x7f01003c;\n\t\tpublic static final int placeholderImage = 0x7f010031;\n\t\tpublic static final int placeholderImageScaleType = 0x7f010032;\n\t\tpublic static final int pressedStateOverlayImage = 0x7f01003d;\n\t\tpublic static final int progressBarAutoRotateInterval = 0x7f010039;\n\t\tpublic static final int progressBarImage = 0x7f010037;\n\t\tpublic static final int progressBarImageScaleType = 0x7f010038;\n\t\tpublic static final int retryImage = 0x7f010033;\n\t\tpublic static final int retryImageScaleType = 0x7f010034;\n\t\tpublic static final int roundAsCircle = 0x7f01003e;\n\t\tpublic static final int roundBottomLeft = 0x7f010043;\n\t\tpublic static final int roundBottomRight = 0x7f010042;\n\t\tpublic static final int roundTopLeft = 0x7f010040;\n\t\tpublic static final int roundTopRight = 0x7f010041;\n\t\tpublic static final int roundWithOverlayColor = 0x7f010044;\n\t\tpublic static final int roundedCornerRadius = 0x7f01003f;\n\t\tpublic static final int roundingBorderColor = 0x7f010046;\n\t\tpublic static final int roundingBorderWidth = 0x7f010045;\n\t\tpublic static final int viewAspectRatio = 0x7f010030;\n\t}\n\tpublic static final class id {\n\t\tpublic static final int center = 0x7f0d0019;\n\t\tpublic static final int centerCrop = 0x7f0d001a;\n\t\tpublic static final int centerInside = 0x7f0d001b;\n\t\tpublic static final int fitCenter = 0x7f0d001c;\n\t\tpublic static final int fitEnd = 0x7f0d001d;\n\t\tpublic static final int fitStart = 0x7f0d001e;\n\t\tpublic static final int fitXY = 0x7f0d001f;\n\t\tpublic static final int focusCrop = 0x7f0d0020;\n\t\tpublic static final int none = 0x7f0d000f;\n\t}\n\tpublic static final class styleable {\n\t\tpublic static final int[] GenericDraweeView = { 0x7f01002f, 0x7f010030, 0x7f010031, 0x7f010032, 0x7f010033, 0x7f010034, 0x7f010035, 0x7f010036, 0x7f010037, 0x7f010038, 0x7f010039, 0x7f01003a, 0x7f01003b, 0x7f01003c, 0x7f01003d, 0x7f01003e, 0x7f01003f, 0x7f010040, 0x7f010041, 0x7f010042, 0x7f010043, 0x7f010044, 0x7f010045, 0x7f010046 };\n\t\tpublic static final int GenericDraweeView_actualImageScaleType = 11;\n\t\tpublic static final int GenericDraweeView_backgroundImage = 12;\n\t\tpublic static final int GenericDraweeView_fadeDuration = 0;\n\t\tpublic static final int GenericDraweeView_failureImage = 6;\n\t\tpublic static final int GenericDraweeView_failureImageScaleType = 7;\n\t\tpublic static final int GenericDraweeView_overlayImage = 13;\n\t\tpublic static final int GenericDraweeView_placeholderImage = 2;\n\t\tpublic static final int GenericDraweeView_placeholderImageScaleType = 3;\n\t\tpublic static final int GenericDraweeView_pressedStateOverlayImage = 14;\n\t\tpublic static final int GenericDraweeView_progressBarAutoRotateInterval = 10;\n\t\tpublic static final int GenericDraweeView_progressBarImage = 8;\n\t\tpublic static final int GenericDraweeView_progressBarImageScaleType = 9;\n\t\tpublic static final int GenericDraweeView_retryImage = 4;\n\t\tpublic static final int GenericDraweeView_retryImageScaleType = 5;\n\t\tpublic static final int GenericDraweeView_roundAsCircle = 15;\n\t\tpublic static final int GenericDraweeView_roundBottomLeft = 20;\n\t\tpublic static final int GenericDraweeView_roundBottomRight = 19;\n\t\tpublic static final int GenericDraweeView_roundTopLeft = 17;\n\t\tpublic static final int GenericDraweeView_roundTopRight = 18;\n\t\tpublic static final int GenericDraweeView_roundWithOverlayColor = 21;\n\t\tpublic static final int GenericDraweeView_roundedCornerRadius = 16;\n\t\tpublic static final int GenericDraweeView_roundingBorderColor = 23;\n\t\tpublic static final int GenericDraweeView_roundingBorderWidth = 22;\n\t\tpublic static final int GenericDraweeView_viewAspectRatio = 1;\n\t}\n}\n"
  },
  {
    "path": "android/app/build/generated/source/r/debug/com/facebook/react/R.java",
    "content": "/* AUTO-GENERATED FILE.  DO NOT MODIFY.\n *\n * This class was automatically generated by the\n * aapt tool from the resource data it found.  It\n * should not be modified by hand.\n */\npackage com.facebook.react;\n\npublic final class R {\n\tpublic static final class anim {\n\t\tpublic static final int abc_fade_in = 0x7f050000;\n\t\tpublic static final int abc_fade_out = 0x7f050001;\n\t\tpublic static final int abc_grow_fade_in_from_bottom = 0x7f050002;\n\t\tpublic static final int abc_popup_enter = 0x7f050003;\n\t\tpublic static final int abc_popup_exit = 0x7f050004;\n\t\tpublic static final int abc_shrink_fade_out_from_bottom = 0x7f050005;\n\t\tpublic static final int abc_slide_in_bottom = 0x7f050006;\n\t\tpublic static final int abc_slide_in_top = 0x7f050007;\n\t\tpublic static final int abc_slide_out_bottom = 0x7f050008;\n\t\tpublic static final int abc_slide_out_top = 0x7f050009;\n\t\tpublic static final int catalyst_push_up_in = 0x7f05000a;\n\t\tpublic static final int catalyst_push_up_out = 0x7f05000b;\n\t\tpublic static final int slide_down = 0x7f05000c;\n\t\tpublic static final int slide_up = 0x7f05000d;\n\t}\n\tpublic static final class attr {\n\t\tpublic static final int actionBarDivider = 0x7f01007e;\n\t\tpublic static final int actionBarItemBackground = 0x7f01007f;\n\t\tpublic static final int actionBarPopupTheme = 0x7f010078;\n\t\tpublic static final int actionBarSize = 0x7f01007d;\n\t\tpublic static final int actionBarSplitStyle = 0x7f01007a;\n\t\tpublic static final int actionBarStyle = 0x7f010079;\n\t\tpublic static final int actionBarTabBarStyle = 0x7f010074;\n\t\tpublic static final int actionBarTabStyle = 0x7f010073;\n\t\tpublic static final int actionBarTabTextStyle = 0x7f010075;\n\t\tpublic static final int actionBarTheme = 0x7f01007b;\n\t\tpublic static final int actionBarWidgetTheme = 0x7f01007c;\n\t\tpublic static final int actionButtonStyle = 0x7f010098;\n\t\tpublic static final int actionDropDownStyle = 0x7f010094;\n\t\tpublic static final int actionLayout = 0x7f01004b;\n\t\tpublic static final int actionMenuTextAppearance = 0x7f010080;\n\t\tpublic static final int actionMenuTextColor = 0x7f010081;\n\t\tpublic static final int actionModeBackground = 0x7f010084;\n\t\tpublic static final int actionModeCloseButtonStyle = 0x7f010083;\n\t\tpublic static final int actionModeCloseDrawable = 0x7f010086;\n\t\tpublic static final int actionModeCopyDrawable = 0x7f010088;\n\t\tpublic static final int actionModeCutDrawable = 0x7f010087;\n\t\tpublic static final int actionModeFindDrawable = 0x7f01008c;\n\t\tpublic static final int actionModePasteDrawable = 0x7f010089;\n\t\tpublic static final int actionModePopupWindowStyle = 0x7f01008e;\n\t\tpublic static final int actionModeSelectAllDrawable = 0x7f01008a;\n\t\tpublic static final int actionModeShareDrawable = 0x7f01008b;\n\t\tpublic static final int actionModeSplitBackground = 0x7f010085;\n\t\tpublic static final int actionModeStyle = 0x7f010082;\n\t\tpublic static final int actionModeWebSearchDrawable = 0x7f01008d;\n\t\tpublic static final int actionOverflowButtonStyle = 0x7f010076;\n\t\tpublic static final int actionOverflowMenuStyle = 0x7f010077;\n\t\tpublic static final int actionProviderClass = 0x7f01004d;\n\t\tpublic static final int actionViewClass = 0x7f01004c;\n\t\tpublic static final int activityChooserViewStyle = 0x7f0100a0;\n\t\tpublic static final int actualImageScaleType = 0x7f01003a;\n\t\tpublic static final int alertDialogButtonGroupStyle = 0x7f0100c2;\n\t\tpublic static final int alertDialogCenterButtons = 0x7f0100c3;\n\t\tpublic static final int alertDialogStyle = 0x7f0100c1;\n\t\tpublic static final int alertDialogTheme = 0x7f0100c4;\n\t\tpublic static final int arrowHeadLength = 0x7f01002b;\n\t\tpublic static final int arrowShaftLength = 0x7f01002c;\n\t\tpublic static final int autoCompleteTextViewStyle = 0x7f0100c9;\n\t\tpublic static final int background = 0x7f01000c;\n\t\tpublic static final int backgroundImage = 0x7f01003b;\n\t\tpublic static final int backgroundSplit = 0x7f01000e;\n\t\tpublic static final int backgroundStacked = 0x7f01000d;\n\t\tpublic static final int backgroundTint = 0x7f0100e5;\n\t\tpublic static final int backgroundTintMode = 0x7f0100e6;\n\t\tpublic static final int barLength = 0x7f01002d;\n\t\tpublic static final int borderlessButtonStyle = 0x7f01009d;\n\t\tpublic static final int buttonBarButtonStyle = 0x7f01009a;\n\t\tpublic static final int buttonBarNegativeButtonStyle = 0x7f0100c7;\n\t\tpublic static final int buttonBarNeutralButtonStyle = 0x7f0100c8;\n\t\tpublic static final int buttonBarPositiveButtonStyle = 0x7f0100c6;\n\t\tpublic static final int buttonBarStyle = 0x7f010099;\n\t\tpublic static final int buttonPanelSideLayout = 0x7f01001f;\n\t\tpublic static final int buttonStyle = 0x7f0100ca;\n\t\tpublic static final int buttonStyleSmall = 0x7f0100cb;\n\t\tpublic static final int buttonTint = 0x7f010025;\n\t\tpublic static final int buttonTintMode = 0x7f010026;\n\t\tpublic static final int checkboxStyle = 0x7f0100cc;\n\t\tpublic static final int checkedTextViewStyle = 0x7f0100cd;\n\t\tpublic static final int closeIcon = 0x7f010059;\n\t\tpublic static final int closeItemLayout = 0x7f01001c;\n\t\tpublic static final int collapseContentDescription = 0x7f0100dc;\n\t\tpublic static final int collapseIcon = 0x7f0100db;\n\t\tpublic static final int color = 0x7f010027;\n\t\tpublic static final int colorAccent = 0x7f0100ba;\n\t\tpublic static final int colorButtonNormal = 0x7f0100be;\n\t\tpublic static final int colorControlActivated = 0x7f0100bc;\n\t\tpublic static final int colorControlHighlight = 0x7f0100bd;\n\t\tpublic static final int colorControlNormal = 0x7f0100bb;\n\t\tpublic static final int colorPrimary = 0x7f0100b8;\n\t\tpublic static final int colorPrimaryDark = 0x7f0100b9;\n\t\tpublic static final int colorSwitchThumbNormal = 0x7f0100bf;\n\t\tpublic static final int commitIcon = 0x7f01005e;\n\t\tpublic static final int contentInsetEnd = 0x7f010017;\n\t\tpublic static final int contentInsetLeft = 0x7f010018;\n\t\tpublic static final int contentInsetRight = 0x7f010019;\n\t\tpublic static final int contentInsetStart = 0x7f010016;\n\t\tpublic static final int controlBackground = 0x7f0100c0;\n\t\tpublic static final int customNavigationLayout = 0x7f01000f;\n\t\tpublic static final int defaultQueryHint = 0x7f010058;\n\t\tpublic static final int dialogPreferredPadding = 0x7f010092;\n\t\tpublic static final int dialogTheme = 0x7f010091;\n\t\tpublic static final int displayOptions = 0x7f010005;\n\t\tpublic static final int divider = 0x7f01000b;\n\t\tpublic static final int dividerHorizontal = 0x7f01009f;\n\t\tpublic static final int dividerPadding = 0x7f010049;\n\t\tpublic static final int dividerVertical = 0x7f01009e;\n\t\tpublic static final int drawableSize = 0x7f010029;\n\t\tpublic static final int drawerArrowStyle = 0x7f010000;\n\t\tpublic static final int dropDownListViewStyle = 0x7f0100b0;\n\t\tpublic static final int dropdownListPreferredItemHeight = 0x7f010095;\n\t\tpublic static final int editTextBackground = 0x7f0100a6;\n\t\tpublic static final int editTextColor = 0x7f0100a5;\n\t\tpublic static final int editTextStyle = 0x7f0100ce;\n\t\tpublic static final int elevation = 0x7f01001a;\n\t\tpublic static final int expandActivityOverflowButtonDrawable = 0x7f01001e;\n\t\tpublic static final int fadeDuration = 0x7f01002f;\n\t\tpublic static final int failureImage = 0x7f010035;\n\t\tpublic static final int failureImageScaleType = 0x7f010036;\n\t\tpublic static final int gapBetweenBars = 0x7f01002a;\n\t\tpublic static final int goIcon = 0x7f01005a;\n\t\tpublic static final int height = 0x7f010001;\n\t\tpublic static final int hideOnContentScroll = 0x7f010015;\n\t\tpublic static final int homeAsUpIndicator = 0x7f010097;\n\t\tpublic static final int homeLayout = 0x7f010010;\n\t\tpublic static final int icon = 0x7f010009;\n\t\tpublic static final int iconifiedByDefault = 0x7f010056;\n\t\tpublic static final int indeterminateProgressStyle = 0x7f010012;\n\t\tpublic static final int initialActivityCount = 0x7f01001d;\n\t\tpublic static final int isLightTheme = 0x7f010002;\n\t\tpublic static final int itemPadding = 0x7f010014;\n\t\tpublic static final int layout = 0x7f010055;\n\t\tpublic static final int layoutManager = 0x7f010051;\n\t\tpublic static final int listChoiceBackgroundIndicator = 0x7f0100b7;\n\t\tpublic static final int listDividerAlertDialog = 0x7f010093;\n\t\tpublic static final int listItemLayout = 0x7f010023;\n\t\tpublic static final int listLayout = 0x7f010020;\n\t\tpublic static final int listPopupWindowStyle = 0x7f0100b1;\n\t\tpublic static final int listPreferredItemHeight = 0x7f0100ab;\n\t\tpublic static final int listPreferredItemHeightLarge = 0x7f0100ad;\n\t\tpublic static final int listPreferredItemHeightSmall = 0x7f0100ac;\n\t\tpublic static final int listPreferredItemPaddingLeft = 0x7f0100ae;\n\t\tpublic static final int listPreferredItemPaddingRight = 0x7f0100af;\n\t\tpublic static final int logo = 0x7f01000a;\n\t\tpublic static final int logoDescription = 0x7f0100df;\n\t\tpublic static final int maxButtonHeight = 0x7f0100da;\n\t\tpublic static final int measureWithLargestChild = 0x7f010047;\n\t\tpublic static final int multiChoiceItemLayout = 0x7f010021;\n\t\tpublic static final int navigationContentDescription = 0x7f0100de;\n\t\tpublic static final int navigationIcon = 0x7f0100dd;\n\t\tpublic static final int navigationMode = 0x7f010004;\n\t\tpublic static final int overlapAnchor = 0x7f01004f;\n\t\tpublic static final int overlayImage = 0x7f01003c;\n\t\tpublic static final int paddingEnd = 0x7f0100e3;\n\t\tpublic static final int paddingStart = 0x7f0100e2;\n\t\tpublic static final int panelBackground = 0x7f0100b4;\n\t\tpublic static final int panelMenuListTheme = 0x7f0100b6;\n\t\tpublic static final int panelMenuListWidth = 0x7f0100b5;\n\t\tpublic static final int placeholderImage = 0x7f010031;\n\t\tpublic static final int placeholderImageScaleType = 0x7f010032;\n\t\tpublic static final int popupMenuStyle = 0x7f0100a3;\n\t\tpublic static final int popupTheme = 0x7f01001b;\n\t\tpublic static final int popupWindowStyle = 0x7f0100a4;\n\t\tpublic static final int preserveIconSpacing = 0x7f01004e;\n\t\tpublic static final int pressedStateOverlayImage = 0x7f01003d;\n\t\tpublic static final int progressBarAutoRotateInterval = 0x7f010039;\n\t\tpublic static final int progressBarImage = 0x7f010037;\n\t\tpublic static final int progressBarImageScaleType = 0x7f010038;\n\t\tpublic static final int progressBarPadding = 0x7f010013;\n\t\tpublic static final int progressBarStyle = 0x7f010011;\n\t\tpublic static final int queryBackground = 0x7f010060;\n\t\tpublic static final int queryHint = 0x7f010057;\n\t\tpublic static final int radioButtonStyle = 0x7f0100cf;\n\t\tpublic static final int ratingBarStyle = 0x7f0100d0;\n\t\tpublic static final int retryImage = 0x7f010033;\n\t\tpublic static final int retryImageScaleType = 0x7f010034;\n\t\tpublic static final int reverseLayout = 0x7f010053;\n\t\tpublic static final int roundAsCircle = 0x7f01003e;\n\t\tpublic static final int roundBottomLeft = 0x7f010043;\n\t\tpublic static final int roundBottomRight = 0x7f010042;\n\t\tpublic static final int roundTopLeft = 0x7f010040;\n\t\tpublic static final int roundTopRight = 0x7f010041;\n\t\tpublic static final int roundWithOverlayColor = 0x7f010044;\n\t\tpublic static final int roundedCornerRadius = 0x7f01003f;\n\t\tpublic static final int roundingBorderColor = 0x7f010046;\n\t\tpublic static final int roundingBorderWidth = 0x7f010045;\n\t\tpublic static final int searchHintIcon = 0x7f01005c;\n\t\tpublic static final int searchIcon = 0x7f01005b;\n\t\tpublic static final int searchViewStyle = 0x7f0100aa;\n\t\tpublic static final int selectableItemBackground = 0x7f01009b;\n\t\tpublic static final int selectableItemBackgroundBorderless = 0x7f01009c;\n\t\tpublic static final int showAsAction = 0x7f01004a;\n\t\tpublic static final int showDividers = 0x7f010048;\n\t\tpublic static final int showText = 0x7f010068;\n\t\tpublic static final int singleChoiceItemLayout = 0x7f010022;\n\t\tpublic static final int spanCount = 0x7f010052;\n\t\tpublic static final int spinBars = 0x7f010028;\n\t\tpublic static final int spinnerDropDownItemStyle = 0x7f010096;\n\t\tpublic static final int spinnerStyle = 0x7f0100d1;\n\t\tpublic static final int splitTrack = 0x7f010067;\n\t\tpublic static final int stackFromEnd = 0x7f010054;\n\t\tpublic static final int state_above_anchor = 0x7f010050;\n\t\tpublic static final int submitBackground = 0x7f010061;\n\t\tpublic static final int subtitle = 0x7f010006;\n\t\tpublic static final int subtitleTextAppearance = 0x7f0100d4;\n\t\tpublic static final int subtitleTextColor = 0x7f0100e1;\n\t\tpublic static final int subtitleTextStyle = 0x7f010008;\n\t\tpublic static final int suggestionRowLayout = 0x7f01005f;\n\t\tpublic static final int switchMinWidth = 0x7f010065;\n\t\tpublic static final int switchPadding = 0x7f010066;\n\t\tpublic static final int switchStyle = 0x7f0100d2;\n\t\tpublic static final int switchTextAppearance = 0x7f010064;\n\t\tpublic static final int textAllCaps = 0x7f010024;\n\t\tpublic static final int textAppearanceLargePopupMenu = 0x7f01008f;\n\t\tpublic static final int textAppearanceListItem = 0x7f0100b2;\n\t\tpublic static final int textAppearanceListItemSmall = 0x7f0100b3;\n\t\tpublic static final int textAppearanceSearchResultSubtitle = 0x7f0100a8;\n\t\tpublic static final int textAppearanceSearchResultTitle = 0x7f0100a7;\n\t\tpublic static final int textAppearanceSmallPopupMenu = 0x7f010090;\n\t\tpublic static final int textColorAlertDialogListItem = 0x7f0100c5;\n\t\tpublic static final int textColorSearchUrl = 0x7f0100a9;\n\t\tpublic static final int theme = 0x7f0100e4;\n\t\tpublic static final int thickness = 0x7f01002e;\n\t\tpublic static final int thumbTextPadding = 0x7f010063;\n\t\tpublic static final int title = 0x7f010003;\n\t\tpublic static final int titleMarginBottom = 0x7f0100d9;\n\t\tpublic static final int titleMarginEnd = 0x7f0100d7;\n\t\tpublic static final int titleMarginStart = 0x7f0100d6;\n\t\tpublic static final int titleMarginTop = 0x7f0100d8;\n\t\tpublic static final int titleMargins = 0x7f0100d5;\n\t\tpublic static final int titleTextAppearance = 0x7f0100d3;\n\t\tpublic static final int titleTextColor = 0x7f0100e0;\n\t\tpublic static final int titleTextStyle = 0x7f010007;\n\t\tpublic static final int toolbarNavigationButtonStyle = 0x7f0100a2;\n\t\tpublic static final int toolbarStyle = 0x7f0100a1;\n\t\tpublic static final int track = 0x7f010062;\n\t\tpublic static final int viewAspectRatio = 0x7f010030;\n\t\tpublic static final int voiceIcon = 0x7f01005d;\n\t\tpublic static final int windowActionBar = 0x7f010069;\n\t\tpublic static final int windowActionBarOverlay = 0x7f01006b;\n\t\tpublic static final int windowActionModeOverlay = 0x7f01006c;\n\t\tpublic static final int windowFixedHeightMajor = 0x7f010070;\n\t\tpublic static final int windowFixedHeightMinor = 0x7f01006e;\n\t\tpublic static final int windowFixedWidthMajor = 0x7f01006d;\n\t\tpublic static final int windowFixedWidthMinor = 0x7f01006f;\n\t\tpublic static final int windowMinWidthMajor = 0x7f010071;\n\t\tpublic static final int windowMinWidthMinor = 0x7f010072;\n\t\tpublic static final int windowNoTitle = 0x7f01006a;\n\t}\n\tpublic static final class bool {\n\t\tpublic static final int abc_action_bar_embed_tabs = 0x7f0a0002;\n\t\tpublic static final int abc_action_bar_embed_tabs_pre_jb = 0x7f0a0000;\n\t\tpublic static final int abc_action_bar_expanded_action_views_exclusive = 0x7f0a0003;\n\t\tpublic static final int abc_config_actionMenuItemAllCaps = 0x7f0a0004;\n\t\tpublic static final int abc_config_allowActionMenuItemTextWithIcon = 0x7f0a0001;\n\t\tpublic static final int abc_config_closeDialogWhenTouchOutside = 0x7f0a0005;\n\t\tpublic static final int abc_config_showMenuShortcutsWhenKeyboardPresent = 0x7f0a0006;\n\t}\n\tpublic static final class color {\n\t\tpublic static final int abc_background_cache_hint_selector_material_dark = 0x7f0c003b;\n\t\tpublic static final int abc_background_cache_hint_selector_material_light = 0x7f0c003c;\n\t\tpublic static final int abc_color_highlight_material = 0x7f0c003d;\n\t\tpublic static final int abc_input_method_navigation_guard = 0x7f0c0000;\n\t\tpublic static final int abc_primary_text_disable_only_material_dark = 0x7f0c003e;\n\t\tpublic static final int abc_primary_text_disable_only_material_light = 0x7f0c003f;\n\t\tpublic static final int abc_primary_text_material_dark = 0x7f0c0040;\n\t\tpublic static final int abc_primary_text_material_light = 0x7f0c0041;\n\t\tpublic static final int abc_search_url_text = 0x7f0c0042;\n\t\tpublic static final int abc_search_url_text_normal = 0x7f0c0001;\n\t\tpublic static final int abc_search_url_text_pressed = 0x7f0c0002;\n\t\tpublic static final int abc_search_url_text_selected = 0x7f0c0003;\n\t\tpublic static final int abc_secondary_text_material_dark = 0x7f0c0043;\n\t\tpublic static final int abc_secondary_text_material_light = 0x7f0c0044;\n\t\tpublic static final int accent_material_dark = 0x7f0c0004;\n\t\tpublic static final int accent_material_light = 0x7f0c0005;\n\t\tpublic static final int background_floating_material_dark = 0x7f0c0006;\n\t\tpublic static final int background_floating_material_light = 0x7f0c0007;\n\t\tpublic static final int background_material_dark = 0x7f0c0008;\n\t\tpublic static final int background_material_light = 0x7f0c0009;\n\t\tpublic static final int bright_foreground_disabled_material_dark = 0x7f0c000a;\n\t\tpublic static final int bright_foreground_disabled_material_light = 0x7f0c000b;\n\t\tpublic static final int bright_foreground_inverse_material_dark = 0x7f0c000c;\n\t\tpublic static final int bright_foreground_inverse_material_light = 0x7f0c000d;\n\t\tpublic static final int bright_foreground_material_dark = 0x7f0c000e;\n\t\tpublic static final int bright_foreground_material_light = 0x7f0c000f;\n\t\tpublic static final int button_material_dark = 0x7f0c0010;\n\t\tpublic static final int button_material_light = 0x7f0c0011;\n\t\tpublic static final int catalyst_redbox_background = 0x7f0c0012;\n\t\tpublic static final int dim_foreground_disabled_material_dark = 0x7f0c0013;\n\t\tpublic static final int dim_foreground_disabled_material_light = 0x7f0c0014;\n\t\tpublic static final int dim_foreground_material_dark = 0x7f0c0015;\n\t\tpublic static final int dim_foreground_material_light = 0x7f0c0016;\n\t\tpublic static final int foreground_material_dark = 0x7f0c0017;\n\t\tpublic static final int foreground_material_light = 0x7f0c0018;\n\t\tpublic static final int highlighted_text_material_dark = 0x7f0c0019;\n\t\tpublic static final int highlighted_text_material_light = 0x7f0c001a;\n\t\tpublic static final int hint_foreground_material_dark = 0x7f0c001b;\n\t\tpublic static final int hint_foreground_material_light = 0x7f0c001c;\n\t\tpublic static final int material_blue_grey_800 = 0x7f0c001d;\n\t\tpublic static final int material_blue_grey_900 = 0x7f0c001e;\n\t\tpublic static final int material_blue_grey_950 = 0x7f0c001f;\n\t\tpublic static final int material_deep_teal_200 = 0x7f0c0020;\n\t\tpublic static final int material_deep_teal_500 = 0x7f0c0021;\n\t\tpublic static final int material_grey_100 = 0x7f0c0022;\n\t\tpublic static final int material_grey_300 = 0x7f0c0023;\n\t\tpublic static final int material_grey_50 = 0x7f0c0024;\n\t\tpublic static final int material_grey_600 = 0x7f0c0025;\n\t\tpublic static final int material_grey_800 = 0x7f0c0026;\n\t\tpublic static final int material_grey_850 = 0x7f0c0027;\n\t\tpublic static final int material_grey_900 = 0x7f0c0028;\n\t\tpublic static final int primary_dark_material_dark = 0x7f0c0029;\n\t\tpublic static final int primary_dark_material_light = 0x7f0c002a;\n\t\tpublic static final int primary_material_dark = 0x7f0c002b;\n\t\tpublic static final int primary_material_light = 0x7f0c002c;\n\t\tpublic static final int primary_text_default_material_dark = 0x7f0c002d;\n\t\tpublic static final int primary_text_default_material_light = 0x7f0c002e;\n\t\tpublic static final int primary_text_disabled_material_dark = 0x7f0c002f;\n\t\tpublic static final int primary_text_disabled_material_light = 0x7f0c0030;\n\t\tpublic static final int ripple_material_dark = 0x7f0c0031;\n\t\tpublic static final int ripple_material_light = 0x7f0c0032;\n\t\tpublic static final int secondary_text_default_material_dark = 0x7f0c0033;\n\t\tpublic static final int secondary_text_default_material_light = 0x7f0c0034;\n\t\tpublic static final int secondary_text_disabled_material_dark = 0x7f0c0035;\n\t\tpublic static final int secondary_text_disabled_material_light = 0x7f0c0036;\n\t\tpublic static final int switch_thumb_disabled_material_dark = 0x7f0c0037;\n\t\tpublic static final int switch_thumb_disabled_material_light = 0x7f0c0038;\n\t\tpublic static final int switch_thumb_material_dark = 0x7f0c0045;\n\t\tpublic static final int switch_thumb_material_light = 0x7f0c0046;\n\t\tpublic static final int switch_thumb_normal_material_dark = 0x7f0c0039;\n\t\tpublic static final int switch_thumb_normal_material_light = 0x7f0c003a;\n\t}\n\tpublic static final class dimen {\n\t\tpublic static final int abc_action_bar_content_inset_material = 0x7f08000b;\n\t\tpublic static final int abc_action_bar_default_height_material = 0x7f080001;\n\t\tpublic static final int abc_action_bar_default_padding_end_material = 0x7f08000c;\n\t\tpublic static final int abc_action_bar_default_padding_start_material = 0x7f08000d;\n\t\tpublic static final int abc_action_bar_icon_vertical_padding_material = 0x7f08000f;\n\t\tpublic static final int abc_action_bar_overflow_padding_end_material = 0x7f080010;\n\t\tpublic static final int abc_action_bar_overflow_padding_start_material = 0x7f080011;\n\t\tpublic static final int abc_action_bar_progress_bar_size = 0x7f080002;\n\t\tpublic static final int abc_action_bar_stacked_max_height = 0x7f080012;\n\t\tpublic static final int abc_action_bar_stacked_tab_max_width = 0x7f080013;\n\t\tpublic static final int abc_action_bar_subtitle_bottom_margin_material = 0x7f080014;\n\t\tpublic static final int abc_action_bar_subtitle_top_margin_material = 0x7f080015;\n\t\tpublic static final int abc_action_button_min_height_material = 0x7f080016;\n\t\tpublic static final int abc_action_button_min_width_material = 0x7f080017;\n\t\tpublic static final int abc_action_button_min_width_overflow_material = 0x7f080018;\n\t\tpublic static final int abc_alert_dialog_button_bar_height = 0x7f080000;\n\t\tpublic static final int abc_button_inset_horizontal_material = 0x7f080019;\n\t\tpublic static final int abc_button_inset_vertical_material = 0x7f08001a;\n\t\tpublic static final int abc_button_padding_horizontal_material = 0x7f08001b;\n\t\tpublic static final int abc_button_padding_vertical_material = 0x7f08001c;\n\t\tpublic static final int abc_config_prefDialogWidth = 0x7f080005;\n\t\tpublic static final int abc_control_corner_material = 0x7f08001d;\n\t\tpublic static final int abc_control_inset_material = 0x7f08001e;\n\t\tpublic static final int abc_control_padding_material = 0x7f08001f;\n\t\tpublic static final int abc_dialog_list_padding_vertical_material = 0x7f080020;\n\t\tpublic static final int abc_dialog_min_width_major = 0x7f080021;\n\t\tpublic static final int abc_dialog_min_width_minor = 0x7f080022;\n\t\tpublic static final int abc_dialog_padding_material = 0x7f080023;\n\t\tpublic static final int abc_dialog_padding_top_material = 0x7f080024;\n\t\tpublic static final int abc_disabled_alpha_material_dark = 0x7f080025;\n\t\tpublic static final int abc_disabled_alpha_material_light = 0x7f080026;\n\t\tpublic static final int abc_dropdownitem_icon_width = 0x7f080027;\n\t\tpublic static final int abc_dropdownitem_text_padding_left = 0x7f080028;\n\t\tpublic static final int abc_dropdownitem_text_padding_right = 0x7f080029;\n\t\tpublic static final int abc_edit_text_inset_bottom_material = 0x7f08002a;\n\t\tpublic static final int abc_edit_text_inset_horizontal_material = 0x7f08002b;\n\t\tpublic static final int abc_edit_text_inset_top_material = 0x7f08002c;\n\t\tpublic static final int abc_floating_window_z = 0x7f08002d;\n\t\tpublic static final int abc_list_item_padding_horizontal_material = 0x7f08002e;\n\t\tpublic static final int abc_panel_menu_list_width = 0x7f08002f;\n\t\tpublic static final int abc_search_view_preferred_width = 0x7f080030;\n\t\tpublic static final int abc_search_view_text_min_width = 0x7f080006;\n\t\tpublic static final int abc_switch_padding = 0x7f08000e;\n\t\tpublic static final int abc_text_size_body_1_material = 0x7f080031;\n\t\tpublic static final int abc_text_size_body_2_material = 0x7f080032;\n\t\tpublic static final int abc_text_size_button_material = 0x7f080033;\n\t\tpublic static final int abc_text_size_caption_material = 0x7f080034;\n\t\tpublic static final int abc_text_size_display_1_material = 0x7f080035;\n\t\tpublic static final int abc_text_size_display_2_material = 0x7f080036;\n\t\tpublic static final int abc_text_size_display_3_material = 0x7f080037;\n\t\tpublic static final int abc_text_size_display_4_material = 0x7f080038;\n\t\tpublic static final int abc_text_size_headline_material = 0x7f080039;\n\t\tpublic static final int abc_text_size_large_material = 0x7f08003a;\n\t\tpublic static final int abc_text_size_medium_material = 0x7f08003b;\n\t\tpublic static final int abc_text_size_menu_material = 0x7f08003c;\n\t\tpublic static final int abc_text_size_small_material = 0x7f08003d;\n\t\tpublic static final int abc_text_size_subhead_material = 0x7f08003e;\n\t\tpublic static final int abc_text_size_subtitle_material_toolbar = 0x7f080003;\n\t\tpublic static final int abc_text_size_title_material = 0x7f08003f;\n\t\tpublic static final int abc_text_size_title_material_toolbar = 0x7f080004;\n\t\tpublic static final int dialog_fixed_height_major = 0x7f080007;\n\t\tpublic static final int dialog_fixed_height_minor = 0x7f080008;\n\t\tpublic static final int dialog_fixed_width_major = 0x7f080009;\n\t\tpublic static final int dialog_fixed_width_minor = 0x7f08000a;\n\t\tpublic static final int disabled_alpha_material_dark = 0x7f080040;\n\t\tpublic static final int disabled_alpha_material_light = 0x7f080041;\n\t\tpublic static final int highlight_alpha_material_colored = 0x7f080042;\n\t\tpublic static final int highlight_alpha_material_dark = 0x7f080043;\n\t\tpublic static final int highlight_alpha_material_light = 0x7f080044;\n\t\tpublic static final int item_touch_helper_max_drag_scroll_per_frame = 0x7f080045;\n\t\tpublic static final int notification_large_icon_height = 0x7f080046;\n\t\tpublic static final int notification_large_icon_width = 0x7f080047;\n\t\tpublic static final int notification_subtext_size = 0x7f080048;\n\t}\n\tpublic static final class drawable {\n\t\tpublic static final int abc_ab_share_pack_mtrl_alpha = 0x7f020000;\n\t\tpublic static final int abc_action_bar_item_background_material = 0x7f020001;\n\t\tpublic static final int abc_btn_borderless_material = 0x7f020002;\n\t\tpublic static final int abc_btn_check_material = 0x7f020003;\n\t\tpublic static final int abc_btn_check_to_on_mtrl_000 = 0x7f020004;\n\t\tpublic static final int abc_btn_check_to_on_mtrl_015 = 0x7f020005;\n\t\tpublic static final int abc_btn_colored_material = 0x7f020006;\n\t\tpublic static final int abc_btn_default_mtrl_shape = 0x7f020007;\n\t\tpublic static final int abc_btn_radio_material = 0x7f020008;\n\t\tpublic static final int abc_btn_radio_to_on_mtrl_000 = 0x7f020009;\n\t\tpublic static final int abc_btn_radio_to_on_mtrl_015 = 0x7f02000a;\n\t\tpublic static final int abc_btn_rating_star_off_mtrl_alpha = 0x7f02000b;\n\t\tpublic static final int abc_btn_rating_star_on_mtrl_alpha = 0x7f02000c;\n\t\tpublic static final int abc_btn_switch_to_on_mtrl_00001 = 0x7f02000d;\n\t\tpublic static final int abc_btn_switch_to_on_mtrl_00012 = 0x7f02000e;\n\t\tpublic static final int abc_cab_background_internal_bg = 0x7f02000f;\n\t\tpublic static final int abc_cab_background_top_material = 0x7f020010;\n\t\tpublic static final int abc_cab_background_top_mtrl_alpha = 0x7f020011;\n\t\tpublic static final int abc_control_background_material = 0x7f020012;\n\t\tpublic static final int abc_dialog_material_background_dark = 0x7f020013;\n\t\tpublic static final int abc_dialog_material_background_light = 0x7f020014;\n\t\tpublic static final int abc_edit_text_material = 0x7f020015;\n\t\tpublic static final int abc_ic_ab_back_mtrl_am_alpha = 0x7f020016;\n\t\tpublic static final int abc_ic_clear_mtrl_alpha = 0x7f020017;\n\t\tpublic static final int abc_ic_commit_search_api_mtrl_alpha = 0x7f020018;\n\t\tpublic static final int abc_ic_go_search_api_mtrl_alpha = 0x7f020019;\n\t\tpublic static final int abc_ic_menu_copy_mtrl_am_alpha = 0x7f02001a;\n\t\tpublic static final int abc_ic_menu_cut_mtrl_alpha = 0x7f02001b;\n\t\tpublic static final int abc_ic_menu_moreoverflow_mtrl_alpha = 0x7f02001c;\n\t\tpublic static final int abc_ic_menu_paste_mtrl_am_alpha = 0x7f02001d;\n\t\tpublic static final int abc_ic_menu_selectall_mtrl_alpha = 0x7f02001e;\n\t\tpublic static final int abc_ic_menu_share_mtrl_alpha = 0x7f02001f;\n\t\tpublic static final int abc_ic_search_api_mtrl_alpha = 0x7f020020;\n\t\tpublic static final int abc_ic_voice_search_api_mtrl_alpha = 0x7f020021;\n\t\tpublic static final int abc_item_background_holo_dark = 0x7f020022;\n\t\tpublic static final int abc_item_background_holo_light = 0x7f020023;\n\t\tpublic static final int abc_list_divider_mtrl_alpha = 0x7f020024;\n\t\tpublic static final int abc_list_focused_holo = 0x7f020025;\n\t\tpublic static final int abc_list_longpressed_holo = 0x7f020026;\n\t\tpublic static final int abc_list_pressed_holo_dark = 0x7f020027;\n\t\tpublic static final int abc_list_pressed_holo_light = 0x7f020028;\n\t\tpublic static final int abc_list_selector_background_transition_holo_dark = 0x7f020029;\n\t\tpublic static final int abc_list_selector_background_transition_holo_light = 0x7f02002a;\n\t\tpublic static final int abc_list_selector_disabled_holo_dark = 0x7f02002b;\n\t\tpublic static final int abc_list_selector_disabled_holo_light = 0x7f02002c;\n\t\tpublic static final int abc_list_selector_holo_dark = 0x7f02002d;\n\t\tpublic static final int abc_list_selector_holo_light = 0x7f02002e;\n\t\tpublic static final int abc_menu_hardkey_panel_mtrl_mult = 0x7f02002f;\n\t\tpublic static final int abc_popup_background_mtrl_mult = 0x7f020030;\n\t\tpublic static final int abc_ratingbar_full_material = 0x7f020031;\n\t\tpublic static final int abc_spinner_mtrl_am_alpha = 0x7f020032;\n\t\tpublic static final int abc_spinner_textfield_background_material = 0x7f020033;\n\t\tpublic static final int abc_switch_thumb_material = 0x7f020034;\n\t\tpublic static final int abc_switch_track_mtrl_alpha = 0x7f020035;\n\t\tpublic static final int abc_tab_indicator_material = 0x7f020036;\n\t\tpublic static final int abc_tab_indicator_mtrl_alpha = 0x7f020037;\n\t\tpublic static final int abc_text_cursor_material = 0x7f020038;\n\t\tpublic static final int abc_textfield_activated_mtrl_alpha = 0x7f020039;\n\t\tpublic static final int abc_textfield_default_mtrl_alpha = 0x7f02003a;\n\t\tpublic static final int abc_textfield_search_activated_mtrl_alpha = 0x7f02003b;\n\t\tpublic static final int abc_textfield_search_default_mtrl_alpha = 0x7f02003c;\n\t\tpublic static final int abc_textfield_search_material = 0x7f02003d;\n\t\tpublic static final int notification_template_icon_bg = 0x7f02003e;\n\t}\n\tpublic static final class id {\n\t\tpublic static final int action0 = 0x7f0d0057;\n\t\tpublic static final int action_bar = 0x7f0d0047;\n\t\tpublic static final int action_bar_activity_content = 0x7f0d0000;\n\t\tpublic static final int action_bar_container = 0x7f0d0046;\n\t\tpublic static final int action_bar_root = 0x7f0d0042;\n\t\tpublic static final int action_bar_spinner = 0x7f0d0001;\n\t\tpublic static final int action_bar_subtitle = 0x7f0d002b;\n\t\tpublic static final int action_bar_title = 0x7f0d002a;\n\t\tpublic static final int action_context_bar = 0x7f0d0048;\n\t\tpublic static final int action_divider = 0x7f0d005b;\n\t\tpublic static final int action_menu_divider = 0x7f0d0002;\n\t\tpublic static final int action_menu_presenter = 0x7f0d0003;\n\t\tpublic static final int action_mode_bar = 0x7f0d0044;\n\t\tpublic static final int action_mode_bar_stub = 0x7f0d0043;\n\t\tpublic static final int action_mode_close_button = 0x7f0d002c;\n\t\tpublic static final int activity_chooser_view_content = 0x7f0d002d;\n\t\tpublic static final int alertTitle = 0x7f0d0037;\n\t\tpublic static final int always = 0x7f0d0024;\n\t\tpublic static final int beginning = 0x7f0d0021;\n\t\tpublic static final int buttonPanel = 0x7f0d003d;\n\t\tpublic static final int cancel_action = 0x7f0d0058;\n\t\tpublic static final int catalyst_redbox_title = 0x7f0d0066;\n\t\tpublic static final int center = 0x7f0d0019;\n\t\tpublic static final int centerCrop = 0x7f0d001a;\n\t\tpublic static final int centerInside = 0x7f0d001b;\n\t\tpublic static final int checkbox = 0x7f0d003f;\n\t\tpublic static final int chronometer = 0x7f0d005e;\n\t\tpublic static final int collapseActionView = 0x7f0d0025;\n\t\tpublic static final int contentPanel = 0x7f0d0038;\n\t\tpublic static final int custom = 0x7f0d003c;\n\t\tpublic static final int customPanel = 0x7f0d003b;\n\t\tpublic static final int decor_content_parent = 0x7f0d0045;\n\t\tpublic static final int default_activity_button = 0x7f0d0030;\n\t\tpublic static final int disableHome = 0x7f0d000d;\n\t\tpublic static final int edit_query = 0x7f0d0049;\n\t\tpublic static final int end = 0x7f0d0022;\n\t\tpublic static final int end_padder = 0x7f0d0063;\n\t\tpublic static final int expand_activities_button = 0x7f0d002e;\n\t\tpublic static final int expanded_menu = 0x7f0d003e;\n\t\tpublic static final int fitCenter = 0x7f0d001c;\n\t\tpublic static final int fitEnd = 0x7f0d001d;\n\t\tpublic static final int fitStart = 0x7f0d001e;\n\t\tpublic static final int fitXY = 0x7f0d001f;\n\t\tpublic static final int focusCrop = 0x7f0d0020;\n\t\tpublic static final int fps_text = 0x7f0d0056;\n\t\tpublic static final int home = 0x7f0d0004;\n\t\tpublic static final int homeAsUp = 0x7f0d000e;\n\t\tpublic static final int icon = 0x7f0d0032;\n\t\tpublic static final int ifRoom = 0x7f0d0026;\n\t\tpublic static final int image = 0x7f0d002f;\n\t\tpublic static final int info = 0x7f0d0062;\n\t\tpublic static final int item_touch_helper_previous_elevation = 0x7f0d0005;\n\t\tpublic static final int line1 = 0x7f0d005c;\n\t\tpublic static final int line3 = 0x7f0d0060;\n\t\tpublic static final int listMode = 0x7f0d000a;\n\t\tpublic static final int list_item = 0x7f0d0031;\n\t\tpublic static final int media_actions = 0x7f0d005a;\n\t\tpublic static final int middle = 0x7f0d0023;\n\t\tpublic static final int multiply = 0x7f0d0014;\n\t\tpublic static final int never = 0x7f0d0027;\n\t\tpublic static final int none = 0x7f0d000f;\n\t\tpublic static final int normal = 0x7f0d000b;\n\t\tpublic static final int parentPanel = 0x7f0d0034;\n\t\tpublic static final int progress_circular = 0x7f0d0006;\n\t\tpublic static final int progress_horizontal = 0x7f0d0007;\n\t\tpublic static final int radio = 0x7f0d0041;\n\t\tpublic static final int rn_frame_file = 0x7f0d0065;\n\t\tpublic static final int rn_frame_method = 0x7f0d0064;\n\t\tpublic static final int rn_redbox_reloadjs = 0x7f0d0068;\n\t\tpublic static final int rn_redbox_stack = 0x7f0d0067;\n\t\tpublic static final int screen = 0x7f0d0015;\n\t\tpublic static final int scrollView = 0x7f0d0039;\n\t\tpublic static final int search_badge = 0x7f0d004b;\n\t\tpublic static final int search_bar = 0x7f0d004a;\n\t\tpublic static final int search_button = 0x7f0d004c;\n\t\tpublic static final int search_close_btn = 0x7f0d0051;\n\t\tpublic static final int search_edit_frame = 0x7f0d004d;\n\t\tpublic static final int search_go_btn = 0x7f0d0053;\n\t\tpublic static final int search_mag_icon = 0x7f0d004e;\n\t\tpublic static final int search_plate = 0x7f0d004f;\n\t\tpublic static final int search_src_text = 0x7f0d0050;\n\t\tpublic static final int search_voice_btn = 0x7f0d0054;\n\t\tpublic static final int select_dialog_listview = 0x7f0d0055;\n\t\tpublic static final int shortcut = 0x7f0d0040;\n\t\tpublic static final int showCustom = 0x7f0d0010;\n\t\tpublic static final int showHome = 0x7f0d0011;\n\t\tpublic static final int showTitle = 0x7f0d0012;\n\t\tpublic static final int split_action_bar = 0x7f0d0008;\n\t\tpublic static final int src_atop = 0x7f0d0016;\n\t\tpublic static final int src_in = 0x7f0d0017;\n\t\tpublic static final int src_over = 0x7f0d0018;\n\t\tpublic static final int status_bar_latest_event_content = 0x7f0d0059;\n\t\tpublic static final int submit_area = 0x7f0d0052;\n\t\tpublic static final int tabMode = 0x7f0d000c;\n\t\tpublic static final int text = 0x7f0d0061;\n\t\tpublic static final int text2 = 0x7f0d005f;\n\t\tpublic static final int textSpacerNoButtons = 0x7f0d003a;\n\t\tpublic static final int time = 0x7f0d005d;\n\t\tpublic static final int title = 0x7f0d0033;\n\t\tpublic static final int title_template = 0x7f0d0036;\n\t\tpublic static final int topPanel = 0x7f0d0035;\n\t\tpublic static final int up = 0x7f0d0009;\n\t\tpublic static final int useLogo = 0x7f0d0013;\n\t\tpublic static final int withText = 0x7f0d0028;\n\t\tpublic static final int wrap_content = 0x7f0d0029;\n\t}\n\tpublic static final class integer {\n\t\tpublic static final int abc_config_activityDefaultDur = 0x7f0b0001;\n\t\tpublic static final int abc_config_activityShortDur = 0x7f0b0002;\n\t\tpublic static final int abc_max_action_buttons = 0x7f0b0000;\n\t\tpublic static final int cancel_button_image_alpha = 0x7f0b0003;\n\t\tpublic static final int status_bar_notification_info_maxnum = 0x7f0b0004;\n\t}\n\tpublic static final class layout {\n\t\tpublic static final int abc_action_bar_title_item = 0x7f040000;\n\t\tpublic static final int abc_action_bar_up_container = 0x7f040001;\n\t\tpublic static final int abc_action_bar_view_list_nav_layout = 0x7f040002;\n\t\tpublic static final int abc_action_menu_item_layout = 0x7f040003;\n\t\tpublic static final int abc_action_menu_layout = 0x7f040004;\n\t\tpublic static final int abc_action_mode_bar = 0x7f040005;\n\t\tpublic static final int abc_action_mode_close_item_material = 0x7f040006;\n\t\tpublic static final int abc_activity_chooser_view = 0x7f040007;\n\t\tpublic static final int abc_activity_chooser_view_list_item = 0x7f040008;\n\t\tpublic static final int abc_alert_dialog_material = 0x7f040009;\n\t\tpublic static final int abc_dialog_title_material = 0x7f04000a;\n\t\tpublic static final int abc_expanded_menu_layout = 0x7f04000b;\n\t\tpublic static final int abc_list_menu_item_checkbox = 0x7f04000c;\n\t\tpublic static final int abc_list_menu_item_icon = 0x7f04000d;\n\t\tpublic static final int abc_list_menu_item_layout = 0x7f04000e;\n\t\tpublic static final int abc_list_menu_item_radio = 0x7f04000f;\n\t\tpublic static final int abc_popup_menu_item_layout = 0x7f040010;\n\t\tpublic static final int abc_screen_content_include = 0x7f040011;\n\t\tpublic static final int abc_screen_simple = 0x7f040012;\n\t\tpublic static final int abc_screen_simple_overlay_action_mode = 0x7f040013;\n\t\tpublic static final int abc_screen_toolbar = 0x7f040014;\n\t\tpublic static final int abc_search_dropdown_item_icons_2line = 0x7f040015;\n\t\tpublic static final int abc_search_view = 0x7f040016;\n\t\tpublic static final int abc_select_dialog_material = 0x7f040017;\n\t\tpublic static final int fps_view = 0x7f040018;\n\t\tpublic static final int notification_media_action = 0x7f040019;\n\t\tpublic static final int notification_media_cancel_action = 0x7f04001a;\n\t\tpublic static final int notification_template_big_media = 0x7f04001b;\n\t\tpublic static final int notification_template_big_media_narrow = 0x7f04001c;\n\t\tpublic static final int notification_template_lines = 0x7f04001d;\n\t\tpublic static final int notification_template_media = 0x7f04001e;\n\t\tpublic static final int notification_template_part_chronometer = 0x7f04001f;\n\t\tpublic static final int notification_template_part_time = 0x7f040020;\n\t\tpublic static final int redbox_item_frame = 0x7f040021;\n\t\tpublic static final int redbox_item_title = 0x7f040022;\n\t\tpublic static final int redbox_view = 0x7f040023;\n\t\tpublic static final int select_dialog_item_material = 0x7f040024;\n\t\tpublic static final int select_dialog_multichoice_material = 0x7f040025;\n\t\tpublic static final int select_dialog_singlechoice_material = 0x7f040026;\n\t\tpublic static final int support_simple_spinner_dropdown_item = 0x7f040027;\n\t}\n\tpublic static final class string {\n\t\tpublic static final int abc_action_bar_home_description = 0x7f070000;\n\t\tpublic static final int abc_action_bar_home_description_format = 0x7f070001;\n\t\tpublic static final int abc_action_bar_home_subtitle_description_format = 0x7f070002;\n\t\tpublic static final int abc_action_bar_up_description = 0x7f070003;\n\t\tpublic static final int abc_action_menu_overflow_description = 0x7f070004;\n\t\tpublic static final int abc_action_mode_done = 0x7f070005;\n\t\tpublic static final int abc_activity_chooser_view_see_all = 0x7f070006;\n\t\tpublic static final int abc_activitychooserview_choose_application = 0x7f070007;\n\t\tpublic static final int abc_search_hint = 0x7f070008;\n\t\tpublic static final int abc_searchview_description_clear = 0x7f070009;\n\t\tpublic static final int abc_searchview_description_query = 0x7f07000a;\n\t\tpublic static final int abc_searchview_description_search = 0x7f07000b;\n\t\tpublic static final int abc_searchview_description_submit = 0x7f07000c;\n\t\tpublic static final int abc_searchview_description_voice = 0x7f07000d;\n\t\tpublic static final int abc_shareactionprovider_share_with = 0x7f07000e;\n\t\tpublic static final int abc_shareactionprovider_share_with_application = 0x7f07000f;\n\t\tpublic static final int abc_toolbar_collapse_description = 0x7f070010;\n\t\tpublic static final int catalyst_debugjs = 0x7f070012;\n\t\tpublic static final int catalyst_debugjs_off = 0x7f07001b;\n\t\tpublic static final int catalyst_element_inspector = 0x7f070013;\n\t\tpublic static final int catalyst_element_inspector_off = 0x7f07001c;\n\t\tpublic static final int catalyst_hot_module_replacement = 0x7f07001d;\n\t\tpublic static final int catalyst_hot_module_replacement_off = 0x7f07001e;\n\t\tpublic static final int catalyst_jsload_error = 0x7f070014;\n\t\tpublic static final int catalyst_jsload_message = 0x7f070015;\n\t\tpublic static final int catalyst_jsload_title = 0x7f070016;\n\t\tpublic static final int catalyst_live_reload = 0x7f07001f;\n\t\tpublic static final int catalyst_live_reload_off = 0x7f070020;\n\t\tpublic static final int catalyst_perf_monitor = 0x7f070021;\n\t\tpublic static final int catalyst_perf_monitor_off = 0x7f070022;\n\t\tpublic static final int catalyst_reloadjs = 0x7f070017;\n\t\tpublic static final int catalyst_remotedbg_error = 0x7f070023;\n\t\tpublic static final int catalyst_remotedbg_message = 0x7f070024;\n\t\tpublic static final int catalyst_settings = 0x7f070018;\n\t\tpublic static final int catalyst_settings_title = 0x7f070019;\n\t\tpublic static final int catalyst_start_profile = 0x7f070025;\n\t\tpublic static final int catalyst_stop_profile = 0x7f070026;\n\t\tpublic static final int status_bar_notification_info_overflow = 0x7f070011;\n\t}\n\tpublic static final class style {\n\t\tpublic static final int AlertDialog_AppCompat = 0x7f09007a;\n\t\tpublic static final int AlertDialog_AppCompat_Light = 0x7f09007b;\n\t\tpublic static final int Animation_AppCompat_Dialog = 0x7f09007c;\n\t\tpublic static final int Animation_AppCompat_DropDownUp = 0x7f09007d;\n\t\tpublic static final int Animation_Catalyst_RedBox = 0x7f09007e;\n\t\tpublic static final int Base_AlertDialog_AppCompat = 0x7f090080;\n\t\tpublic static final int Base_AlertDialog_AppCompat_Light = 0x7f090081;\n\t\tpublic static final int Base_Animation_AppCompat_Dialog = 0x7f090082;\n\t\tpublic static final int Base_Animation_AppCompat_DropDownUp = 0x7f090083;\n\t\tpublic static final int Base_DialogWindowTitleBackground_AppCompat = 0x7f090085;\n\t\tpublic static final int Base_DialogWindowTitle_AppCompat = 0x7f090084;\n\t\tpublic static final int Base_TextAppearance_AppCompat = 0x7f09002d;\n\t\tpublic static final int Base_TextAppearance_AppCompat_Body1 = 0x7f09002e;\n\t\tpublic static final int Base_TextAppearance_AppCompat_Body2 = 0x7f09002f;\n\t\tpublic static final int Base_TextAppearance_AppCompat_Button = 0x7f090018;\n\t\tpublic static final int Base_TextAppearance_AppCompat_Caption = 0x7f090030;\n\t\tpublic static final int Base_TextAppearance_AppCompat_Display1 = 0x7f090031;\n\t\tpublic static final int Base_TextAppearance_AppCompat_Display2 = 0x7f090032;\n\t\tpublic static final int Base_TextAppearance_AppCompat_Display3 = 0x7f090033;\n\t\tpublic static final int Base_TextAppearance_AppCompat_Display4 = 0x7f090034;\n\t\tpublic static final int Base_TextAppearance_AppCompat_Headline = 0x7f090035;\n\t\tpublic static final int Base_TextAppearance_AppCompat_Inverse = 0x7f090003;\n\t\tpublic static final int Base_TextAppearance_AppCompat_Large = 0x7f090036;\n\t\tpublic static final int Base_TextAppearance_AppCompat_Large_Inverse = 0x7f090004;\n\t\tpublic static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 0x7f090037;\n\t\tpublic static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 0x7f090038;\n\t\tpublic static final int Base_TextAppearance_AppCompat_Medium = 0x7f090039;\n\t\tpublic static final int Base_TextAppearance_AppCompat_Medium_Inverse = 0x7f090005;\n\t\tpublic static final int Base_TextAppearance_AppCompat_Menu = 0x7f09003a;\n\t\tpublic static final int Base_TextAppearance_AppCompat_SearchResult = 0x7f090086;\n\t\tpublic static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle = 0x7f09003b;\n\t\tpublic static final int Base_TextAppearance_AppCompat_SearchResult_Title = 0x7f09003c;\n\t\tpublic static final int Base_TextAppearance_AppCompat_Small = 0x7f09003d;\n\t\tpublic static final int Base_TextAppearance_AppCompat_Small_Inverse = 0x7f090006;\n\t\tpublic static final int Base_TextAppearance_AppCompat_Subhead = 0x7f09003e;\n\t\tpublic static final int Base_TextAppearance_AppCompat_Subhead_Inverse = 0x7f090007;\n\t\tpublic static final int Base_TextAppearance_AppCompat_Title = 0x7f09003f;\n\t\tpublic static final int Base_TextAppearance_AppCompat_Title_Inverse = 0x7f090008;\n\t\tpublic static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu = 0x7f090040;\n\t\tpublic static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 0x7f090041;\n\t\tpublic static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 0x7f090042;\n\t\tpublic static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title = 0x7f090043;\n\t\tpublic static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 0x7f090044;\n\t\tpublic static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 0x7f090045;\n\t\tpublic static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title = 0x7f090046;\n\t\tpublic static final int Base_TextAppearance_AppCompat_Widget_Button = 0x7f090047;\n\t\tpublic static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse = 0x7f090076;\n\t\tpublic static final int Base_TextAppearance_AppCompat_Widget_DropDownItem = 0x7f090087;\n\t\tpublic static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large = 0x7f090048;\n\t\tpublic static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small = 0x7f090049;\n\t\tpublic static final int Base_TextAppearance_AppCompat_Widget_Switch = 0x7f09004a;\n\t\tpublic static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 0x7f09004b;\n\t\tpublic static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 0x7f090088;\n\t\tpublic static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 0x7f09004c;\n\t\tpublic static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title = 0x7f09004d;\n\t\tpublic static final int Base_ThemeOverlay_AppCompat = 0x7f090091;\n\t\tpublic static final int Base_ThemeOverlay_AppCompat_ActionBar = 0x7f090092;\n\t\tpublic static final int Base_ThemeOverlay_AppCompat_Dark = 0x7f090093;\n\t\tpublic static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar = 0x7f090094;\n\t\tpublic static final int Base_ThemeOverlay_AppCompat_Light = 0x7f090095;\n\t\tpublic static final int Base_Theme_AppCompat = 0x7f09004e;\n\t\tpublic static final int Base_Theme_AppCompat_CompactMenu = 0x7f090089;\n\t\tpublic static final int Base_Theme_AppCompat_Dialog = 0x7f090009;\n\t\tpublic static final int Base_Theme_AppCompat_DialogWhenLarge = 0x7f090001;\n\t\tpublic static final int Base_Theme_AppCompat_Dialog_Alert = 0x7f09008a;\n\t\tpublic static final int Base_Theme_AppCompat_Dialog_FixedSize = 0x7f09008b;\n\t\tpublic static final int Base_Theme_AppCompat_Dialog_MinWidth = 0x7f09008c;\n\t\tpublic static final int Base_Theme_AppCompat_Light = 0x7f09004f;\n\t\tpublic static final int Base_Theme_AppCompat_Light_DarkActionBar = 0x7f09008d;\n\t\tpublic static final int Base_Theme_AppCompat_Light_Dialog = 0x7f09000a;\n\t\tpublic static final int Base_Theme_AppCompat_Light_DialogWhenLarge = 0x7f090002;\n\t\tpublic static final int Base_Theme_AppCompat_Light_Dialog_Alert = 0x7f09008e;\n\t\tpublic static final int Base_Theme_AppCompat_Light_Dialog_FixedSize = 0x7f09008f;\n\t\tpublic static final int Base_Theme_AppCompat_Light_Dialog_MinWidth = 0x7f090090;\n\t\tpublic static final int Base_V11_Theme_AppCompat_Dialog = 0x7f09000b;\n\t\tpublic static final int Base_V11_Theme_AppCompat_Light_Dialog = 0x7f09000c;\n\t\tpublic static final int Base_V12_Widget_AppCompat_AutoCompleteTextView = 0x7f090014;\n\t\tpublic static final int Base_V12_Widget_AppCompat_EditText = 0x7f090015;\n\t\tpublic static final int Base_V21_Theme_AppCompat = 0x7f090050;\n\t\tpublic static final int Base_V21_Theme_AppCompat_Dialog = 0x7f090051;\n\t\tpublic static final int Base_V21_Theme_AppCompat_Light = 0x7f090052;\n\t\tpublic static final int Base_V21_Theme_AppCompat_Light_Dialog = 0x7f090053;\n\t\tpublic static final int Base_V22_Theme_AppCompat = 0x7f090074;\n\t\tpublic static final int Base_V22_Theme_AppCompat_Light = 0x7f090075;\n\t\tpublic static final int Base_V23_Theme_AppCompat = 0x7f090077;\n\t\tpublic static final int Base_V23_Theme_AppCompat_Light = 0x7f090078;\n\t\tpublic static final int Base_V7_Theme_AppCompat = 0x7f090096;\n\t\tpublic static final int Base_V7_Theme_AppCompat_Dialog = 0x7f090097;\n\t\tpublic static final int Base_V7_Theme_AppCompat_Light = 0x7f090098;\n\t\tpublic static final int Base_V7_Theme_AppCompat_Light_Dialog = 0x7f090099;\n\t\tpublic static final int Base_V7_Widget_AppCompat_AutoCompleteTextView = 0x7f09009a;\n\t\tpublic static final int Base_V7_Widget_AppCompat_EditText = 0x7f09009b;\n\t\tpublic static final int Base_Widget_AppCompat_ActionBar = 0x7f09009c;\n\t\tpublic static final int Base_Widget_AppCompat_ActionBar_Solid = 0x7f09009d;\n\t\tpublic static final int Base_Widget_AppCompat_ActionBar_TabBar = 0x7f09009e;\n\t\tpublic static final int Base_Widget_AppCompat_ActionBar_TabText = 0x7f090054;\n\t\tpublic static final int Base_Widget_AppCompat_ActionBar_TabView = 0x7f090055;\n\t\tpublic static final int Base_Widget_AppCompat_ActionButton = 0x7f090056;\n\t\tpublic static final int Base_Widget_AppCompat_ActionButton_CloseMode = 0x7f090057;\n\t\tpublic static final int Base_Widget_AppCompat_ActionButton_Overflow = 0x7f090058;\n\t\tpublic static final int Base_Widget_AppCompat_ActionMode = 0x7f09009f;\n\t\tpublic static final int Base_Widget_AppCompat_ActivityChooserView = 0x7f0900a0;\n\t\tpublic static final int Base_Widget_AppCompat_AutoCompleteTextView = 0x7f090016;\n\t\tpublic static final int Base_Widget_AppCompat_Button = 0x7f090059;\n\t\tpublic static final int Base_Widget_AppCompat_ButtonBar = 0x7f09005d;\n\t\tpublic static final int Base_Widget_AppCompat_ButtonBar_AlertDialog = 0x7f0900a2;\n\t\tpublic static final int Base_Widget_AppCompat_Button_Borderless = 0x7f09005a;\n\t\tpublic static final int Base_Widget_AppCompat_Button_Borderless_Colored = 0x7f09005b;\n\t\tpublic static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog = 0x7f0900a1;\n\t\tpublic static final int Base_Widget_AppCompat_Button_Colored = 0x7f090079;\n\t\tpublic static final int Base_Widget_AppCompat_Button_Small = 0x7f09005c;\n\t\tpublic static final int Base_Widget_AppCompat_CompoundButton_CheckBox = 0x7f09005e;\n\t\tpublic static final int Base_Widget_AppCompat_CompoundButton_RadioButton = 0x7f09005f;\n\t\tpublic static final int Base_Widget_AppCompat_CompoundButton_Switch = 0x7f0900a3;\n\t\tpublic static final int Base_Widget_AppCompat_DrawerArrowToggle = 0x7f090000;\n\t\tpublic static final int Base_Widget_AppCompat_DrawerArrowToggle_Common = 0x7f0900a4;\n\t\tpublic static final int Base_Widget_AppCompat_DropDownItem_Spinner = 0x7f090060;\n\t\tpublic static final int Base_Widget_AppCompat_EditText = 0x7f090017;\n\t\tpublic static final int Base_Widget_AppCompat_Light_ActionBar = 0x7f0900a5;\n\t\tpublic static final int Base_Widget_AppCompat_Light_ActionBar_Solid = 0x7f0900a6;\n\t\tpublic static final int Base_Widget_AppCompat_Light_ActionBar_TabBar = 0x7f0900a7;\n\t\tpublic static final int Base_Widget_AppCompat_Light_ActionBar_TabText = 0x7f090061;\n\t\tpublic static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse = 0x7f090062;\n\t\tpublic static final int Base_Widget_AppCompat_Light_ActionBar_TabView = 0x7f090063;\n\t\tpublic static final int Base_Widget_AppCompat_Light_PopupMenu = 0x7f090064;\n\t\tpublic static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow = 0x7f090065;\n\t\tpublic static final int Base_Widget_AppCompat_ListPopupWindow = 0x7f090066;\n\t\tpublic static final int Base_Widget_AppCompat_ListView = 0x7f090067;\n\t\tpublic static final int Base_Widget_AppCompat_ListView_DropDown = 0x7f090068;\n\t\tpublic static final int Base_Widget_AppCompat_ListView_Menu = 0x7f090069;\n\t\tpublic static final int Base_Widget_AppCompat_PopupMenu = 0x7f09006a;\n\t\tpublic static final int Base_Widget_AppCompat_PopupMenu_Overflow = 0x7f09006b;\n\t\tpublic static final int Base_Widget_AppCompat_PopupWindow = 0x7f0900a8;\n\t\tpublic static final int Base_Widget_AppCompat_ProgressBar = 0x7f09000d;\n\t\tpublic static final int Base_Widget_AppCompat_ProgressBar_Horizontal = 0x7f09000e;\n\t\tpublic static final int Base_Widget_AppCompat_RatingBar = 0x7f09006c;\n\t\tpublic static final int Base_Widget_AppCompat_SearchView = 0x7f0900a9;\n\t\tpublic static final int Base_Widget_AppCompat_SearchView_ActionBar = 0x7f0900aa;\n\t\tpublic static final int Base_Widget_AppCompat_Spinner = 0x7f09006d;\n\t\tpublic static final int Base_Widget_AppCompat_Spinner_Underlined = 0x7f09006e;\n\t\tpublic static final int Base_Widget_AppCompat_TextView_SpinnerItem = 0x7f09006f;\n\t\tpublic static final int Base_Widget_AppCompat_Toolbar = 0x7f0900ab;\n\t\tpublic static final int Base_Widget_AppCompat_Toolbar_Button_Navigation = 0x7f090070;\n\t\tpublic static final int DialogAnimation = 0x7f0900ac;\n\t\tpublic static final int Platform_AppCompat = 0x7f09000f;\n\t\tpublic static final int Platform_AppCompat_Light = 0x7f090010;\n\t\tpublic static final int Platform_ThemeOverlay_AppCompat = 0x7f090071;\n\t\tpublic static final int Platform_ThemeOverlay_AppCompat_Dark = 0x7f090072;\n\t\tpublic static final int Platform_ThemeOverlay_AppCompat_Light = 0x7f090073;\n\t\tpublic static final int Platform_V11_AppCompat = 0x7f090011;\n\t\tpublic static final int Platform_V11_AppCompat_Light = 0x7f090012;\n\t\tpublic static final int Platform_V14_AppCompat = 0x7f090019;\n\t\tpublic static final int Platform_V14_AppCompat_Light = 0x7f09001a;\n\t\tpublic static final int Platform_Widget_AppCompat_Spinner = 0x7f090013;\n\t\tpublic static final int RtlOverlay_DialogWindowTitle_AppCompat = 0x7f090020;\n\t\tpublic static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem = 0x7f090021;\n\t\tpublic static final int RtlOverlay_Widget_AppCompat_ActionButton_Overflow = 0x7f090022;\n\t\tpublic static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon = 0x7f090023;\n\t\tpublic static final int RtlOverlay_Widget_AppCompat_PopupMenuItem = 0x7f090024;\n\t\tpublic static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup = 0x7f090025;\n\t\tpublic static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text = 0x7f090026;\n\t\tpublic static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon = 0x7f09002c;\n\t\tpublic static final int RtlOverlay_Widget_AppCompat_Search_DropDown = 0x7f090027;\n\t\tpublic static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 = 0x7f090028;\n\t\tpublic static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 = 0x7f090029;\n\t\tpublic static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query = 0x7f09002a;\n\t\tpublic static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text = 0x7f09002b;\n\t\tpublic static final int TextAppearance_AppCompat = 0x7f0900ad;\n\t\tpublic static final int TextAppearance_AppCompat_Body1 = 0x7f0900ae;\n\t\tpublic static final int TextAppearance_AppCompat_Body2 = 0x7f0900af;\n\t\tpublic static final int TextAppearance_AppCompat_Button = 0x7f0900b0;\n\t\tpublic static final int TextAppearance_AppCompat_Caption = 0x7f0900b1;\n\t\tpublic static final int TextAppearance_AppCompat_Display1 = 0x7f0900b2;\n\t\tpublic static final int TextAppearance_AppCompat_Display2 = 0x7f0900b3;\n\t\tpublic static final int TextAppearance_AppCompat_Display3 = 0x7f0900b4;\n\t\tpublic static final int TextAppearance_AppCompat_Display4 = 0x7f0900b5;\n\t\tpublic static final int TextAppearance_AppCompat_Headline = 0x7f0900b6;\n\t\tpublic static final int TextAppearance_AppCompat_Inverse = 0x7f0900b7;\n\t\tpublic static final int TextAppearance_AppCompat_Large = 0x7f0900b8;\n\t\tpublic static final int TextAppearance_AppCompat_Large_Inverse = 0x7f0900b9;\n\t\tpublic static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle = 0x7f0900ba;\n\t\tpublic static final int TextAppearance_AppCompat_Light_SearchResult_Title = 0x7f0900bb;\n\t\tpublic static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 0x7f0900bc;\n\t\tpublic static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 0x7f0900bd;\n\t\tpublic static final int TextAppearance_AppCompat_Medium = 0x7f0900be;\n\t\tpublic static final int TextAppearance_AppCompat_Medium_Inverse = 0x7f0900bf;\n\t\tpublic static final int TextAppearance_AppCompat_Menu = 0x7f0900c0;\n\t\tpublic static final int TextAppearance_AppCompat_SearchResult_Subtitle = 0x7f0900c1;\n\t\tpublic static final int TextAppearance_AppCompat_SearchResult_Title = 0x7f0900c2;\n\t\tpublic static final int TextAppearance_AppCompat_Small = 0x7f0900c3;\n\t\tpublic static final int TextAppearance_AppCompat_Small_Inverse = 0x7f0900c4;\n\t\tpublic static final int TextAppearance_AppCompat_Subhead = 0x7f0900c5;\n\t\tpublic static final int TextAppearance_AppCompat_Subhead_Inverse = 0x7f0900c6;\n\t\tpublic static final int TextAppearance_AppCompat_Title = 0x7f0900c7;\n\t\tpublic static final int TextAppearance_AppCompat_Title_Inverse = 0x7f0900c8;\n\t\tpublic static final int TextAppearance_AppCompat_Widget_ActionBar_Menu = 0x7f0900c9;\n\t\tpublic static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 0x7f0900ca;\n\t\tpublic static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 0x7f0900cb;\n\t\tpublic static final int TextAppearance_AppCompat_Widget_ActionBar_Title = 0x7f0900cc;\n\t\tpublic static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 0x7f0900cd;\n\t\tpublic static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 0x7f0900ce;\n\t\tpublic static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse = 0x7f0900cf;\n\t\tpublic static final int TextAppearance_AppCompat_Widget_ActionMode_Title = 0x7f0900d0;\n\t\tpublic static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse = 0x7f0900d1;\n\t\tpublic static final int TextAppearance_AppCompat_Widget_Button = 0x7f0900d2;\n\t\tpublic static final int TextAppearance_AppCompat_Widget_Button_Inverse = 0x7f0900d3;\n\t\tpublic static final int TextAppearance_AppCompat_Widget_DropDownItem = 0x7f0900d4;\n\t\tpublic static final int TextAppearance_AppCompat_Widget_PopupMenu_Large = 0x7f0900d5;\n\t\tpublic static final int TextAppearance_AppCompat_Widget_PopupMenu_Small = 0x7f0900d6;\n\t\tpublic static final int TextAppearance_AppCompat_Widget_Switch = 0x7f0900d7;\n\t\tpublic static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 0x7f0900d8;\n\t\tpublic static final int TextAppearance_StatusBar_EventContent = 0x7f09001b;\n\t\tpublic static final int TextAppearance_StatusBar_EventContent_Info = 0x7f09001c;\n\t\tpublic static final int TextAppearance_StatusBar_EventContent_Line2 = 0x7f09001d;\n\t\tpublic static final int TextAppearance_StatusBar_EventContent_Time = 0x7f09001e;\n\t\tpublic static final int TextAppearance_StatusBar_EventContent_Title = 0x7f09001f;\n\t\tpublic static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 0x7f0900d9;\n\t\tpublic static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 0x7f0900da;\n\t\tpublic static final int TextAppearance_Widget_AppCompat_Toolbar_Title = 0x7f0900db;\n\t\tpublic static final int Theme = 0x7f0900dc;\n\t\tpublic static final int ThemeOverlay_AppCompat = 0x7f0900f1;\n\t\tpublic static final int ThemeOverlay_AppCompat_ActionBar = 0x7f0900f2;\n\t\tpublic static final int ThemeOverlay_AppCompat_Dark = 0x7f0900f3;\n\t\tpublic static final int ThemeOverlay_AppCompat_Dark_ActionBar = 0x7f0900f4;\n\t\tpublic static final int ThemeOverlay_AppCompat_Light = 0x7f0900f5;\n\t\tpublic static final int Theme_AppCompat = 0x7f0900dd;\n\t\tpublic static final int Theme_AppCompat_CompactMenu = 0x7f0900de;\n\t\tpublic static final int Theme_AppCompat_Dialog = 0x7f0900df;\n\t\tpublic static final int Theme_AppCompat_DialogWhenLarge = 0x7f0900e2;\n\t\tpublic static final int Theme_AppCompat_Dialog_Alert = 0x7f0900e0;\n\t\tpublic static final int Theme_AppCompat_Dialog_MinWidth = 0x7f0900e1;\n\t\tpublic static final int Theme_AppCompat_Light = 0x7f0900e3;\n\t\tpublic static final int Theme_AppCompat_Light_DarkActionBar = 0x7f0900e4;\n\t\tpublic static final int Theme_AppCompat_Light_Dialog = 0x7f0900e5;\n\t\tpublic static final int Theme_AppCompat_Light_DialogWhenLarge = 0x7f0900e8;\n\t\tpublic static final int Theme_AppCompat_Light_Dialog_Alert = 0x7f0900e6;\n\t\tpublic static final int Theme_AppCompat_Light_Dialog_MinWidth = 0x7f0900e7;\n\t\tpublic static final int Theme_AppCompat_Light_NoActionBar = 0x7f0900e9;\n\t\tpublic static final int Theme_AppCompat_NoActionBar = 0x7f0900ea;\n\t\tpublic static final int Theme_Catalyst = 0x7f0900eb;\n\t\tpublic static final int Theme_Catalyst_RedBox = 0x7f0900ec;\n\t\tpublic static final int Theme_FullScreenDialog = 0x7f0900ed;\n\t\tpublic static final int Theme_FullScreenDialogAnimated = 0x7f0900ee;\n\t\tpublic static final int Theme_ReactNative_AppCompat_Light = 0x7f0900ef;\n\t\tpublic static final int Theme_ReactNative_AppCompat_Light_NoActionBar_FullScreen = 0x7f0900f0;\n\t\tpublic static final int Widget_AppCompat_ActionBar = 0x7f0900f6;\n\t\tpublic static final int Widget_AppCompat_ActionBar_Solid = 0x7f0900f7;\n\t\tpublic static final int Widget_AppCompat_ActionBar_TabBar = 0x7f0900f8;\n\t\tpublic static final int Widget_AppCompat_ActionBar_TabText = 0x7f0900f9;\n\t\tpublic static final int Widget_AppCompat_ActionBar_TabView = 0x7f0900fa;\n\t\tpublic static final int Widget_AppCompat_ActionButton = 0x7f0900fb;\n\t\tpublic static final int Widget_AppCompat_ActionButton_CloseMode = 0x7f0900fc;\n\t\tpublic static final int Widget_AppCompat_ActionButton_Overflow = 0x7f0900fd;\n\t\tpublic static final int Widget_AppCompat_ActionMode = 0x7f0900fe;\n\t\tpublic static final int Widget_AppCompat_ActivityChooserView = 0x7f0900ff;\n\t\tpublic static final int Widget_AppCompat_AutoCompleteTextView = 0x7f090100;\n\t\tpublic static final int Widget_AppCompat_Button = 0x7f090101;\n\t\tpublic static final int Widget_AppCompat_ButtonBar = 0x7f090107;\n\t\tpublic static final int Widget_AppCompat_ButtonBar_AlertDialog = 0x7f090108;\n\t\tpublic static final int Widget_AppCompat_Button_Borderless = 0x7f090102;\n\t\tpublic static final int Widget_AppCompat_Button_Borderless_Colored = 0x7f090103;\n\t\tpublic static final int Widget_AppCompat_Button_ButtonBar_AlertDialog = 0x7f090104;\n\t\tpublic static final int Widget_AppCompat_Button_Colored = 0x7f090105;\n\t\tpublic static final int Widget_AppCompat_Button_Small = 0x7f090106;\n\t\tpublic static final int Widget_AppCompat_CompoundButton_CheckBox = 0x7f090109;\n\t\tpublic static final int Widget_AppCompat_CompoundButton_RadioButton = 0x7f09010a;\n\t\tpublic static final int Widget_AppCompat_CompoundButton_Switch = 0x7f09010b;\n\t\tpublic static final int Widget_AppCompat_DrawerArrowToggle = 0x7f09010c;\n\t\tpublic static final int Widget_AppCompat_DropDownItem_Spinner = 0x7f09010d;\n\t\tpublic static final int Widget_AppCompat_EditText = 0x7f09010e;\n\t\tpublic static final int Widget_AppCompat_Light_ActionBar = 0x7f09010f;\n\t\tpublic static final int Widget_AppCompat_Light_ActionBar_Solid = 0x7f090110;\n\t\tpublic static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse = 0x7f090111;\n\t\tpublic static final int Widget_AppCompat_Light_ActionBar_TabBar = 0x7f090112;\n\t\tpublic static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse = 0x7f090113;\n\t\tpublic static final int Widget_AppCompat_Light_ActionBar_TabText = 0x7f090114;\n\t\tpublic static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse = 0x7f090115;\n\t\tpublic static final int Widget_AppCompat_Light_ActionBar_TabView = 0x7f090116;\n\t\tpublic static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse = 0x7f090117;\n\t\tpublic static final int Widget_AppCompat_Light_ActionButton = 0x7f090118;\n\t\tpublic static final int Widget_AppCompat_Light_ActionButton_CloseMode = 0x7f090119;\n\t\tpublic static final int Widget_AppCompat_Light_ActionButton_Overflow = 0x7f09011a;\n\t\tpublic static final int Widget_AppCompat_Light_ActionMode_Inverse = 0x7f09011b;\n\t\tpublic static final int Widget_AppCompat_Light_ActivityChooserView = 0x7f09011c;\n\t\tpublic static final int Widget_AppCompat_Light_AutoCompleteTextView = 0x7f09011d;\n\t\tpublic static final int Widget_AppCompat_Light_DropDownItem_Spinner = 0x7f09011e;\n\t\tpublic static final int Widget_AppCompat_Light_ListPopupWindow = 0x7f09011f;\n\t\tpublic static final int Widget_AppCompat_Light_ListView_DropDown = 0x7f090120;\n\t\tpublic static final int Widget_AppCompat_Light_PopupMenu = 0x7f090121;\n\t\tpublic static final int Widget_AppCompat_Light_PopupMenu_Overflow = 0x7f090122;\n\t\tpublic static final int Widget_AppCompat_Light_SearchView = 0x7f090123;\n\t\tpublic static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar = 0x7f090124;\n\t\tpublic static final int Widget_AppCompat_ListPopupWindow = 0x7f090125;\n\t\tpublic static final int Widget_AppCompat_ListView = 0x7f090126;\n\t\tpublic static final int Widget_AppCompat_ListView_DropDown = 0x7f090127;\n\t\tpublic static final int Widget_AppCompat_ListView_Menu = 0x7f090128;\n\t\tpublic static final int Widget_AppCompat_PopupMenu = 0x7f090129;\n\t\tpublic static final int Widget_AppCompat_PopupMenu_Overflow = 0x7f09012a;\n\t\tpublic static final int Widget_AppCompat_PopupWindow = 0x7f09012b;\n\t\tpublic static final int Widget_AppCompat_ProgressBar = 0x7f09012c;\n\t\tpublic static final int Widget_AppCompat_ProgressBar_Horizontal = 0x7f09012d;\n\t\tpublic static final int Widget_AppCompat_RatingBar = 0x7f09012e;\n\t\tpublic static final int Widget_AppCompat_SearchView = 0x7f09012f;\n\t\tpublic static final int Widget_AppCompat_SearchView_ActionBar = 0x7f090130;\n\t\tpublic static final int Widget_AppCompat_Spinner = 0x7f090131;\n\t\tpublic static final int Widget_AppCompat_Spinner_DropDown = 0x7f090132;\n\t\tpublic static final int Widget_AppCompat_Spinner_DropDown_ActionBar = 0x7f090133;\n\t\tpublic static final int Widget_AppCompat_Spinner_Underlined = 0x7f090134;\n\t\tpublic static final int Widget_AppCompat_TextView_SpinnerItem = 0x7f090135;\n\t\tpublic static final int Widget_AppCompat_Toolbar = 0x7f090136;\n\t\tpublic static final int Widget_AppCompat_Toolbar_Button_Navigation = 0x7f090137;\n\t}\n\tpublic static final class styleable {\n\t\tpublic 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, 0x7f010097 };\n\t\tpublic static final int[] ActionBarLayout = { 0x010100b3 };\n\t\tpublic static final int ActionBarLayout_android_layout_gravity = 0;\n\t\tpublic static final int ActionBar_background = 10;\n\t\tpublic static final int ActionBar_backgroundSplit = 12;\n\t\tpublic static final int ActionBar_backgroundStacked = 11;\n\t\tpublic static final int ActionBar_contentInsetEnd = 21;\n\t\tpublic static final int ActionBar_contentInsetLeft = 22;\n\t\tpublic static final int ActionBar_contentInsetRight = 23;\n\t\tpublic static final int ActionBar_contentInsetStart = 20;\n\t\tpublic static final int ActionBar_customNavigationLayout = 13;\n\t\tpublic static final int ActionBar_displayOptions = 3;\n\t\tpublic static final int ActionBar_divider = 9;\n\t\tpublic static final int ActionBar_elevation = 24;\n\t\tpublic static final int ActionBar_height = 0;\n\t\tpublic static final int ActionBar_hideOnContentScroll = 19;\n\t\tpublic static final int ActionBar_homeAsUpIndicator = 26;\n\t\tpublic static final int ActionBar_homeLayout = 14;\n\t\tpublic static final int ActionBar_icon = 7;\n\t\tpublic static final int ActionBar_indeterminateProgressStyle = 16;\n\t\tpublic static final int ActionBar_itemPadding = 18;\n\t\tpublic static final int ActionBar_logo = 8;\n\t\tpublic static final int ActionBar_navigationMode = 2;\n\t\tpublic static final int ActionBar_popupTheme = 25;\n\t\tpublic static final int ActionBar_progressBarPadding = 17;\n\t\tpublic static final int ActionBar_progressBarStyle = 15;\n\t\tpublic static final int ActionBar_subtitle = 4;\n\t\tpublic static final int ActionBar_subtitleTextStyle = 6;\n\t\tpublic static final int ActionBar_title = 1;\n\t\tpublic static final int ActionBar_titleTextStyle = 5;\n\t\tpublic static final int[] ActionMenuItemView = { 0x0101013f };\n\t\tpublic static final int ActionMenuItemView_android_minWidth = 0;\n\t\tpublic static final int[] ActionMenuView = { };\n\t\tpublic static final int[] ActionMode = { 0x7f010001, 0x7f010007, 0x7f010008, 0x7f01000c, 0x7f01000e, 0x7f01001c };\n\t\tpublic static final int ActionMode_background = 3;\n\t\tpublic static final int ActionMode_backgroundSplit = 4;\n\t\tpublic static final int ActionMode_closeItemLayout = 5;\n\t\tpublic static final int ActionMode_height = 0;\n\t\tpublic static final int ActionMode_subtitleTextStyle = 2;\n\t\tpublic static final int ActionMode_titleTextStyle = 1;\n\t\tpublic static final int[] ActivityChooserView = { 0x7f01001d, 0x7f01001e };\n\t\tpublic static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 1;\n\t\tpublic static final int ActivityChooserView_initialActivityCount = 0;\n\t\tpublic static final int[] AlertDialog = { 0x010100f2, 0x7f01001f, 0x7f010020, 0x7f010021, 0x7f010022, 0x7f010023 };\n\t\tpublic static final int AlertDialog_android_layout = 0;\n\t\tpublic static final int AlertDialog_buttonPanelSideLayout = 1;\n\t\tpublic static final int AlertDialog_listItemLayout = 5;\n\t\tpublic static final int AlertDialog_listLayout = 2;\n\t\tpublic static final int AlertDialog_multiChoiceItemLayout = 3;\n\t\tpublic static final int AlertDialog_singleChoiceItemLayout = 4;\n\t\tpublic static final int[] AppCompatTextView = { 0x01010034, 0x7f010024 };\n\t\tpublic static final int AppCompatTextView_android_textAppearance = 0;\n\t\tpublic static final int AppCompatTextView_textAllCaps = 1;\n\t\tpublic static final int[] CompoundButton = { 0x01010107, 0x7f010025, 0x7f010026 };\n\t\tpublic static final int CompoundButton_android_button = 0;\n\t\tpublic static final int CompoundButton_buttonTint = 1;\n\t\tpublic static final int CompoundButton_buttonTintMode = 2;\n\t\tpublic static final int[] DrawerArrowToggle = { 0x7f010027, 0x7f010028, 0x7f010029, 0x7f01002a, 0x7f01002b, 0x7f01002c, 0x7f01002d, 0x7f01002e };\n\t\tpublic static final int DrawerArrowToggle_arrowHeadLength = 4;\n\t\tpublic static final int DrawerArrowToggle_arrowShaftLength = 5;\n\t\tpublic static final int DrawerArrowToggle_barLength = 6;\n\t\tpublic static final int DrawerArrowToggle_color = 0;\n\t\tpublic static final int DrawerArrowToggle_drawableSize = 2;\n\t\tpublic static final int DrawerArrowToggle_gapBetweenBars = 3;\n\t\tpublic static final int DrawerArrowToggle_spinBars = 1;\n\t\tpublic static final int DrawerArrowToggle_thickness = 7;\n\t\tpublic static final int[] GenericDraweeView = { 0x7f01002f, 0x7f010030, 0x7f010031, 0x7f010032, 0x7f010033, 0x7f010034, 0x7f010035, 0x7f010036, 0x7f010037, 0x7f010038, 0x7f010039, 0x7f01003a, 0x7f01003b, 0x7f01003c, 0x7f01003d, 0x7f01003e, 0x7f01003f, 0x7f010040, 0x7f010041, 0x7f010042, 0x7f010043, 0x7f010044, 0x7f010045, 0x7f010046 };\n\t\tpublic static final int GenericDraweeView_actualImageScaleType = 11;\n\t\tpublic static final int GenericDraweeView_backgroundImage = 12;\n\t\tpublic static final int GenericDraweeView_fadeDuration = 0;\n\t\tpublic static final int GenericDraweeView_failureImage = 6;\n\t\tpublic static final int GenericDraweeView_failureImageScaleType = 7;\n\t\tpublic static final int GenericDraweeView_overlayImage = 13;\n\t\tpublic static final int GenericDraweeView_placeholderImage = 2;\n\t\tpublic static final int GenericDraweeView_placeholderImageScaleType = 3;\n\t\tpublic static final int GenericDraweeView_pressedStateOverlayImage = 14;\n\t\tpublic static final int GenericDraweeView_progressBarAutoRotateInterval = 10;\n\t\tpublic static final int GenericDraweeView_progressBarImage = 8;\n\t\tpublic static final int GenericDraweeView_progressBarImageScaleType = 9;\n\t\tpublic static final int GenericDraweeView_retryImage = 4;\n\t\tpublic static final int GenericDraweeView_retryImageScaleType = 5;\n\t\tpublic static final int GenericDraweeView_roundAsCircle = 15;\n\t\tpublic static final int GenericDraweeView_roundBottomLeft = 20;\n\t\tpublic static final int GenericDraweeView_roundBottomRight = 19;\n\t\tpublic static final int GenericDraweeView_roundTopLeft = 17;\n\t\tpublic static final int GenericDraweeView_roundTopRight = 18;\n\t\tpublic static final int GenericDraweeView_roundWithOverlayColor = 21;\n\t\tpublic static final int GenericDraweeView_roundedCornerRadius = 16;\n\t\tpublic static final int GenericDraweeView_roundingBorderColor = 23;\n\t\tpublic static final int GenericDraweeView_roundingBorderWidth = 22;\n\t\tpublic static final int GenericDraweeView_viewAspectRatio = 1;\n\t\tpublic static final int[] LinearLayoutCompat = { 0x010100af, 0x010100c4, 0x01010126, 0x01010127, 0x01010128, 0x7f01000b, 0x7f010047, 0x7f010048, 0x7f010049 };\n\t\tpublic static final int[] LinearLayoutCompat_Layout = { 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 };\n\t\tpublic static final int LinearLayoutCompat_Layout_android_layout_gravity = 0;\n\t\tpublic static final int LinearLayoutCompat_Layout_android_layout_height = 2;\n\t\tpublic static final int LinearLayoutCompat_Layout_android_layout_weight = 3;\n\t\tpublic static final int LinearLayoutCompat_Layout_android_layout_width = 1;\n\t\tpublic static final int LinearLayoutCompat_android_baselineAligned = 2;\n\t\tpublic static final int LinearLayoutCompat_android_baselineAlignedChildIndex = 3;\n\t\tpublic static final int LinearLayoutCompat_android_gravity = 0;\n\t\tpublic static final int LinearLayoutCompat_android_orientation = 1;\n\t\tpublic static final int LinearLayoutCompat_android_weightSum = 4;\n\t\tpublic static final int LinearLayoutCompat_divider = 5;\n\t\tpublic static final int LinearLayoutCompat_dividerPadding = 8;\n\t\tpublic static final int LinearLayoutCompat_measureWithLargestChild = 6;\n\t\tpublic static final int LinearLayoutCompat_showDividers = 7;\n\t\tpublic static final int[] ListPopupWindow = { 0x010102ac, 0x010102ad };\n\t\tpublic static final int ListPopupWindow_android_dropDownHorizontalOffset = 0;\n\t\tpublic static final int ListPopupWindow_android_dropDownVerticalOffset = 1;\n\t\tpublic static final int[] MenuGroup = { 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, 0x010101df, 0x010101e0 };\n\t\tpublic static final int MenuGroup_android_checkableBehavior = 5;\n\t\tpublic static final int MenuGroup_android_enabled = 0;\n\t\tpublic static final int MenuGroup_android_id = 1;\n\t\tpublic static final int MenuGroup_android_menuCategory = 3;\n\t\tpublic static final int MenuGroup_android_orderInCategory = 4;\n\t\tpublic static final int MenuGroup_android_visible = 2;\n\t\tpublic static final int[] MenuItem = { 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f01004a, 0x7f01004b, 0x7f01004c, 0x7f01004d };\n\t\tpublic static final int MenuItem_actionLayout = 14;\n\t\tpublic static final int MenuItem_actionProviderClass = 16;\n\t\tpublic static final int MenuItem_actionViewClass = 15;\n\t\tpublic static final int MenuItem_android_alphabeticShortcut = 9;\n\t\tpublic static final int MenuItem_android_checkable = 11;\n\t\tpublic static final int MenuItem_android_checked = 3;\n\t\tpublic static final int MenuItem_android_enabled = 1;\n\t\tpublic static final int MenuItem_android_icon = 0;\n\t\tpublic static final int MenuItem_android_id = 2;\n\t\tpublic static final int MenuItem_android_menuCategory = 5;\n\t\tpublic static final int MenuItem_android_numericShortcut = 10;\n\t\tpublic static final int MenuItem_android_onClick = 12;\n\t\tpublic static final int MenuItem_android_orderInCategory = 6;\n\t\tpublic static final int MenuItem_android_title = 7;\n\t\tpublic static final int MenuItem_android_titleCondensed = 8;\n\t\tpublic static final int MenuItem_android_visible = 4;\n\t\tpublic static final int MenuItem_showAsAction = 13;\n\t\tpublic static final int[] MenuView = { 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x7f01004e };\n\t\tpublic static final int MenuView_android_headerBackground = 4;\n\t\tpublic static final int MenuView_android_horizontalDivider = 2;\n\t\tpublic static final int MenuView_android_itemBackground = 5;\n\t\tpublic static final int MenuView_android_itemIconDisabledAlpha = 6;\n\t\tpublic static final int MenuView_android_itemTextAppearance = 1;\n\t\tpublic static final int MenuView_android_verticalDivider = 3;\n\t\tpublic static final int MenuView_android_windowAnimationStyle = 0;\n\t\tpublic static final int MenuView_preserveIconSpacing = 7;\n\t\tpublic static final int[] PopupWindow = { 0x01010176, 0x7f01004f };\n\t\tpublic static final int[] PopupWindowBackgroundState = { 0x7f010050 };\n\t\tpublic static final int PopupWindowBackgroundState_state_above_anchor = 0;\n\t\tpublic static final int PopupWindow_android_popupBackground = 0;\n\t\tpublic static final int PopupWindow_overlapAnchor = 1;\n\t\tpublic static final int[] RecyclerView = { 0x010100c4, 0x7f010051, 0x7f010052, 0x7f010053, 0x7f010054 };\n\t\tpublic static final int RecyclerView_android_orientation = 0;\n\t\tpublic static final int RecyclerView_layoutManager = 1;\n\t\tpublic static final int RecyclerView_reverseLayout = 3;\n\t\tpublic static final int RecyclerView_spanCount = 2;\n\t\tpublic static final int RecyclerView_stackFromEnd = 4;\n\t\tpublic static final int[] SearchView = { 0x010100da, 0x0101011f, 0x01010220, 0x01010264, 0x7f010055, 0x7f010056, 0x7f010057, 0x7f010058, 0x7f010059, 0x7f01005a, 0x7f01005b, 0x7f01005c, 0x7f01005d, 0x7f01005e, 0x7f01005f, 0x7f010060, 0x7f010061 };\n\t\tpublic static final int SearchView_android_focusable = 0;\n\t\tpublic static final int SearchView_android_imeOptions = 3;\n\t\tpublic static final int SearchView_android_inputType = 2;\n\t\tpublic static final int SearchView_android_maxWidth = 1;\n\t\tpublic static final int SearchView_closeIcon = 8;\n\t\tpublic static final int SearchView_commitIcon = 13;\n\t\tpublic static final int SearchView_defaultQueryHint = 7;\n\t\tpublic static final int SearchView_goIcon = 9;\n\t\tpublic static final int SearchView_iconifiedByDefault = 5;\n\t\tpublic static final int SearchView_layout = 4;\n\t\tpublic static final int SearchView_queryBackground = 15;\n\t\tpublic static final int SearchView_queryHint = 6;\n\t\tpublic static final int SearchView_searchHintIcon = 11;\n\t\tpublic static final int SearchView_searchIcon = 10;\n\t\tpublic static final int SearchView_submitBackground = 16;\n\t\tpublic static final int SearchView_suggestionRowLayout = 14;\n\t\tpublic static final int SearchView_voiceIcon = 12;\n\t\tpublic static final int[] Spinner = { 0x01010176, 0x0101017b, 0x01010262, 0x7f01001b };\n\t\tpublic static final int Spinner_android_dropDownWidth = 2;\n\t\tpublic static final int Spinner_android_popupBackground = 0;\n\t\tpublic static final int Spinner_android_prompt = 1;\n\t\tpublic static final int Spinner_popupTheme = 3;\n\t\tpublic static final int[] SwitchCompat = { 0x01010124, 0x01010125, 0x01010142, 0x7f010062, 0x7f010063, 0x7f010064, 0x7f010065, 0x7f010066, 0x7f010067, 0x7f010068 };\n\t\tpublic static final int SwitchCompat_android_textOff = 1;\n\t\tpublic static final int SwitchCompat_android_textOn = 0;\n\t\tpublic static final int SwitchCompat_android_thumb = 2;\n\t\tpublic static final int SwitchCompat_showText = 9;\n\t\tpublic static final int SwitchCompat_splitTrack = 8;\n\t\tpublic static final int SwitchCompat_switchMinWidth = 6;\n\t\tpublic static final int SwitchCompat_switchPadding = 7;\n\t\tpublic static final int SwitchCompat_switchTextAppearance = 5;\n\t\tpublic static final int SwitchCompat_thumbTextPadding = 4;\n\t\tpublic static final int SwitchCompat_track = 3;\n\t\tpublic static final int[] TextAppearance = { 0x01010095, 0x01010096, 0x01010097, 0x01010098, 0x7f010024 };\n\t\tpublic static final int TextAppearance_android_textColor = 3;\n\t\tpublic static final int TextAppearance_android_textSize = 0;\n\t\tpublic static final int TextAppearance_android_textStyle = 2;\n\t\tpublic static final int TextAppearance_android_typeface = 1;\n\t\tpublic static final int TextAppearance_textAllCaps = 4;\n\t\tpublic static final int[] Theme = { 0x01010057, 0x010100ae, 0x7f010069, 0x7f01006a, 0x7f01006b, 0x7f01006c, 0x7f01006d, 0x7f01006e, 0x7f01006f, 0x7f010070, 0x7f010071, 0x7f010072, 0x7f010073, 0x7f010074, 0x7f010075, 0x7f010076, 0x7f010077, 0x7f010078, 0x7f010079, 0x7f01007a, 0x7f01007b, 0x7f01007c, 0x7f01007d, 0x7f01007e, 0x7f01007f, 0x7f010080, 0x7f010081, 0x7f010082, 0x7f010083, 0x7f010084, 0x7f010085, 0x7f010086, 0x7f010087, 0x7f010088, 0x7f010089, 0x7f01008a, 0x7f01008b, 0x7f01008c, 0x7f01008d, 0x7f01008e, 0x7f01008f, 0x7f010090, 0x7f010091, 0x7f010092, 0x7f010093, 0x7f010094, 0x7f010095, 0x7f010096, 0x7f010097, 0x7f010098, 0x7f010099, 0x7f01009a, 0x7f01009b, 0x7f01009c, 0x7f01009d, 0x7f01009e, 0x7f01009f, 0x7f0100a0, 0x7f0100a1, 0x7f0100a2, 0x7f0100a3, 0x7f0100a4, 0x7f0100a5, 0x7f0100a6, 0x7f0100a7, 0x7f0100a8, 0x7f0100a9, 0x7f0100aa, 0x7f0100ab, 0x7f0100ac, 0x7f0100ad, 0x7f0100ae, 0x7f0100af, 0x7f0100b0, 0x7f0100b1, 0x7f0100b2, 0x7f0100b3, 0x7f0100b4, 0x7f0100b5, 0x7f0100b6, 0x7f0100b7, 0x7f0100b8, 0x7f0100b9, 0x7f0100ba, 0x7f0100bb, 0x7f0100bc, 0x7f0100bd, 0x7f0100be, 0x7f0100bf, 0x7f0100c0, 0x7f0100c1, 0x7f0100c2, 0x7f0100c3, 0x7f0100c4, 0x7f0100c5, 0x7f0100c6, 0x7f0100c7, 0x7f0100c8, 0x7f0100c9, 0x7f0100ca, 0x7f0100cb, 0x7f0100cc, 0x7f0100cd, 0x7f0100ce, 0x7f0100cf, 0x7f0100d0, 0x7f0100d1, 0x7f0100d2 };\n\t\tpublic static final int Theme_actionBarDivider = 23;\n\t\tpublic static final int Theme_actionBarItemBackground = 24;\n\t\tpublic static final int Theme_actionBarPopupTheme = 17;\n\t\tpublic static final int Theme_actionBarSize = 22;\n\t\tpublic static final int Theme_actionBarSplitStyle = 19;\n\t\tpublic static final int Theme_actionBarStyle = 18;\n\t\tpublic static final int Theme_actionBarTabBarStyle = 13;\n\t\tpublic static final int Theme_actionBarTabStyle = 12;\n\t\tpublic static final int Theme_actionBarTabTextStyle = 14;\n\t\tpublic static final int Theme_actionBarTheme = 20;\n\t\tpublic static final int Theme_actionBarWidgetTheme = 21;\n\t\tpublic static final int Theme_actionButtonStyle = 49;\n\t\tpublic static final int Theme_actionDropDownStyle = 45;\n\t\tpublic static final int Theme_actionMenuTextAppearance = 25;\n\t\tpublic static final int Theme_actionMenuTextColor = 26;\n\t\tpublic static final int Theme_actionModeBackground = 29;\n\t\tpublic static final int Theme_actionModeCloseButtonStyle = 28;\n\t\tpublic static final int Theme_actionModeCloseDrawable = 31;\n\t\tpublic static final int Theme_actionModeCopyDrawable = 33;\n\t\tpublic static final int Theme_actionModeCutDrawable = 32;\n\t\tpublic static final int Theme_actionModeFindDrawable = 37;\n\t\tpublic static final int Theme_actionModePasteDrawable = 34;\n\t\tpublic static final int Theme_actionModePopupWindowStyle = 39;\n\t\tpublic static final int Theme_actionModeSelectAllDrawable = 35;\n\t\tpublic static final int Theme_actionModeShareDrawable = 36;\n\t\tpublic static final int Theme_actionModeSplitBackground = 30;\n\t\tpublic static final int Theme_actionModeStyle = 27;\n\t\tpublic static final int Theme_actionModeWebSearchDrawable = 38;\n\t\tpublic static final int Theme_actionOverflowButtonStyle = 15;\n\t\tpublic static final int Theme_actionOverflowMenuStyle = 16;\n\t\tpublic static final int Theme_activityChooserViewStyle = 57;\n\t\tpublic static final int Theme_alertDialogButtonGroupStyle = 91;\n\t\tpublic static final int Theme_alertDialogCenterButtons = 92;\n\t\tpublic static final int Theme_alertDialogStyle = 90;\n\t\tpublic static final int Theme_alertDialogTheme = 93;\n\t\tpublic static final int Theme_android_windowAnimationStyle = 1;\n\t\tpublic static final int Theme_android_windowIsFloating = 0;\n\t\tpublic static final int Theme_autoCompleteTextViewStyle = 98;\n\t\tpublic static final int Theme_borderlessButtonStyle = 54;\n\t\tpublic static final int Theme_buttonBarButtonStyle = 51;\n\t\tpublic static final int Theme_buttonBarNegativeButtonStyle = 96;\n\t\tpublic static final int Theme_buttonBarNeutralButtonStyle = 97;\n\t\tpublic static final int Theme_buttonBarPositiveButtonStyle = 95;\n\t\tpublic static final int Theme_buttonBarStyle = 50;\n\t\tpublic static final int Theme_buttonStyle = 99;\n\t\tpublic static final int Theme_buttonStyleSmall = 100;\n\t\tpublic static final int Theme_checkboxStyle = 101;\n\t\tpublic static final int Theme_checkedTextViewStyle = 102;\n\t\tpublic static final int Theme_colorAccent = 83;\n\t\tpublic static final int Theme_colorButtonNormal = 87;\n\t\tpublic static final int Theme_colorControlActivated = 85;\n\t\tpublic static final int Theme_colorControlHighlight = 86;\n\t\tpublic static final int Theme_colorControlNormal = 84;\n\t\tpublic static final int Theme_colorPrimary = 81;\n\t\tpublic static final int Theme_colorPrimaryDark = 82;\n\t\tpublic static final int Theme_colorSwitchThumbNormal = 88;\n\t\tpublic static final int Theme_controlBackground = 89;\n\t\tpublic static final int Theme_dialogPreferredPadding = 43;\n\t\tpublic static final int Theme_dialogTheme = 42;\n\t\tpublic static final int Theme_dividerHorizontal = 56;\n\t\tpublic static final int Theme_dividerVertical = 55;\n\t\tpublic static final int Theme_dropDownListViewStyle = 73;\n\t\tpublic static final int Theme_dropdownListPreferredItemHeight = 46;\n\t\tpublic static final int Theme_editTextBackground = 63;\n\t\tpublic static final int Theme_editTextColor = 62;\n\t\tpublic static final int Theme_editTextStyle = 103;\n\t\tpublic static final int Theme_homeAsUpIndicator = 48;\n\t\tpublic static final int Theme_listChoiceBackgroundIndicator = 80;\n\t\tpublic static final int Theme_listDividerAlertDialog = 44;\n\t\tpublic static final int Theme_listPopupWindowStyle = 74;\n\t\tpublic static final int Theme_listPreferredItemHeight = 68;\n\t\tpublic static final int Theme_listPreferredItemHeightLarge = 70;\n\t\tpublic static final int Theme_listPreferredItemHeightSmall = 69;\n\t\tpublic static final int Theme_listPreferredItemPaddingLeft = 71;\n\t\tpublic static final int Theme_listPreferredItemPaddingRight = 72;\n\t\tpublic static final int Theme_panelBackground = 77;\n\t\tpublic static final int Theme_panelMenuListTheme = 79;\n\t\tpublic static final int Theme_panelMenuListWidth = 78;\n\t\tpublic static final int Theme_popupMenuStyle = 60;\n\t\tpublic static final int Theme_popupWindowStyle = 61;\n\t\tpublic static final int Theme_radioButtonStyle = 104;\n\t\tpublic static final int Theme_ratingBarStyle = 105;\n\t\tpublic static final int Theme_searchViewStyle = 67;\n\t\tpublic static final int Theme_selectableItemBackground = 52;\n\t\tpublic static final int Theme_selectableItemBackgroundBorderless = 53;\n\t\tpublic static final int Theme_spinnerDropDownItemStyle = 47;\n\t\tpublic static final int Theme_spinnerStyle = 106;\n\t\tpublic static final int Theme_switchStyle = 107;\n\t\tpublic static final int Theme_textAppearanceLargePopupMenu = 40;\n\t\tpublic static final int Theme_textAppearanceListItem = 75;\n\t\tpublic static final int Theme_textAppearanceListItemSmall = 76;\n\t\tpublic static final int Theme_textAppearanceSearchResultSubtitle = 65;\n\t\tpublic static final int Theme_textAppearanceSearchResultTitle = 64;\n\t\tpublic static final int Theme_textAppearanceSmallPopupMenu = 41;\n\t\tpublic static final int Theme_textColorAlertDialogListItem = 94;\n\t\tpublic static final int Theme_textColorSearchUrl = 66;\n\t\tpublic static final int Theme_toolbarNavigationButtonStyle = 59;\n\t\tpublic static final int Theme_toolbarStyle = 58;\n\t\tpublic static final int Theme_windowActionBar = 2;\n\t\tpublic static final int Theme_windowActionBarOverlay = 4;\n\t\tpublic static final int Theme_windowActionModeOverlay = 5;\n\t\tpublic static final int Theme_windowFixedHeightMajor = 9;\n\t\tpublic static final int Theme_windowFixedHeightMinor = 7;\n\t\tpublic static final int Theme_windowFixedWidthMajor = 6;\n\t\tpublic static final int Theme_windowFixedWidthMinor = 8;\n\t\tpublic static final int Theme_windowMinWidthMajor = 10;\n\t\tpublic static final int Theme_windowMinWidthMinor = 11;\n\t\tpublic static final int Theme_windowNoTitle = 3;\n\t\tpublic static final int[] Toolbar = { 0x010100af, 0x01010140, 0x7f010003, 0x7f010006, 0x7f01000a, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001b, 0x7f0100d3, 0x7f0100d4, 0x7f0100d5, 0x7f0100d6, 0x7f0100d7, 0x7f0100d8, 0x7f0100d9, 0x7f0100da, 0x7f0100db, 0x7f0100dc, 0x7f0100dd, 0x7f0100de, 0x7f0100df, 0x7f0100e0, 0x7f0100e1 };\n\t\tpublic static final int Toolbar_android_gravity = 0;\n\t\tpublic static final int Toolbar_android_minHeight = 1;\n\t\tpublic static final int Toolbar_collapseContentDescription = 19;\n\t\tpublic static final int Toolbar_collapseIcon = 18;\n\t\tpublic static final int Toolbar_contentInsetEnd = 6;\n\t\tpublic static final int Toolbar_contentInsetLeft = 7;\n\t\tpublic static final int Toolbar_contentInsetRight = 8;\n\t\tpublic static final int Toolbar_contentInsetStart = 5;\n\t\tpublic static final int Toolbar_logo = 4;\n\t\tpublic static final int Toolbar_logoDescription = 22;\n\t\tpublic static final int Toolbar_maxButtonHeight = 17;\n\t\tpublic static final int Toolbar_navigationContentDescription = 21;\n\t\tpublic static final int Toolbar_navigationIcon = 20;\n\t\tpublic static final int Toolbar_popupTheme = 9;\n\t\tpublic static final int Toolbar_subtitle = 3;\n\t\tpublic static final int Toolbar_subtitleTextAppearance = 11;\n\t\tpublic static final int Toolbar_subtitleTextColor = 24;\n\t\tpublic static final int Toolbar_title = 2;\n\t\tpublic static final int Toolbar_titleMarginBottom = 16;\n\t\tpublic static final int Toolbar_titleMarginEnd = 14;\n\t\tpublic static final int Toolbar_titleMarginStart = 13;\n\t\tpublic static final int Toolbar_titleMarginTop = 15;\n\t\tpublic static final int Toolbar_titleMargins = 12;\n\t\tpublic static final int Toolbar_titleTextAppearance = 10;\n\t\tpublic static final int Toolbar_titleTextColor = 23;\n\t\tpublic static final int[] View = { 0x01010000, 0x010100da, 0x7f0100e2, 0x7f0100e3, 0x7f0100e4 };\n\t\tpublic static final int[] ViewBackgroundHelper = { 0x010100d4, 0x7f0100e5, 0x7f0100e6 };\n\t\tpublic static final int ViewBackgroundHelper_android_background = 0;\n\t\tpublic static final int ViewBackgroundHelper_backgroundTint = 1;\n\t\tpublic static final int ViewBackgroundHelper_backgroundTintMode = 2;\n\t\tpublic static final int[] ViewStubCompat = { 0x010100d0, 0x010100f2, 0x010100f3 };\n\t\tpublic static final int ViewStubCompat_android_id = 0;\n\t\tpublic static final int ViewStubCompat_android_inflatedId = 2;\n\t\tpublic static final int ViewStubCompat_android_layout = 1;\n\t\tpublic static final int View_android_focusable = 1;\n\t\tpublic static final int View_android_theme = 0;\n\t\tpublic static final int View_paddingEnd = 3;\n\t\tpublic static final int View_paddingStart = 2;\n\t\tpublic static final int View_theme = 4;\n\t}\n\tpublic static final class xml {\n\t\tpublic static final int preferences = 0x7f060000;\n\t}\n}\n"
  },
  {
    "path": "android/app/build/generated/source/r/debug/com/goreact/R.java",
    "content": "/* AUTO-GENERATED FILE.  DO NOT MODIFY.\n *\n * This class was automatically generated by the\n * aapt tool from the resource data it found.  It\n * should not be modified by hand.\n */\n\npackage com.goreact;\n\npublic final class R {\n    public static final class anim {\n        public static final int abc_fade_in=0x7f050000;\n        public static final int abc_fade_out=0x7f050001;\n        public static final int abc_grow_fade_in_from_bottom=0x7f050002;\n        public static final int abc_popup_enter=0x7f050003;\n        public static final int abc_popup_exit=0x7f050004;\n        public static final int abc_shrink_fade_out_from_bottom=0x7f050005;\n        public static final int abc_slide_in_bottom=0x7f050006;\n        public static final int abc_slide_in_top=0x7f050007;\n        public static final int abc_slide_out_bottom=0x7f050008;\n        public static final int abc_slide_out_top=0x7f050009;\n        public static final int catalyst_push_up_in=0x7f05000a;\n        public static final int catalyst_push_up_out=0x7f05000b;\n        public static final int slide_down=0x7f05000c;\n        public static final int slide_up=0x7f05000d;\n    }\n    public static final class attr {\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int actionBarDivider=0x7f01007e;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int actionBarItemBackground=0x7f01007f;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int actionBarPopupTheme=0x7f010078;\n        /** <p>May be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n<p>May be one of the following constant values.</p>\n<table>\n<colgroup align=\"left\" />\n<colgroup align=\"left\" />\n<colgroup align=\"left\" />\n<tr><th>Constant</th><th>Value</th><th>Description</th></tr>\n<tr><td><code>wrap_content</code></td><td>0</td><td></td></tr>\n</table>\n         */\n        public static final int actionBarSize=0x7f01007d;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int actionBarSplitStyle=0x7f01007a;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int actionBarStyle=0x7f010079;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int actionBarTabBarStyle=0x7f010074;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int actionBarTabStyle=0x7f010073;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int actionBarTabTextStyle=0x7f010075;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int actionBarTheme=0x7f01007b;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int actionBarWidgetTheme=0x7f01007c;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int actionButtonStyle=0x7f010098;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int actionDropDownStyle=0x7f010094;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int actionLayout=0x7f01004b;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int actionMenuTextAppearance=0x7f010080;\n        /** <p>May be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n<p>May be a color value, in the form of \"<code>#<i>rgb</i></code>\", \"<code>#<i>argb</i></code>\",\n\"<code>#<i>rrggbb</i></code>\", or \"<code>#<i>aarrggbb</i></code>\".\n         */\n        public static final int actionMenuTextColor=0x7f010081;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int actionModeBackground=0x7f010084;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int actionModeCloseButtonStyle=0x7f010083;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int actionModeCloseDrawable=0x7f010086;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int actionModeCopyDrawable=0x7f010088;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int actionModeCutDrawable=0x7f010087;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int actionModeFindDrawable=0x7f01008c;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int actionModePasteDrawable=0x7f010089;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int actionModePopupWindowStyle=0x7f01008e;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int actionModeSelectAllDrawable=0x7f01008a;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int actionModeShareDrawable=0x7f01008b;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int actionModeSplitBackground=0x7f010085;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int actionModeStyle=0x7f010082;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int actionModeWebSearchDrawable=0x7f01008d;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int actionOverflowButtonStyle=0x7f010076;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int actionOverflowMenuStyle=0x7f010077;\n        /** <p>Must be a string value, using '\\\\;' to escape characters such as '\\\\n' or '\\\\uxxxx' for a unicode character.\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int actionProviderClass=0x7f01004d;\n        /** <p>Must be a string value, using '\\\\;' to escape characters such as '\\\\n' or '\\\\uxxxx' for a unicode character.\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int actionViewClass=0x7f01004c;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int activityChooserViewStyle=0x7f0100a0;\n        /** <p>Must be one of the following constant values.</p>\n<table>\n<colgroup align=\"left\" />\n<colgroup align=\"left\" />\n<colgroup align=\"left\" />\n<tr><th>Constant</th><th>Value</th><th>Description</th></tr>\n<tr><td><code>none</code></td><td>-1</td><td></td></tr>\n<tr><td><code>fitXY</code></td><td>0</td><td></td></tr>\n<tr><td><code>fitStart</code></td><td>1</td><td></td></tr>\n<tr><td><code>fitCenter</code></td><td>2</td><td></td></tr>\n<tr><td><code>fitEnd</code></td><td>3</td><td></td></tr>\n<tr><td><code>center</code></td><td>4</td><td></td></tr>\n<tr><td><code>centerInside</code></td><td>5</td><td></td></tr>\n<tr><td><code>centerCrop</code></td><td>6</td><td></td></tr>\n<tr><td><code>focusCrop</code></td><td>7</td><td></td></tr>\n</table>\n         */\n        public static final int actualImageScaleType=0x7f01003a;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int alertDialogButtonGroupStyle=0x7f0100c2;\n        /** <p>Must be a boolean value, either \"<code>true</code>\" or \"<code>false</code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int alertDialogCenterButtons=0x7f0100c3;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int alertDialogStyle=0x7f0100c1;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int alertDialogTheme=0x7f0100c4;\n        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int arrowHeadLength=0x7f01002b;\n        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int arrowShaftLength=0x7f01002c;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int autoCompleteTextViewStyle=0x7f0100c9;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int background=0x7f01000c;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int backgroundImage=0x7f01003b;\n        /** <p>May be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n<p>May be a color value, in the form of \"<code>#<i>rgb</i></code>\", \"<code>#<i>argb</i></code>\",\n\"<code>#<i>rrggbb</i></code>\", or \"<code>#<i>aarrggbb</i></code>\".\n         */\n        public static final int backgroundSplit=0x7f01000e;\n        /** <p>May be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n<p>May be a color value, in the form of \"<code>#<i>rgb</i></code>\", \"<code>#<i>argb</i></code>\",\n\"<code>#<i>rrggbb</i></code>\", or \"<code>#<i>aarrggbb</i></code>\".\n         */\n        public static final int backgroundStacked=0x7f01000d;\n        /** <p>Must be a color value, in the form of \"<code>#<i>rgb</i></code>\", \"<code>#<i>argb</i></code>\",\n\"<code>#<i>rrggbb</i></code>\", or \"<code>#<i>aarrggbb</i></code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int backgroundTint=0x7f0100e5;\n        /** <p>Must be one of the following constant values.</p>\n<table>\n<colgroup align=\"left\" />\n<colgroup align=\"left\" />\n<colgroup align=\"left\" />\n<tr><th>Constant</th><th>Value</th><th>Description</th></tr>\n<tr><td><code>src_over</code></td><td>3</td><td></td></tr>\n<tr><td><code>src_in</code></td><td>5</td><td></td></tr>\n<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>\n<tr><td><code>multiply</code></td><td>14</td><td></td></tr>\n<tr><td><code>screen</code></td><td>15</td><td></td></tr>\n</table>\n         */\n        public static final int backgroundTintMode=0x7f0100e6;\n        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int barLength=0x7f01002d;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int borderlessButtonStyle=0x7f01009d;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int buttonBarButtonStyle=0x7f01009a;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int buttonBarNegativeButtonStyle=0x7f0100c7;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int buttonBarNeutralButtonStyle=0x7f0100c8;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int buttonBarPositiveButtonStyle=0x7f0100c6;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int buttonBarStyle=0x7f010099;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int buttonPanelSideLayout=0x7f01001f;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int buttonStyle=0x7f0100ca;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int buttonStyleSmall=0x7f0100cb;\n        /** <p>Must be a color value, in the form of \"<code>#<i>rgb</i></code>\", \"<code>#<i>argb</i></code>\",\n\"<code>#<i>rrggbb</i></code>\", or \"<code>#<i>aarrggbb</i></code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int buttonTint=0x7f010025;\n        /** <p>Must be one of the following constant values.</p>\n<table>\n<colgroup align=\"left\" />\n<colgroup align=\"left\" />\n<colgroup align=\"left\" />\n<tr><th>Constant</th><th>Value</th><th>Description</th></tr>\n<tr><td><code>src_over</code></td><td>3</td><td></td></tr>\n<tr><td><code>src_in</code></td><td>5</td><td></td></tr>\n<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>\n<tr><td><code>multiply</code></td><td>14</td><td></td></tr>\n<tr><td><code>screen</code></td><td>15</td><td></td></tr>\n</table>\n         */\n        public static final int buttonTintMode=0x7f010026;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int checkboxStyle=0x7f0100cc;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int checkedTextViewStyle=0x7f0100cd;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int closeIcon=0x7f010059;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int closeItemLayout=0x7f01001c;\n        /** <p>Must be a string value, using '\\\\;' to escape characters such as '\\\\n' or '\\\\uxxxx' for a unicode character.\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int collapseContentDescription=0x7f0100dc;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int collapseIcon=0x7f0100db;\n        /** <p>Must be a color value, in the form of \"<code>#<i>rgb</i></code>\", \"<code>#<i>argb</i></code>\",\n\"<code>#<i>rrggbb</i></code>\", or \"<code>#<i>aarrggbb</i></code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int color=0x7f010027;\n        /** <p>Must be a color value, in the form of \"<code>#<i>rgb</i></code>\", \"<code>#<i>argb</i></code>\",\n\"<code>#<i>rrggbb</i></code>\", or \"<code>#<i>aarrggbb</i></code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int colorAccent=0x7f0100ba;\n        /** <p>Must be a color value, in the form of \"<code>#<i>rgb</i></code>\", \"<code>#<i>argb</i></code>\",\n\"<code>#<i>rrggbb</i></code>\", or \"<code>#<i>aarrggbb</i></code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int colorButtonNormal=0x7f0100be;\n        /** <p>Must be a color value, in the form of \"<code>#<i>rgb</i></code>\", \"<code>#<i>argb</i></code>\",\n\"<code>#<i>rrggbb</i></code>\", or \"<code>#<i>aarrggbb</i></code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int colorControlActivated=0x7f0100bc;\n        /** <p>Must be a color value, in the form of \"<code>#<i>rgb</i></code>\", \"<code>#<i>argb</i></code>\",\n\"<code>#<i>rrggbb</i></code>\", or \"<code>#<i>aarrggbb</i></code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int colorControlHighlight=0x7f0100bd;\n        /** <p>Must be a color value, in the form of \"<code>#<i>rgb</i></code>\", \"<code>#<i>argb</i></code>\",\n\"<code>#<i>rrggbb</i></code>\", or \"<code>#<i>aarrggbb</i></code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int colorControlNormal=0x7f0100bb;\n        /** <p>Must be a color value, in the form of \"<code>#<i>rgb</i></code>\", \"<code>#<i>argb</i></code>\",\n\"<code>#<i>rrggbb</i></code>\", or \"<code>#<i>aarrggbb</i></code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int colorPrimary=0x7f0100b8;\n        /** <p>Must be a color value, in the form of \"<code>#<i>rgb</i></code>\", \"<code>#<i>argb</i></code>\",\n\"<code>#<i>rrggbb</i></code>\", or \"<code>#<i>aarrggbb</i></code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int colorPrimaryDark=0x7f0100b9;\n        /** <p>Must be a color value, in the form of \"<code>#<i>rgb</i></code>\", \"<code>#<i>argb</i></code>\",\n\"<code>#<i>rrggbb</i></code>\", or \"<code>#<i>aarrggbb</i></code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int colorSwitchThumbNormal=0x7f0100bf;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int commitIcon=0x7f01005e;\n        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int contentInsetEnd=0x7f010017;\n        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int contentInsetLeft=0x7f010018;\n        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int contentInsetRight=0x7f010019;\n        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int contentInsetStart=0x7f010016;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int controlBackground=0x7f0100c0;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int customNavigationLayout=0x7f01000f;\n        /** <p>Must be a string value, using '\\\\;' to escape characters such as '\\\\n' or '\\\\uxxxx' for a unicode character.\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int defaultQueryHint=0x7f010058;\n        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int dialogPreferredPadding=0x7f010092;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int dialogTheme=0x7f010091;\n        /** <p>Must be one or more (separated by '|') of the following constant values.</p>\n<table>\n<colgroup align=\"left\" />\n<colgroup align=\"left\" />\n<colgroup align=\"left\" />\n<tr><th>Constant</th><th>Value</th><th>Description</th></tr>\n<tr><td><code>none</code></td><td>0</td><td></td></tr>\n<tr><td><code>useLogo</code></td><td>0x1</td><td></td></tr>\n<tr><td><code>showHome</code></td><td>0x2</td><td></td></tr>\n<tr><td><code>homeAsUp</code></td><td>0x4</td><td></td></tr>\n<tr><td><code>showTitle</code></td><td>0x8</td><td></td></tr>\n<tr><td><code>showCustom</code></td><td>0x10</td><td></td></tr>\n<tr><td><code>disableHome</code></td><td>0x20</td><td></td></tr>\n</table>\n         */\n        public static final int displayOptions=0x7f010005;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int divider=0x7f01000b;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int dividerHorizontal=0x7f01009f;\n        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int dividerPadding=0x7f010049;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int dividerVertical=0x7f01009e;\n        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int drawableSize=0x7f010029;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int drawerArrowStyle=0x7f010000;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int dropDownListViewStyle=0x7f0100b0;\n        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int dropdownListPreferredItemHeight=0x7f010095;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int editTextBackground=0x7f0100a6;\n        /** <p>May be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n<p>May be a color value, in the form of \"<code>#<i>rgb</i></code>\", \"<code>#<i>argb</i></code>\",\n\"<code>#<i>rrggbb</i></code>\", or \"<code>#<i>aarrggbb</i></code>\".\n         */\n        public static final int editTextColor=0x7f0100a5;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int editTextStyle=0x7f0100ce;\n        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int elevation=0x7f01001a;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int expandActivityOverflowButtonDrawable=0x7f01001e;\n        /** <p>Must be an integer value, such as \"<code>100</code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int fadeDuration=0x7f01002f;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int failureImage=0x7f010035;\n        /** <p>Must be one of the following constant values.</p>\n<table>\n<colgroup align=\"left\" />\n<colgroup align=\"left\" />\n<colgroup align=\"left\" />\n<tr><th>Constant</th><th>Value</th><th>Description</th></tr>\n<tr><td><code>none</code></td><td>-1</td><td></td></tr>\n<tr><td><code>fitXY</code></td><td>0</td><td></td></tr>\n<tr><td><code>fitStart</code></td><td>1</td><td></td></tr>\n<tr><td><code>fitCenter</code></td><td>2</td><td></td></tr>\n<tr><td><code>fitEnd</code></td><td>3</td><td></td></tr>\n<tr><td><code>center</code></td><td>4</td><td></td></tr>\n<tr><td><code>centerInside</code></td><td>5</td><td></td></tr>\n<tr><td><code>centerCrop</code></td><td>6</td><td></td></tr>\n<tr><td><code>focusCrop</code></td><td>7</td><td></td></tr>\n</table>\n         */\n        public static final int failureImageScaleType=0x7f010036;\n        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int gapBetweenBars=0x7f01002a;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int goIcon=0x7f01005a;\n        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int height=0x7f010001;\n        /** <p>Must be a boolean value, either \"<code>true</code>\" or \"<code>false</code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int hideOnContentScroll=0x7f010015;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int homeAsUpIndicator=0x7f010097;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int homeLayout=0x7f010010;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int icon=0x7f010009;\n        /** <p>Must be a boolean value, either \"<code>true</code>\" or \"<code>false</code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int iconifiedByDefault=0x7f010056;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int indeterminateProgressStyle=0x7f010012;\n        /** <p>Must be a string value, using '\\\\;' to escape characters such as '\\\\n' or '\\\\uxxxx' for a unicode character.\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int initialActivityCount=0x7f01001d;\n        /** <p>Must be a boolean value, either \"<code>true</code>\" or \"<code>false</code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int isLightTheme=0x7f010002;\n        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int itemPadding=0x7f010014;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int layout=0x7f010055;\n        /** <p>Must be a string value, using '\\\\;' to escape characters such as '\\\\n' or '\\\\uxxxx' for a unicode character.\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int layoutManager=0x7f010051;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int listChoiceBackgroundIndicator=0x7f0100b7;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int listDividerAlertDialog=0x7f010093;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int listItemLayout=0x7f010023;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int listLayout=0x7f010020;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int listPopupWindowStyle=0x7f0100b1;\n        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int listPreferredItemHeight=0x7f0100ab;\n        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int listPreferredItemHeightLarge=0x7f0100ad;\n        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int listPreferredItemHeightSmall=0x7f0100ac;\n        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int listPreferredItemPaddingLeft=0x7f0100ae;\n        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int listPreferredItemPaddingRight=0x7f0100af;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int logo=0x7f01000a;\n        /** <p>Must be a string value, using '\\\\;' to escape characters such as '\\\\n' or '\\\\uxxxx' for a unicode character.\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int logoDescription=0x7f0100df;\n        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int maxButtonHeight=0x7f0100da;\n        /** <p>Must be a boolean value, either \"<code>true</code>\" or \"<code>false</code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int measureWithLargestChild=0x7f010047;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int multiChoiceItemLayout=0x7f010021;\n        /** <p>Must be a string value, using '\\\\;' to escape characters such as '\\\\n' or '\\\\uxxxx' for a unicode character.\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int navigationContentDescription=0x7f0100de;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int navigationIcon=0x7f0100dd;\n        /** <p>Must be one of the following constant values.</p>\n<table>\n<colgroup align=\"left\" />\n<colgroup align=\"left\" />\n<colgroup align=\"left\" />\n<tr><th>Constant</th><th>Value</th><th>Description</th></tr>\n<tr><td><code>normal</code></td><td>0</td><td></td></tr>\n<tr><td><code>listMode</code></td><td>1</td><td></td></tr>\n<tr><td><code>tabMode</code></td><td>2</td><td></td></tr>\n</table>\n         */\n        public static final int navigationMode=0x7f010004;\n        /** <p>Must be a boolean value, either \"<code>true</code>\" or \"<code>false</code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int overlapAnchor=0x7f01004f;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int overlayImage=0x7f01003c;\n        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int paddingEnd=0x7f0100e3;\n        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int paddingStart=0x7f0100e2;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int panelBackground=0x7f0100b4;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int panelMenuListTheme=0x7f0100b6;\n        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int panelMenuListWidth=0x7f0100b5;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int placeholderImage=0x7f010031;\n        /** <p>Must be one of the following constant values.</p>\n<table>\n<colgroup align=\"left\" />\n<colgroup align=\"left\" />\n<colgroup align=\"left\" />\n<tr><th>Constant</th><th>Value</th><th>Description</th></tr>\n<tr><td><code>none</code></td><td>-1</td><td></td></tr>\n<tr><td><code>fitXY</code></td><td>0</td><td></td></tr>\n<tr><td><code>fitStart</code></td><td>1</td><td></td></tr>\n<tr><td><code>fitCenter</code></td><td>2</td><td></td></tr>\n<tr><td><code>fitEnd</code></td><td>3</td><td></td></tr>\n<tr><td><code>center</code></td><td>4</td><td></td></tr>\n<tr><td><code>centerInside</code></td><td>5</td><td></td></tr>\n<tr><td><code>centerCrop</code></td><td>6</td><td></td></tr>\n<tr><td><code>focusCrop</code></td><td>7</td><td></td></tr>\n</table>\n         */\n        public static final int placeholderImageScaleType=0x7f010032;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int popupMenuStyle=0x7f0100a3;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int popupTheme=0x7f01001b;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int popupWindowStyle=0x7f0100a4;\n        /** <p>Must be a boolean value, either \"<code>true</code>\" or \"<code>false</code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int preserveIconSpacing=0x7f01004e;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int pressedStateOverlayImage=0x7f01003d;\n        /** <p>Must be an integer value, such as \"<code>100</code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int progressBarAutoRotateInterval=0x7f010039;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int progressBarImage=0x7f010037;\n        /** <p>Must be one of the following constant values.</p>\n<table>\n<colgroup align=\"left\" />\n<colgroup align=\"left\" />\n<colgroup align=\"left\" />\n<tr><th>Constant</th><th>Value</th><th>Description</th></tr>\n<tr><td><code>none</code></td><td>-1</td><td></td></tr>\n<tr><td><code>fitXY</code></td><td>0</td><td></td></tr>\n<tr><td><code>fitStart</code></td><td>1</td><td></td></tr>\n<tr><td><code>fitCenter</code></td><td>2</td><td></td></tr>\n<tr><td><code>fitEnd</code></td><td>3</td><td></td></tr>\n<tr><td><code>center</code></td><td>4</td><td></td></tr>\n<tr><td><code>centerInside</code></td><td>5</td><td></td></tr>\n<tr><td><code>centerCrop</code></td><td>6</td><td></td></tr>\n<tr><td><code>focusCrop</code></td><td>7</td><td></td></tr>\n</table>\n         */\n        public static final int progressBarImageScaleType=0x7f010038;\n        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int progressBarPadding=0x7f010013;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int progressBarStyle=0x7f010011;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int queryBackground=0x7f010060;\n        /** <p>Must be a string value, using '\\\\;' to escape characters such as '\\\\n' or '\\\\uxxxx' for a unicode character.\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int queryHint=0x7f010057;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int radioButtonStyle=0x7f0100cf;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int ratingBarStyle=0x7f0100d0;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int retryImage=0x7f010033;\n        /** <p>Must be one of the following constant values.</p>\n<table>\n<colgroup align=\"left\" />\n<colgroup align=\"left\" />\n<colgroup align=\"left\" />\n<tr><th>Constant</th><th>Value</th><th>Description</th></tr>\n<tr><td><code>none</code></td><td>-1</td><td></td></tr>\n<tr><td><code>fitXY</code></td><td>0</td><td></td></tr>\n<tr><td><code>fitStart</code></td><td>1</td><td></td></tr>\n<tr><td><code>fitCenter</code></td><td>2</td><td></td></tr>\n<tr><td><code>fitEnd</code></td><td>3</td><td></td></tr>\n<tr><td><code>center</code></td><td>4</td><td></td></tr>\n<tr><td><code>centerInside</code></td><td>5</td><td></td></tr>\n<tr><td><code>centerCrop</code></td><td>6</td><td></td></tr>\n<tr><td><code>focusCrop</code></td><td>7</td><td></td></tr>\n</table>\n         */\n        public static final int retryImageScaleType=0x7f010034;\n        /** <p>Must be a boolean value, either \"<code>true</code>\" or \"<code>false</code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int reverseLayout=0x7f010053;\n        /** <p>Must be a boolean value, either \"<code>true</code>\" or \"<code>false</code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int roundAsCircle=0x7f01003e;\n        /** <p>Must be a boolean value, either \"<code>true</code>\" or \"<code>false</code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int roundBottomLeft=0x7f010043;\n        /** <p>Must be a boolean value, either \"<code>true</code>\" or \"<code>false</code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int roundBottomRight=0x7f010042;\n        /** <p>Must be a boolean value, either \"<code>true</code>\" or \"<code>false</code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int roundTopLeft=0x7f010040;\n        /** <p>Must be a boolean value, either \"<code>true</code>\" or \"<code>false</code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int roundTopRight=0x7f010041;\n        /** <p>Must be a color value, in the form of \"<code>#<i>rgb</i></code>\", \"<code>#<i>argb</i></code>\",\n\"<code>#<i>rrggbb</i></code>\", or \"<code>#<i>aarrggbb</i></code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int roundWithOverlayColor=0x7f010044;\n        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int roundedCornerRadius=0x7f01003f;\n        /** <p>Must be a color value, in the form of \"<code>#<i>rgb</i></code>\", \"<code>#<i>argb</i></code>\",\n\"<code>#<i>rrggbb</i></code>\", or \"<code>#<i>aarrggbb</i></code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int roundingBorderColor=0x7f010046;\n        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int roundingBorderWidth=0x7f010045;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int searchHintIcon=0x7f01005c;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int searchIcon=0x7f01005b;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int searchViewStyle=0x7f0100aa;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int selectableItemBackground=0x7f01009b;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int selectableItemBackgroundBorderless=0x7f01009c;\n        /** <p>Must be one or more (separated by '|') of the following constant values.</p>\n<table>\n<colgroup align=\"left\" />\n<colgroup align=\"left\" />\n<colgroup align=\"left\" />\n<tr><th>Constant</th><th>Value</th><th>Description</th></tr>\n<tr><td><code>never</code></td><td>0</td><td></td></tr>\n<tr><td><code>ifRoom</code></td><td>1</td><td></td></tr>\n<tr><td><code>always</code></td><td>2</td><td></td></tr>\n<tr><td><code>withText</code></td><td>4</td><td></td></tr>\n<tr><td><code>collapseActionView</code></td><td>8</td><td></td></tr>\n</table>\n         */\n        public static final int showAsAction=0x7f01004a;\n        /** <p>Must be one or more (separated by '|') of the following constant values.</p>\n<table>\n<colgroup align=\"left\" />\n<colgroup align=\"left\" />\n<colgroup align=\"left\" />\n<tr><th>Constant</th><th>Value</th><th>Description</th></tr>\n<tr><td><code>none</code></td><td>0</td><td></td></tr>\n<tr><td><code>beginning</code></td><td>1</td><td></td></tr>\n<tr><td><code>middle</code></td><td>2</td><td></td></tr>\n<tr><td><code>end</code></td><td>4</td><td></td></tr>\n</table>\n         */\n        public static final int showDividers=0x7f010048;\n        /** <p>Must be a boolean value, either \"<code>true</code>\" or \"<code>false</code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int showText=0x7f010068;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int singleChoiceItemLayout=0x7f010022;\n        /** <p>Must be an integer value, such as \"<code>100</code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int spanCount=0x7f010052;\n        /** <p>Must be a boolean value, either \"<code>true</code>\" or \"<code>false</code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int spinBars=0x7f010028;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int spinnerDropDownItemStyle=0x7f010096;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int spinnerStyle=0x7f0100d1;\n        /** <p>Must be a boolean value, either \"<code>true</code>\" or \"<code>false</code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int splitTrack=0x7f010067;\n        /** <p>Must be a boolean value, either \"<code>true</code>\" or \"<code>false</code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int stackFromEnd=0x7f010054;\n        /** <p>Must be a boolean value, either \"<code>true</code>\" or \"<code>false</code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int state_above_anchor=0x7f010050;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int submitBackground=0x7f010061;\n        /** <p>Must be a string value, using '\\\\;' to escape characters such as '\\\\n' or '\\\\uxxxx' for a unicode character.\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int subtitle=0x7f010006;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int subtitleTextAppearance=0x7f0100d4;\n        /** <p>Must be a color value, in the form of \"<code>#<i>rgb</i></code>\", \"<code>#<i>argb</i></code>\",\n\"<code>#<i>rrggbb</i></code>\", or \"<code>#<i>aarrggbb</i></code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int subtitleTextColor=0x7f0100e1;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int subtitleTextStyle=0x7f010008;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int suggestionRowLayout=0x7f01005f;\n        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int switchMinWidth=0x7f010065;\n        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int switchPadding=0x7f010066;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int switchStyle=0x7f0100d2;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int switchTextAppearance=0x7f010064;\n        /** <p>May be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n<p>May be a boolean value, either \"<code>true</code>\" or \"<code>false</code>\".\n         */\n        public static final int textAllCaps=0x7f010024;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int textAppearanceLargePopupMenu=0x7f01008f;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int textAppearanceListItem=0x7f0100b2;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int textAppearanceListItemSmall=0x7f0100b3;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int textAppearanceSearchResultSubtitle=0x7f0100a8;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int textAppearanceSearchResultTitle=0x7f0100a7;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int textAppearanceSmallPopupMenu=0x7f010090;\n        /** <p>May be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n<p>May be a color value, in the form of \"<code>#<i>rgb</i></code>\", \"<code>#<i>argb</i></code>\",\n\"<code>#<i>rrggbb</i></code>\", or \"<code>#<i>aarrggbb</i></code>\".\n         */\n        public static final int textColorAlertDialogListItem=0x7f0100c5;\n        /** <p>May be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n<p>May be a color value, in the form of \"<code>#<i>rgb</i></code>\", \"<code>#<i>argb</i></code>\",\n\"<code>#<i>rrggbb</i></code>\", or \"<code>#<i>aarrggbb</i></code>\".\n         */\n        public static final int textColorSearchUrl=0x7f0100a9;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int theme=0x7f0100e4;\n        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int thickness=0x7f01002e;\n        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int thumbTextPadding=0x7f010063;\n        /** <p>Must be a string value, using '\\\\;' to escape characters such as '\\\\n' or '\\\\uxxxx' for a unicode character.\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int title=0x7f010003;\n        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int titleMarginBottom=0x7f0100d9;\n        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int titleMarginEnd=0x7f0100d7;\n        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int titleMarginStart=0x7f0100d6;\n        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int titleMarginTop=0x7f0100d8;\n        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int titleMargins=0x7f0100d5;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int titleTextAppearance=0x7f0100d3;\n        /** <p>Must be a color value, in the form of \"<code>#<i>rgb</i></code>\", \"<code>#<i>argb</i></code>\",\n\"<code>#<i>rrggbb</i></code>\", or \"<code>#<i>aarrggbb</i></code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int titleTextColor=0x7f0100e0;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int titleTextStyle=0x7f010007;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int toolbarNavigationButtonStyle=0x7f0100a2;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int toolbarStyle=0x7f0100a1;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int track=0x7f010062;\n        /** <p>Must be a floating point value, such as \"<code>1.2</code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int viewAspectRatio=0x7f010030;\n        /** <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n         */\n        public static final int voiceIcon=0x7f01005d;\n        /** <p>Must be a boolean value, either \"<code>true</code>\" or \"<code>false</code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int windowActionBar=0x7f010069;\n        /** <p>Must be a boolean value, either \"<code>true</code>\" or \"<code>false</code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int windowActionBarOverlay=0x7f01006b;\n        /** <p>Must be a boolean value, either \"<code>true</code>\" or \"<code>false</code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int windowActionModeOverlay=0x7f01006c;\n        /** <p>May be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>May be a fractional value, which is a floating point number appended with either % or %p, such as \"<code>14.5%</code>\".\nThe % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to\nsome parent container.\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int windowFixedHeightMajor=0x7f010070;\n        /** <p>May be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>May be a fractional value, which is a floating point number appended with either % or %p, such as \"<code>14.5%</code>\".\nThe % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to\nsome parent container.\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int windowFixedHeightMinor=0x7f01006e;\n        /** <p>May be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>May be a fractional value, which is a floating point number appended with either % or %p, such as \"<code>14.5%</code>\".\nThe % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to\nsome parent container.\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int windowFixedWidthMajor=0x7f01006d;\n        /** <p>May be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>May be a fractional value, which is a floating point number appended with either % or %p, such as \"<code>14.5%</code>\".\nThe % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to\nsome parent container.\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int windowFixedWidthMinor=0x7f01006f;\n        /** <p>May be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>May be a fractional value, which is a floating point number appended with either % or %p, such as \"<code>14.5%</code>\".\nThe % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to\nsome parent container.\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int windowMinWidthMajor=0x7f010071;\n        /** <p>May be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>May be a fractional value, which is a floating point number appended with either % or %p, such as \"<code>14.5%</code>\".\nThe % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to\nsome parent container.\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int windowMinWidthMinor=0x7f010072;\n        /** <p>Must be a boolean value, either \"<code>true</code>\" or \"<code>false</code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n         */\n        public static final int windowNoTitle=0x7f01006a;\n    }\n    public static final class bool {\n        public static final int abc_action_bar_embed_tabs=0x7f0a0002;\n        public static final int abc_action_bar_embed_tabs_pre_jb=0x7f0a0000;\n        public static final int abc_action_bar_expanded_action_views_exclusive=0x7f0a0003;\n        public static final int abc_config_actionMenuItemAllCaps=0x7f0a0004;\n        public static final int abc_config_allowActionMenuItemTextWithIcon=0x7f0a0001;\n        public static final int abc_config_closeDialogWhenTouchOutside=0x7f0a0005;\n        public static final int abc_config_showMenuShortcutsWhenKeyboardPresent=0x7f0a0006;\n    }\n    public static final class color {\n        public static final int abc_background_cache_hint_selector_material_dark=0x7f0c003b;\n        public static final int abc_background_cache_hint_selector_material_light=0x7f0c003c;\n        public static final int abc_color_highlight_material=0x7f0c003d;\n        public static final int abc_input_method_navigation_guard=0x7f0c0000;\n        public static final int abc_primary_text_disable_only_material_dark=0x7f0c003e;\n        public static final int abc_primary_text_disable_only_material_light=0x7f0c003f;\n        public static final int abc_primary_text_material_dark=0x7f0c0040;\n        public static final int abc_primary_text_material_light=0x7f0c0041;\n        public static final int abc_search_url_text=0x7f0c0042;\n        public static final int abc_search_url_text_normal=0x7f0c0001;\n        public static final int abc_search_url_text_pressed=0x7f0c0002;\n        public static final int abc_search_url_text_selected=0x7f0c0003;\n        public static final int abc_secondary_text_material_dark=0x7f0c0043;\n        public static final int abc_secondary_text_material_light=0x7f0c0044;\n        public static final int accent_material_dark=0x7f0c0004;\n        public static final int accent_material_light=0x7f0c0005;\n        public static final int background_floating_material_dark=0x7f0c0006;\n        public static final int background_floating_material_light=0x7f0c0007;\n        public static final int background_material_dark=0x7f0c0008;\n        public static final int background_material_light=0x7f0c0009;\n        public static final int bright_foreground_disabled_material_dark=0x7f0c000a;\n        public static final int bright_foreground_disabled_material_light=0x7f0c000b;\n        public static final int bright_foreground_inverse_material_dark=0x7f0c000c;\n        public static final int bright_foreground_inverse_material_light=0x7f0c000d;\n        public static final int bright_foreground_material_dark=0x7f0c000e;\n        public static final int bright_foreground_material_light=0x7f0c000f;\n        public static final int button_material_dark=0x7f0c0010;\n        public static final int button_material_light=0x7f0c0011;\n        public static final int catalyst_redbox_background=0x7f0c0012;\n        public static final int dim_foreground_disabled_material_dark=0x7f0c0013;\n        public static final int dim_foreground_disabled_material_light=0x7f0c0014;\n        public static final int dim_foreground_material_dark=0x7f0c0015;\n        public static final int dim_foreground_material_light=0x7f0c0016;\n        public static final int foreground_material_dark=0x7f0c0017;\n        public static final int foreground_material_light=0x7f0c0018;\n        public static final int highlighted_text_material_dark=0x7f0c0019;\n        public static final int highlighted_text_material_light=0x7f0c001a;\n        public static final int hint_foreground_material_dark=0x7f0c001b;\n        public static final int hint_foreground_material_light=0x7f0c001c;\n        public static final int material_blue_grey_800=0x7f0c001d;\n        public static final int material_blue_grey_900=0x7f0c001e;\n        public static final int material_blue_grey_950=0x7f0c001f;\n        public static final int material_deep_teal_200=0x7f0c0020;\n        public static final int material_deep_teal_500=0x7f0c0021;\n        public static final int material_grey_100=0x7f0c0022;\n        public static final int material_grey_300=0x7f0c0023;\n        public static final int material_grey_50=0x7f0c0024;\n        public static final int material_grey_600=0x7f0c0025;\n        public static final int material_grey_800=0x7f0c0026;\n        public static final int material_grey_850=0x7f0c0027;\n        public static final int material_grey_900=0x7f0c0028;\n        public static final int primary_dark_material_dark=0x7f0c0029;\n        public static final int primary_dark_material_light=0x7f0c002a;\n        public static final int primary_material_dark=0x7f0c002b;\n        public static final int primary_material_light=0x7f0c002c;\n        public static final int primary_text_default_material_dark=0x7f0c002d;\n        public static final int primary_text_default_material_light=0x7f0c002e;\n        public static final int primary_text_disabled_material_dark=0x7f0c002f;\n        public static final int primary_text_disabled_material_light=0x7f0c0030;\n        public static final int ripple_material_dark=0x7f0c0031;\n        public static final int ripple_material_light=0x7f0c0032;\n        public static final int secondary_text_default_material_dark=0x7f0c0033;\n        public static final int secondary_text_default_material_light=0x7f0c0034;\n        public static final int secondary_text_disabled_material_dark=0x7f0c0035;\n        public static final int secondary_text_disabled_material_light=0x7f0c0036;\n        public static final int switch_thumb_disabled_material_dark=0x7f0c0037;\n        public static final int switch_thumb_disabled_material_light=0x7f0c0038;\n        public static final int switch_thumb_material_dark=0x7f0c0045;\n        public static final int switch_thumb_material_light=0x7f0c0046;\n        public static final int switch_thumb_normal_material_dark=0x7f0c0039;\n        public static final int switch_thumb_normal_material_light=0x7f0c003a;\n    }\n    public static final class dimen {\n        public static final int abc_action_bar_content_inset_material=0x7f08000b;\n        public static final int abc_action_bar_default_height_material=0x7f080001;\n        public static final int abc_action_bar_default_padding_end_material=0x7f08000c;\n        public static final int abc_action_bar_default_padding_start_material=0x7f08000d;\n        public static final int abc_action_bar_icon_vertical_padding_material=0x7f08000f;\n        public static final int abc_action_bar_overflow_padding_end_material=0x7f080010;\n        public static final int abc_action_bar_overflow_padding_start_material=0x7f080011;\n        public static final int abc_action_bar_progress_bar_size=0x7f080002;\n        public static final int abc_action_bar_stacked_max_height=0x7f080012;\n        public static final int abc_action_bar_stacked_tab_max_width=0x7f080013;\n        public static final int abc_action_bar_subtitle_bottom_margin_material=0x7f080014;\n        public static final int abc_action_bar_subtitle_top_margin_material=0x7f080015;\n        public static final int abc_action_button_min_height_material=0x7f080016;\n        public static final int abc_action_button_min_width_material=0x7f080017;\n        public static final int abc_action_button_min_width_overflow_material=0x7f080018;\n        public static final int abc_alert_dialog_button_bar_height=0x7f080000;\n        public static final int abc_button_inset_horizontal_material=0x7f080019;\n        public static final int abc_button_inset_vertical_material=0x7f08001a;\n        public static final int abc_button_padding_horizontal_material=0x7f08001b;\n        public static final int abc_button_padding_vertical_material=0x7f08001c;\n        public static final int abc_config_prefDialogWidth=0x7f080005;\n        public static final int abc_control_corner_material=0x7f08001d;\n        public static final int abc_control_inset_material=0x7f08001e;\n        public static final int abc_control_padding_material=0x7f08001f;\n        public static final int abc_dialog_list_padding_vertical_material=0x7f080020;\n        public static final int abc_dialog_min_width_major=0x7f080021;\n        public static final int abc_dialog_min_width_minor=0x7f080022;\n        public static final int abc_dialog_padding_material=0x7f080023;\n        public static final int abc_dialog_padding_top_material=0x7f080024;\n        public static final int abc_disabled_alpha_material_dark=0x7f080025;\n        public static final int abc_disabled_alpha_material_light=0x7f080026;\n        public static final int abc_dropdownitem_icon_width=0x7f080027;\n        public static final int abc_dropdownitem_text_padding_left=0x7f080028;\n        public static final int abc_dropdownitem_text_padding_right=0x7f080029;\n        public static final int abc_edit_text_inset_bottom_material=0x7f08002a;\n        public static final int abc_edit_text_inset_horizontal_material=0x7f08002b;\n        public static final int abc_edit_text_inset_top_material=0x7f08002c;\n        public static final int abc_floating_window_z=0x7f08002d;\n        public static final int abc_list_item_padding_horizontal_material=0x7f08002e;\n        public static final int abc_panel_menu_list_width=0x7f08002f;\n        public static final int abc_search_view_preferred_width=0x7f080030;\n        public static final int abc_search_view_text_min_width=0x7f080006;\n        public static final int abc_switch_padding=0x7f08000e;\n        public static final int abc_text_size_body_1_material=0x7f080031;\n        public static final int abc_text_size_body_2_material=0x7f080032;\n        public static final int abc_text_size_button_material=0x7f080033;\n        public static final int abc_text_size_caption_material=0x7f080034;\n        public static final int abc_text_size_display_1_material=0x7f080035;\n        public static final int abc_text_size_display_2_material=0x7f080036;\n        public static final int abc_text_size_display_3_material=0x7f080037;\n        public static final int abc_text_size_display_4_material=0x7f080038;\n        public static final int abc_text_size_headline_material=0x7f080039;\n        public static final int abc_text_size_large_material=0x7f08003a;\n        public static final int abc_text_size_medium_material=0x7f08003b;\n        public static final int abc_text_size_menu_material=0x7f08003c;\n        public static final int abc_text_size_small_material=0x7f08003d;\n        public static final int abc_text_size_subhead_material=0x7f08003e;\n        public static final int abc_text_size_subtitle_material_toolbar=0x7f080003;\n        public static final int abc_text_size_title_material=0x7f08003f;\n        public static final int abc_text_size_title_material_toolbar=0x7f080004;\n        public static final int dialog_fixed_height_major=0x7f080007;\n        public static final int dialog_fixed_height_minor=0x7f080008;\n        public static final int dialog_fixed_width_major=0x7f080009;\n        public static final int dialog_fixed_width_minor=0x7f08000a;\n        public static final int disabled_alpha_material_dark=0x7f080040;\n        public static final int disabled_alpha_material_light=0x7f080041;\n        public static final int highlight_alpha_material_colored=0x7f080042;\n        public static final int highlight_alpha_material_dark=0x7f080043;\n        public static final int highlight_alpha_material_light=0x7f080044;\n        public static final int item_touch_helper_max_drag_scroll_per_frame=0x7f080045;\n        public static final int notification_large_icon_height=0x7f080046;\n        public static final int notification_large_icon_width=0x7f080047;\n        public static final int notification_subtext_size=0x7f080048;\n    }\n    public static final class drawable {\n        public static final int abc_ab_share_pack_mtrl_alpha=0x7f020000;\n        public static final int abc_action_bar_item_background_material=0x7f020001;\n        public static final int abc_btn_borderless_material=0x7f020002;\n        public static final int abc_btn_check_material=0x7f020003;\n        public static final int abc_btn_check_to_on_mtrl_000=0x7f020004;\n        public static final int abc_btn_check_to_on_mtrl_015=0x7f020005;\n        public static final int abc_btn_colored_material=0x7f020006;\n        public static final int abc_btn_default_mtrl_shape=0x7f020007;\n        public static final int abc_btn_radio_material=0x7f020008;\n        public static final int abc_btn_radio_to_on_mtrl_000=0x7f020009;\n        public static final int abc_btn_radio_to_on_mtrl_015=0x7f02000a;\n        public static final int abc_btn_rating_star_off_mtrl_alpha=0x7f02000b;\n        public static final int abc_btn_rating_star_on_mtrl_alpha=0x7f02000c;\n        public static final int abc_btn_switch_to_on_mtrl_00001=0x7f02000d;\n        public static final int abc_btn_switch_to_on_mtrl_00012=0x7f02000e;\n        public static final int abc_cab_background_internal_bg=0x7f02000f;\n        public static final int abc_cab_background_top_material=0x7f020010;\n        public static final int abc_cab_background_top_mtrl_alpha=0x7f020011;\n        public static final int abc_control_background_material=0x7f020012;\n        public static final int abc_dialog_material_background_dark=0x7f020013;\n        public static final int abc_dialog_material_background_light=0x7f020014;\n        public static final int abc_edit_text_material=0x7f020015;\n        public static final int abc_ic_ab_back_mtrl_am_alpha=0x7f020016;\n        public static final int abc_ic_clear_mtrl_alpha=0x7f020017;\n        public static final int abc_ic_commit_search_api_mtrl_alpha=0x7f020018;\n        public static final int abc_ic_go_search_api_mtrl_alpha=0x7f020019;\n        public static final int abc_ic_menu_copy_mtrl_am_alpha=0x7f02001a;\n        public static final int abc_ic_menu_cut_mtrl_alpha=0x7f02001b;\n        public static final int abc_ic_menu_moreoverflow_mtrl_alpha=0x7f02001c;\n        public static final int abc_ic_menu_paste_mtrl_am_alpha=0x7f02001d;\n        public static final int abc_ic_menu_selectall_mtrl_alpha=0x7f02001e;\n        public static final int abc_ic_menu_share_mtrl_alpha=0x7f02001f;\n        public static final int abc_ic_search_api_mtrl_alpha=0x7f020020;\n        public static final int abc_ic_voice_search_api_mtrl_alpha=0x7f020021;\n        public static final int abc_item_background_holo_dark=0x7f020022;\n        public static final int abc_item_background_holo_light=0x7f020023;\n        public static final int abc_list_divider_mtrl_alpha=0x7f020024;\n        public static final int abc_list_focused_holo=0x7f020025;\n        public static final int abc_list_longpressed_holo=0x7f020026;\n        public static final int abc_list_pressed_holo_dark=0x7f020027;\n        public static final int abc_list_pressed_holo_light=0x7f020028;\n        public static final int abc_list_selector_background_transition_holo_dark=0x7f020029;\n        public static final int abc_list_selector_background_transition_holo_light=0x7f02002a;\n        public static final int abc_list_selector_disabled_holo_dark=0x7f02002b;\n        public static final int abc_list_selector_disabled_holo_light=0x7f02002c;\n        public static final int abc_list_selector_holo_dark=0x7f02002d;\n        public static final int abc_list_selector_holo_light=0x7f02002e;\n        public static final int abc_menu_hardkey_panel_mtrl_mult=0x7f02002f;\n        public static final int abc_popup_background_mtrl_mult=0x7f020030;\n        public static final int abc_ratingbar_full_material=0x7f020031;\n        public static final int abc_spinner_mtrl_am_alpha=0x7f020032;\n        public static final int abc_spinner_textfield_background_material=0x7f020033;\n        public static final int abc_switch_thumb_material=0x7f020034;\n        public static final int abc_switch_track_mtrl_alpha=0x7f020035;\n        public static final int abc_tab_indicator_material=0x7f020036;\n        public static final int abc_tab_indicator_mtrl_alpha=0x7f020037;\n        public static final int abc_text_cursor_material=0x7f020038;\n        public static final int abc_textfield_activated_mtrl_alpha=0x7f020039;\n        public static final int abc_textfield_default_mtrl_alpha=0x7f02003a;\n        public static final int abc_textfield_search_activated_mtrl_alpha=0x7f02003b;\n        public static final int abc_textfield_search_default_mtrl_alpha=0x7f02003c;\n        public static final int abc_textfield_search_material=0x7f02003d;\n        public static final int notification_template_icon_bg=0x7f02003e;\n    }\n    public static final class id {\n        public static final int action0=0x7f0d0057;\n        public static final int action_bar=0x7f0d0047;\n        public static final int action_bar_activity_content=0x7f0d0000;\n        public static final int action_bar_container=0x7f0d0046;\n        public static final int action_bar_root=0x7f0d0042;\n        public static final int action_bar_spinner=0x7f0d0001;\n        public static final int action_bar_subtitle=0x7f0d002b;\n        public static final int action_bar_title=0x7f0d002a;\n        public static final int action_context_bar=0x7f0d0048;\n        public static final int action_divider=0x7f0d005b;\n        public static final int action_menu_divider=0x7f0d0002;\n        public static final int action_menu_presenter=0x7f0d0003;\n        public static final int action_mode_bar=0x7f0d0044;\n        public static final int action_mode_bar_stub=0x7f0d0043;\n        public static final int action_mode_close_button=0x7f0d002c;\n        public static final int activity_chooser_view_content=0x7f0d002d;\n        public static final int alertTitle=0x7f0d0037;\n        public static final int always=0x7f0d0024;\n        public static final int beginning=0x7f0d0021;\n        public static final int buttonPanel=0x7f0d003d;\n        public static final int cancel_action=0x7f0d0058;\n        public static final int catalyst_redbox_title=0x7f0d0066;\n        public static final int center=0x7f0d0019;\n        public static final int centerCrop=0x7f0d001a;\n        public static final int centerInside=0x7f0d001b;\n        public static final int checkbox=0x7f0d003f;\n        public static final int chronometer=0x7f0d005e;\n        public static final int collapseActionView=0x7f0d0025;\n        public static final int contentPanel=0x7f0d0038;\n        public static final int custom=0x7f0d003c;\n        public static final int customPanel=0x7f0d003b;\n        public static final int decor_content_parent=0x7f0d0045;\n        public static final int default_activity_button=0x7f0d0030;\n        public static final int disableHome=0x7f0d000d;\n        public static final int edit_query=0x7f0d0049;\n        public static final int end=0x7f0d0022;\n        public static final int end_padder=0x7f0d0063;\n        public static final int expand_activities_button=0x7f0d002e;\n        public static final int expanded_menu=0x7f0d003e;\n        public static final int fitCenter=0x7f0d001c;\n        public static final int fitEnd=0x7f0d001d;\n        public static final int fitStart=0x7f0d001e;\n        public static final int fitXY=0x7f0d001f;\n        public static final int focusCrop=0x7f0d0020;\n        public static final int fps_text=0x7f0d0056;\n        public static final int home=0x7f0d0004;\n        public static final int homeAsUp=0x7f0d000e;\n        public static final int icon=0x7f0d0032;\n        public static final int ifRoom=0x7f0d0026;\n        public static final int image=0x7f0d002f;\n        public static final int info=0x7f0d0062;\n        public static final int item_touch_helper_previous_elevation=0x7f0d0005;\n        public static final int line1=0x7f0d005c;\n        public static final int line3=0x7f0d0060;\n        public static final int listMode=0x7f0d000a;\n        public static final int list_item=0x7f0d0031;\n        public static final int media_actions=0x7f0d005a;\n        public static final int middle=0x7f0d0023;\n        public static final int multiply=0x7f0d0014;\n        public static final int never=0x7f0d0027;\n        public static final int none=0x7f0d000f;\n        public static final int normal=0x7f0d000b;\n        public static final int parentPanel=0x7f0d0034;\n        public static final int progress_circular=0x7f0d0006;\n        public static final int progress_horizontal=0x7f0d0007;\n        public static final int radio=0x7f0d0041;\n        public static final int rn_frame_file=0x7f0d0065;\n        public static final int rn_frame_method=0x7f0d0064;\n        public static final int rn_redbox_reloadjs=0x7f0d0068;\n        public static final int rn_redbox_stack=0x7f0d0067;\n        public static final int screen=0x7f0d0015;\n        public static final int scrollView=0x7f0d0039;\n        public static final int search_badge=0x7f0d004b;\n        public static final int search_bar=0x7f0d004a;\n        public static final int search_button=0x7f0d004c;\n        public static final int search_close_btn=0x7f0d0051;\n        public static final int search_edit_frame=0x7f0d004d;\n        public static final int search_go_btn=0x7f0d0053;\n        public static final int search_mag_icon=0x7f0d004e;\n        public static final int search_plate=0x7f0d004f;\n        public static final int search_src_text=0x7f0d0050;\n        public static final int search_voice_btn=0x7f0d0054;\n        public static final int select_dialog_listview=0x7f0d0055;\n        public static final int shortcut=0x7f0d0040;\n        public static final int showCustom=0x7f0d0010;\n        public static final int showHome=0x7f0d0011;\n        public static final int showTitle=0x7f0d0012;\n        public static final int split_action_bar=0x7f0d0008;\n        public static final int src_atop=0x7f0d0016;\n        public static final int src_in=0x7f0d0017;\n        public static final int src_over=0x7f0d0018;\n        public static final int status_bar_latest_event_content=0x7f0d0059;\n        public static final int submit_area=0x7f0d0052;\n        public static final int tabMode=0x7f0d000c;\n        public static final int text=0x7f0d0061;\n        public static final int text2=0x7f0d005f;\n        public static final int textSpacerNoButtons=0x7f0d003a;\n        public static final int time=0x7f0d005d;\n        public static final int title=0x7f0d0033;\n        public static final int title_template=0x7f0d0036;\n        public static final int topPanel=0x7f0d0035;\n        public static final int up=0x7f0d0009;\n        public static final int useLogo=0x7f0d0013;\n        public static final int withText=0x7f0d0028;\n        public static final int wrap_content=0x7f0d0029;\n    }\n    public static final class integer {\n        public static final int abc_config_activityDefaultDur=0x7f0b0001;\n        public static final int abc_config_activityShortDur=0x7f0b0002;\n        public static final int abc_max_action_buttons=0x7f0b0000;\n        public static final int cancel_button_image_alpha=0x7f0b0003;\n        public static final int status_bar_notification_info_maxnum=0x7f0b0004;\n    }\n    public static final class layout {\n        public static final int abc_action_bar_title_item=0x7f040000;\n        public static final int abc_action_bar_up_container=0x7f040001;\n        public static final int abc_action_bar_view_list_nav_layout=0x7f040002;\n        public static final int abc_action_menu_item_layout=0x7f040003;\n        public static final int abc_action_menu_layout=0x7f040004;\n        public static final int abc_action_mode_bar=0x7f040005;\n        public static final int abc_action_mode_close_item_material=0x7f040006;\n        public static final int abc_activity_chooser_view=0x7f040007;\n        public static final int abc_activity_chooser_view_list_item=0x7f040008;\n        public static final int abc_alert_dialog_material=0x7f040009;\n        public static final int abc_dialog_title_material=0x7f04000a;\n        public static final int abc_expanded_menu_layout=0x7f04000b;\n        public static final int abc_list_menu_item_checkbox=0x7f04000c;\n        public static final int abc_list_menu_item_icon=0x7f04000d;\n        public static final int abc_list_menu_item_layout=0x7f04000e;\n        public static final int abc_list_menu_item_radio=0x7f04000f;\n        public static final int abc_popup_menu_item_layout=0x7f040010;\n        public static final int abc_screen_content_include=0x7f040011;\n        public static final int abc_screen_simple=0x7f040012;\n        public static final int abc_screen_simple_overlay_action_mode=0x7f040013;\n        public static final int abc_screen_toolbar=0x7f040014;\n        public static final int abc_search_dropdown_item_icons_2line=0x7f040015;\n        public static final int abc_search_view=0x7f040016;\n        public static final int abc_select_dialog_material=0x7f040017;\n        public static final int fps_view=0x7f040018;\n        public static final int notification_media_action=0x7f040019;\n        public static final int notification_media_cancel_action=0x7f04001a;\n        public static final int notification_template_big_media=0x7f04001b;\n        public static final int notification_template_big_media_narrow=0x7f04001c;\n        public static final int notification_template_lines=0x7f04001d;\n        public static final int notification_template_media=0x7f04001e;\n        public static final int notification_template_part_chronometer=0x7f04001f;\n        public static final int notification_template_part_time=0x7f040020;\n        public static final int redbox_item_frame=0x7f040021;\n        public static final int redbox_item_title=0x7f040022;\n        public static final int redbox_view=0x7f040023;\n        public static final int select_dialog_item_material=0x7f040024;\n        public static final int select_dialog_multichoice_material=0x7f040025;\n        public static final int select_dialog_singlechoice_material=0x7f040026;\n        public static final int support_simple_spinner_dropdown_item=0x7f040027;\n    }\n    public static final class mipmap {\n        public static final int ic_launcher=0x7f030000;\n    }\n    public static final class string {\n        public static final int abc_action_bar_home_description=0x7f070000;\n        public static final int abc_action_bar_home_description_format=0x7f070001;\n        public static final int abc_action_bar_home_subtitle_description_format=0x7f070002;\n        public static final int abc_action_bar_up_description=0x7f070003;\n        public static final int abc_action_menu_overflow_description=0x7f070004;\n        public static final int abc_action_mode_done=0x7f070005;\n        public static final int abc_activity_chooser_view_see_all=0x7f070006;\n        public static final int abc_activitychooserview_choose_application=0x7f070007;\n        public static final int abc_search_hint=0x7f070008;\n        public static final int abc_searchview_description_clear=0x7f070009;\n        public static final int abc_searchview_description_query=0x7f07000a;\n        public static final int abc_searchview_description_search=0x7f07000b;\n        public static final int abc_searchview_description_submit=0x7f07000c;\n        public static final int abc_searchview_description_voice=0x7f07000d;\n        public static final int abc_shareactionprovider_share_with=0x7f07000e;\n        public static final int abc_shareactionprovider_share_with_application=0x7f07000f;\n        public static final int abc_toolbar_collapse_description=0x7f070010;\n        public static final int app_name=0x7f07001a;\n        public static final int catalyst_debugjs=0x7f070012;\n        public static final int catalyst_debugjs_off=0x7f07001b;\n        public static final int catalyst_element_inspector=0x7f070013;\n        public static final int catalyst_element_inspector_off=0x7f07001c;\n        public static final int catalyst_hot_module_replacement=0x7f07001d;\n        public static final int catalyst_hot_module_replacement_off=0x7f07001e;\n        public static final int catalyst_jsload_error=0x7f070014;\n        public static final int catalyst_jsload_message=0x7f070015;\n        public static final int catalyst_jsload_title=0x7f070016;\n        public static final int catalyst_live_reload=0x7f07001f;\n        public static final int catalyst_live_reload_off=0x7f070020;\n        public static final int catalyst_perf_monitor=0x7f070021;\n        public static final int catalyst_perf_monitor_off=0x7f070022;\n        public static final int catalyst_reloadjs=0x7f070017;\n        public static final int catalyst_remotedbg_error=0x7f070023;\n        public static final int catalyst_remotedbg_message=0x7f070024;\n        public static final int catalyst_settings=0x7f070018;\n        public static final int catalyst_settings_title=0x7f070019;\n        public static final int catalyst_start_profile=0x7f070025;\n        public static final int catalyst_stop_profile=0x7f070026;\n        public static final int status_bar_notification_info_overflow=0x7f070011;\n    }\n    public static final class style {\n        public static final int AlertDialog_AppCompat=0x7f09007a;\n        public static final int AlertDialog_AppCompat_Light=0x7f09007b;\n        public static final int Animation_AppCompat_Dialog=0x7f09007c;\n        public static final int Animation_AppCompat_DropDownUp=0x7f09007d;\n        public static final int Animation_Catalyst_RedBox=0x7f09007e;\n        /**  Customize your theme here. \n         */\n        public static final int AppTheme=0x7f09007f;\n        public static final int Base_AlertDialog_AppCompat=0x7f090080;\n        public static final int Base_AlertDialog_AppCompat_Light=0x7f090081;\n        public static final int Base_Animation_AppCompat_Dialog=0x7f090082;\n        public static final int Base_Animation_AppCompat_DropDownUp=0x7f090083;\n        public static final int Base_DialogWindowTitle_AppCompat=0x7f090084;\n        public static final int Base_DialogWindowTitleBackground_AppCompat=0x7f090085;\n        public static final int Base_TextAppearance_AppCompat=0x7f09002d;\n        public static final int Base_TextAppearance_AppCompat_Body1=0x7f09002e;\n        public static final int Base_TextAppearance_AppCompat_Body2=0x7f09002f;\n        public static final int Base_TextAppearance_AppCompat_Button=0x7f090018;\n        public static final int Base_TextAppearance_AppCompat_Caption=0x7f090030;\n        public static final int Base_TextAppearance_AppCompat_Display1=0x7f090031;\n        public static final int Base_TextAppearance_AppCompat_Display2=0x7f090032;\n        public static final int Base_TextAppearance_AppCompat_Display3=0x7f090033;\n        public static final int Base_TextAppearance_AppCompat_Display4=0x7f090034;\n        public static final int Base_TextAppearance_AppCompat_Headline=0x7f090035;\n        public static final int Base_TextAppearance_AppCompat_Inverse=0x7f090003;\n        public static final int Base_TextAppearance_AppCompat_Large=0x7f090036;\n        public static final int Base_TextAppearance_AppCompat_Large_Inverse=0x7f090004;\n        public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f090037;\n        public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f090038;\n        public static final int Base_TextAppearance_AppCompat_Medium=0x7f090039;\n        public static final int Base_TextAppearance_AppCompat_Medium_Inverse=0x7f090005;\n        public static final int Base_TextAppearance_AppCompat_Menu=0x7f09003a;\n        public static final int Base_TextAppearance_AppCompat_SearchResult=0x7f090086;\n        public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle=0x7f09003b;\n        public static final int Base_TextAppearance_AppCompat_SearchResult_Title=0x7f09003c;\n        public static final int Base_TextAppearance_AppCompat_Small=0x7f09003d;\n        public static final int Base_TextAppearance_AppCompat_Small_Inverse=0x7f090006;\n        public static final int Base_TextAppearance_AppCompat_Subhead=0x7f09003e;\n        public static final int Base_TextAppearance_AppCompat_Subhead_Inverse=0x7f090007;\n        public static final int Base_TextAppearance_AppCompat_Title=0x7f09003f;\n        public static final int Base_TextAppearance_AppCompat_Title_Inverse=0x7f090008;\n        public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f090040;\n        public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f090041;\n        public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f090042;\n        public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f090043;\n        public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f090044;\n        public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f090045;\n        public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f090046;\n        public static final int Base_TextAppearance_AppCompat_Widget_Button=0x7f090047;\n        public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse=0x7f090076;\n        public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem=0x7f090087;\n        public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f090048;\n        public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f090049;\n        public static final int Base_TextAppearance_AppCompat_Widget_Switch=0x7f09004a;\n        public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f09004b;\n        public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f090088;\n        public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f09004c;\n        public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f09004d;\n        public static final int Base_Theme_AppCompat=0x7f09004e;\n        public static final int Base_Theme_AppCompat_CompactMenu=0x7f090089;\n        public static final int Base_Theme_AppCompat_Dialog=0x7f090009;\n        public static final int Base_Theme_AppCompat_Dialog_Alert=0x7f09008a;\n        public static final int Base_Theme_AppCompat_Dialog_FixedSize=0x7f09008b;\n        public static final int Base_Theme_AppCompat_Dialog_MinWidth=0x7f09008c;\n        public static final int Base_Theme_AppCompat_DialogWhenLarge=0x7f090001;\n        public static final int Base_Theme_AppCompat_Light=0x7f09004f;\n        public static final int Base_Theme_AppCompat_Light_DarkActionBar=0x7f09008d;\n        public static final int Base_Theme_AppCompat_Light_Dialog=0x7f09000a;\n        public static final int Base_Theme_AppCompat_Light_Dialog_Alert=0x7f09008e;\n        public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize=0x7f09008f;\n        public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth=0x7f090090;\n        public static final int Base_Theme_AppCompat_Light_DialogWhenLarge=0x7f090002;\n        public static final int Base_ThemeOverlay_AppCompat=0x7f090091;\n        public static final int Base_ThemeOverlay_AppCompat_ActionBar=0x7f090092;\n        public static final int Base_ThemeOverlay_AppCompat_Dark=0x7f090093;\n        public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar=0x7f090094;\n        public static final int Base_ThemeOverlay_AppCompat_Light=0x7f090095;\n        public static final int Base_V11_Theme_AppCompat_Dialog=0x7f09000b;\n        public static final int Base_V11_Theme_AppCompat_Light_Dialog=0x7f09000c;\n        public static final int Base_V12_Widget_AppCompat_AutoCompleteTextView=0x7f090014;\n        public static final int Base_V12_Widget_AppCompat_EditText=0x7f090015;\n        public static final int Base_V21_Theme_AppCompat=0x7f090050;\n        public static final int Base_V21_Theme_AppCompat_Dialog=0x7f090051;\n        public static final int Base_V21_Theme_AppCompat_Light=0x7f090052;\n        public static final int Base_V21_Theme_AppCompat_Light_Dialog=0x7f090053;\n        public static final int Base_V22_Theme_AppCompat=0x7f090074;\n        public static final int Base_V22_Theme_AppCompat_Light=0x7f090075;\n        public static final int Base_V23_Theme_AppCompat=0x7f090077;\n        public static final int Base_V23_Theme_AppCompat_Light=0x7f090078;\n        public static final int Base_V7_Theme_AppCompat=0x7f090096;\n        public static final int Base_V7_Theme_AppCompat_Dialog=0x7f090097;\n        public static final int Base_V7_Theme_AppCompat_Light=0x7f090098;\n        public static final int Base_V7_Theme_AppCompat_Light_Dialog=0x7f090099;\n        public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView=0x7f09009a;\n        public static final int Base_V7_Widget_AppCompat_EditText=0x7f09009b;\n        public static final int Base_Widget_AppCompat_ActionBar=0x7f09009c;\n        public static final int Base_Widget_AppCompat_ActionBar_Solid=0x7f09009d;\n        public static final int Base_Widget_AppCompat_ActionBar_TabBar=0x7f09009e;\n        public static final int Base_Widget_AppCompat_ActionBar_TabText=0x7f090054;\n        public static final int Base_Widget_AppCompat_ActionBar_TabView=0x7f090055;\n        public static final int Base_Widget_AppCompat_ActionButton=0x7f090056;\n        public static final int Base_Widget_AppCompat_ActionButton_CloseMode=0x7f090057;\n        public static final int Base_Widget_AppCompat_ActionButton_Overflow=0x7f090058;\n        public static final int Base_Widget_AppCompat_ActionMode=0x7f09009f;\n        public static final int Base_Widget_AppCompat_ActivityChooserView=0x7f0900a0;\n        public static final int Base_Widget_AppCompat_AutoCompleteTextView=0x7f090016;\n        public static final int Base_Widget_AppCompat_Button=0x7f090059;\n        public static final int Base_Widget_AppCompat_Button_Borderless=0x7f09005a;\n        public static final int Base_Widget_AppCompat_Button_Borderless_Colored=0x7f09005b;\n        public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0900a1;\n        public static final int Base_Widget_AppCompat_Button_Colored=0x7f090079;\n        public static final int Base_Widget_AppCompat_Button_Small=0x7f09005c;\n        public static final int Base_Widget_AppCompat_ButtonBar=0x7f09005d;\n        public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog=0x7f0900a2;\n        public static final int Base_Widget_AppCompat_CompoundButton_CheckBox=0x7f09005e;\n        public static final int Base_Widget_AppCompat_CompoundButton_RadioButton=0x7f09005f;\n        public static final int Base_Widget_AppCompat_CompoundButton_Switch=0x7f0900a3;\n        public static final int Base_Widget_AppCompat_DrawerArrowToggle=0x7f090000;\n        public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common=0x7f0900a4;\n        public static final int Base_Widget_AppCompat_DropDownItem_Spinner=0x7f090060;\n        public static final int Base_Widget_AppCompat_EditText=0x7f090017;\n        public static final int Base_Widget_AppCompat_Light_ActionBar=0x7f0900a5;\n        public static final int Base_Widget_AppCompat_Light_ActionBar_Solid=0x7f0900a6;\n        public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar=0x7f0900a7;\n        public static final int Base_Widget_AppCompat_Light_ActionBar_TabText=0x7f090061;\n        public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f090062;\n        public static final int Base_Widget_AppCompat_Light_ActionBar_TabView=0x7f090063;\n        public static final int Base_Widget_AppCompat_Light_PopupMenu=0x7f090064;\n        public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow=0x7f090065;\n        public static final int Base_Widget_AppCompat_ListPopupWindow=0x7f090066;\n        public static final int Base_Widget_AppCompat_ListView=0x7f090067;\n        public static final int Base_Widget_AppCompat_ListView_DropDown=0x7f090068;\n        public static final int Base_Widget_AppCompat_ListView_Menu=0x7f090069;\n        public static final int Base_Widget_AppCompat_PopupMenu=0x7f09006a;\n        public static final int Base_Widget_AppCompat_PopupMenu_Overflow=0x7f09006b;\n        public static final int Base_Widget_AppCompat_PopupWindow=0x7f0900a8;\n        public static final int Base_Widget_AppCompat_ProgressBar=0x7f09000d;\n        public static final int Base_Widget_AppCompat_ProgressBar_Horizontal=0x7f09000e;\n        public static final int Base_Widget_AppCompat_RatingBar=0x7f09006c;\n        public static final int Base_Widget_AppCompat_SearchView=0x7f0900a9;\n        public static final int Base_Widget_AppCompat_SearchView_ActionBar=0x7f0900aa;\n        public static final int Base_Widget_AppCompat_Spinner=0x7f09006d;\n        public static final int Base_Widget_AppCompat_Spinner_Underlined=0x7f09006e;\n        public static final int Base_Widget_AppCompat_TextView_SpinnerItem=0x7f09006f;\n        public static final int Base_Widget_AppCompat_Toolbar=0x7f0900ab;\n        public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation=0x7f090070;\n        public static final int DialogAnimation=0x7f0900ac;\n        public static final int Platform_AppCompat=0x7f09000f;\n        public static final int Platform_AppCompat_Light=0x7f090010;\n        public static final int Platform_ThemeOverlay_AppCompat=0x7f090071;\n        public static final int Platform_ThemeOverlay_AppCompat_Dark=0x7f090072;\n        public static final int Platform_ThemeOverlay_AppCompat_Light=0x7f090073;\n        public static final int Platform_V11_AppCompat=0x7f090011;\n        public static final int Platform_V11_AppCompat_Light=0x7f090012;\n        public static final int Platform_V14_AppCompat=0x7f090019;\n        public static final int Platform_V14_AppCompat_Light=0x7f09001a;\n        public static final int Platform_Widget_AppCompat_Spinner=0x7f090013;\n        public static final int RtlOverlay_DialogWindowTitle_AppCompat=0x7f090020;\n        public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem=0x7f090021;\n        public static final int RtlOverlay_Widget_AppCompat_ActionButton_Overflow=0x7f090022;\n        public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon=0x7f090023;\n        public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem=0x7f090024;\n        public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup=0x7f090025;\n        public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text=0x7f090026;\n        public static final int RtlOverlay_Widget_AppCompat_Search_DropDown=0x7f090027;\n        public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1=0x7f090028;\n        public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2=0x7f090029;\n        public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query=0x7f09002a;\n        public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text=0x7f09002b;\n        public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon=0x7f09002c;\n        public static final int TextAppearance_AppCompat=0x7f0900ad;\n        public static final int TextAppearance_AppCompat_Body1=0x7f0900ae;\n        public static final int TextAppearance_AppCompat_Body2=0x7f0900af;\n        public static final int TextAppearance_AppCompat_Button=0x7f0900b0;\n        public static final int TextAppearance_AppCompat_Caption=0x7f0900b1;\n        public static final int TextAppearance_AppCompat_Display1=0x7f0900b2;\n        public static final int TextAppearance_AppCompat_Display2=0x7f0900b3;\n        public static final int TextAppearance_AppCompat_Display3=0x7f0900b4;\n        public static final int TextAppearance_AppCompat_Display4=0x7f0900b5;\n        public static final int TextAppearance_AppCompat_Headline=0x7f0900b6;\n        public static final int TextAppearance_AppCompat_Inverse=0x7f0900b7;\n        public static final int TextAppearance_AppCompat_Large=0x7f0900b8;\n        public static final int TextAppearance_AppCompat_Large_Inverse=0x7f0900b9;\n        public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0900ba;\n        public static final int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0900bb;\n        public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0900bc;\n        public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0900bd;\n        public static final int TextAppearance_AppCompat_Medium=0x7f0900be;\n        public static final int TextAppearance_AppCompat_Medium_Inverse=0x7f0900bf;\n        public static final int TextAppearance_AppCompat_Menu=0x7f0900c0;\n        public static final int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0900c1;\n        public static final int TextAppearance_AppCompat_SearchResult_Title=0x7f0900c2;\n        public static final int TextAppearance_AppCompat_Small=0x7f0900c3;\n        public static final int TextAppearance_AppCompat_Small_Inverse=0x7f0900c4;\n        public static final int TextAppearance_AppCompat_Subhead=0x7f0900c5;\n        public static final int TextAppearance_AppCompat_Subhead_Inverse=0x7f0900c6;\n        public static final int TextAppearance_AppCompat_Title=0x7f0900c7;\n        public static final int TextAppearance_AppCompat_Title_Inverse=0x7f0900c8;\n        public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0900c9;\n        public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0900ca;\n        public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0900cb;\n        public static final int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0900cc;\n        public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0900cd;\n        public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0900ce;\n        public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f0900cf;\n        public static final int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0900d0;\n        public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f0900d1;\n        public static final int TextAppearance_AppCompat_Widget_Button=0x7f0900d2;\n        public static final int TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0900d3;\n        public static final int TextAppearance_AppCompat_Widget_DropDownItem=0x7f0900d4;\n        public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0900d5;\n        public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0900d6;\n        public static final int TextAppearance_AppCompat_Widget_Switch=0x7f0900d7;\n        public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0900d8;\n        public static final int TextAppearance_StatusBar_EventContent=0x7f09001b;\n        public static final int TextAppearance_StatusBar_EventContent_Info=0x7f09001c;\n        public static final int TextAppearance_StatusBar_EventContent_Line2=0x7f09001d;\n        public static final int TextAppearance_StatusBar_EventContent_Time=0x7f09001e;\n        public static final int TextAppearance_StatusBar_EventContent_Title=0x7f09001f;\n        public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0900d9;\n        public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0900da;\n        public static final int TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0900db;\n        public static final int Theme=0x7f0900dc;\n        public static final int Theme_AppCompat=0x7f0900dd;\n        public static final int Theme_AppCompat_CompactMenu=0x7f0900de;\n        public static final int Theme_AppCompat_Dialog=0x7f0900df;\n        public static final int Theme_AppCompat_Dialog_Alert=0x7f0900e0;\n        public static final int Theme_AppCompat_Dialog_MinWidth=0x7f0900e1;\n        public static final int Theme_AppCompat_DialogWhenLarge=0x7f0900e2;\n        public static final int Theme_AppCompat_Light=0x7f0900e3;\n        public static final int Theme_AppCompat_Light_DarkActionBar=0x7f0900e4;\n        public static final int Theme_AppCompat_Light_Dialog=0x7f0900e5;\n        public static final int Theme_AppCompat_Light_Dialog_Alert=0x7f0900e6;\n        public static final int Theme_AppCompat_Light_Dialog_MinWidth=0x7f0900e7;\n        public static final int Theme_AppCompat_Light_DialogWhenLarge=0x7f0900e8;\n        public static final int Theme_AppCompat_Light_NoActionBar=0x7f0900e9;\n        public static final int Theme_AppCompat_NoActionBar=0x7f0900ea;\n        public static final int Theme_Catalyst=0x7f0900eb;\n        public static final int Theme_Catalyst_RedBox=0x7f0900ec;\n        public static final int Theme_FullScreenDialog=0x7f0900ed;\n        public static final int Theme_FullScreenDialogAnimated=0x7f0900ee;\n        public static final int Theme_ReactNative_AppCompat_Light=0x7f0900ef;\n        public static final int Theme_ReactNative_AppCompat_Light_NoActionBar_FullScreen=0x7f0900f0;\n        public static final int ThemeOverlay_AppCompat=0x7f0900f1;\n        public static final int ThemeOverlay_AppCompat_ActionBar=0x7f0900f2;\n        public static final int ThemeOverlay_AppCompat_Dark=0x7f0900f3;\n        public static final int ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0900f4;\n        public static final int ThemeOverlay_AppCompat_Light=0x7f0900f5;\n        public static final int Widget_AppCompat_ActionBar=0x7f0900f6;\n        public static final int Widget_AppCompat_ActionBar_Solid=0x7f0900f7;\n        public static final int Widget_AppCompat_ActionBar_TabBar=0x7f0900f8;\n        public static final int Widget_AppCompat_ActionBar_TabText=0x7f0900f9;\n        public static final int Widget_AppCompat_ActionBar_TabView=0x7f0900fa;\n        public static final int Widget_AppCompat_ActionButton=0x7f0900fb;\n        public static final int Widget_AppCompat_ActionButton_CloseMode=0x7f0900fc;\n        public static final int Widget_AppCompat_ActionButton_Overflow=0x7f0900fd;\n        public static final int Widget_AppCompat_ActionMode=0x7f0900fe;\n        public static final int Widget_AppCompat_ActivityChooserView=0x7f0900ff;\n        public static final int Widget_AppCompat_AutoCompleteTextView=0x7f090100;\n        public static final int Widget_AppCompat_Button=0x7f090101;\n        public static final int Widget_AppCompat_Button_Borderless=0x7f090102;\n        public static final int Widget_AppCompat_Button_Borderless_Colored=0x7f090103;\n        public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f090104;\n        public static final int Widget_AppCompat_Button_Colored=0x7f090105;\n        public static final int Widget_AppCompat_Button_Small=0x7f090106;\n        public static final int Widget_AppCompat_ButtonBar=0x7f090107;\n        public static final int Widget_AppCompat_ButtonBar_AlertDialog=0x7f090108;\n        public static final int Widget_AppCompat_CompoundButton_CheckBox=0x7f090109;\n        public static final int Widget_AppCompat_CompoundButton_RadioButton=0x7f09010a;\n        public static final int Widget_AppCompat_CompoundButton_Switch=0x7f09010b;\n        public static final int Widget_AppCompat_DrawerArrowToggle=0x7f09010c;\n        public static final int Widget_AppCompat_DropDownItem_Spinner=0x7f09010d;\n        public static final int Widget_AppCompat_EditText=0x7f09010e;\n        public static final int Widget_AppCompat_Light_ActionBar=0x7f09010f;\n        public static final int Widget_AppCompat_Light_ActionBar_Solid=0x7f090110;\n        public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f090111;\n        public static final int Widget_AppCompat_Light_ActionBar_TabBar=0x7f090112;\n        public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f090113;\n        public static final int Widget_AppCompat_Light_ActionBar_TabText=0x7f090114;\n        public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f090115;\n        public static final int Widget_AppCompat_Light_ActionBar_TabView=0x7f090116;\n        public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f090117;\n        public static final int Widget_AppCompat_Light_ActionButton=0x7f090118;\n        public static final int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f090119;\n        public static final int Widget_AppCompat_Light_ActionButton_Overflow=0x7f09011a;\n        public static final int Widget_AppCompat_Light_ActionMode_Inverse=0x7f09011b;\n        public static final int Widget_AppCompat_Light_ActivityChooserView=0x7f09011c;\n        public static final int Widget_AppCompat_Light_AutoCompleteTextView=0x7f09011d;\n        public static final int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f09011e;\n        public static final int Widget_AppCompat_Light_ListPopupWindow=0x7f09011f;\n        public static final int Widget_AppCompat_Light_ListView_DropDown=0x7f090120;\n        public static final int Widget_AppCompat_Light_PopupMenu=0x7f090121;\n        public static final int Widget_AppCompat_Light_PopupMenu_Overflow=0x7f090122;\n        public static final int Widget_AppCompat_Light_SearchView=0x7f090123;\n        public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f090124;\n        public static final int Widget_AppCompat_ListPopupWindow=0x7f090125;\n        public static final int Widget_AppCompat_ListView=0x7f090126;\n        public static final int Widget_AppCompat_ListView_DropDown=0x7f090127;\n        public static final int Widget_AppCompat_ListView_Menu=0x7f090128;\n        public static final int Widget_AppCompat_PopupMenu=0x7f090129;\n        public static final int Widget_AppCompat_PopupMenu_Overflow=0x7f09012a;\n        public static final int Widget_AppCompat_PopupWindow=0x7f09012b;\n        public static final int Widget_AppCompat_ProgressBar=0x7f09012c;\n        public static final int Widget_AppCompat_ProgressBar_Horizontal=0x7f09012d;\n        public static final int Widget_AppCompat_RatingBar=0x7f09012e;\n        public static final int Widget_AppCompat_SearchView=0x7f09012f;\n        public static final int Widget_AppCompat_SearchView_ActionBar=0x7f090130;\n        public static final int Widget_AppCompat_Spinner=0x7f090131;\n        public static final int Widget_AppCompat_Spinner_DropDown=0x7f090132;\n        public static final int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f090133;\n        public static final int Widget_AppCompat_Spinner_Underlined=0x7f090134;\n        public static final int Widget_AppCompat_TextView_SpinnerItem=0x7f090135;\n        public static final int Widget_AppCompat_Toolbar=0x7f090136;\n        public static final int Widget_AppCompat_Toolbar_Button_Navigation=0x7f090137;\n    }\n    public static final class xml {\n        public static final int preferences=0x7f060000;\n    }\n    public static final class styleable {\n        /** Attributes that can be used with a ActionBar.\n           <p>Includes the following attributes:</p>\n           <table>\n           <colgroup align=\"left\" />\n           <colgroup align=\"left\" />\n           <tr><th>Attribute</th><th>Description</th></tr>\n           <tr><td><code>{@link #ActionBar_background com.goreact:background}</code></td><td></td></tr>\n           <tr><td><code>{@link #ActionBar_backgroundSplit com.goreact:backgroundSplit}</code></td><td></td></tr>\n           <tr><td><code>{@link #ActionBar_backgroundStacked com.goreact:backgroundStacked}</code></td><td></td></tr>\n           <tr><td><code>{@link #ActionBar_contentInsetEnd com.goreact:contentInsetEnd}</code></td><td></td></tr>\n           <tr><td><code>{@link #ActionBar_contentInsetLeft com.goreact:contentInsetLeft}</code></td><td></td></tr>\n           <tr><td><code>{@link #ActionBar_contentInsetRight com.goreact:contentInsetRight}</code></td><td></td></tr>\n           <tr><td><code>{@link #ActionBar_contentInsetStart com.goreact:contentInsetStart}</code></td><td></td></tr>\n           <tr><td><code>{@link #ActionBar_customNavigationLayout com.goreact:customNavigationLayout}</code></td><td></td></tr>\n           <tr><td><code>{@link #ActionBar_displayOptions com.goreact:displayOptions}</code></td><td></td></tr>\n           <tr><td><code>{@link #ActionBar_divider com.goreact:divider}</code></td><td></td></tr>\n           <tr><td><code>{@link #ActionBar_elevation com.goreact:elevation}</code></td><td></td></tr>\n           <tr><td><code>{@link #ActionBar_height com.goreact:height}</code></td><td></td></tr>\n           <tr><td><code>{@link #ActionBar_hideOnContentScroll com.goreact:hideOnContentScroll}</code></td><td></td></tr>\n           <tr><td><code>{@link #ActionBar_homeAsUpIndicator com.goreact:homeAsUpIndicator}</code></td><td></td></tr>\n           <tr><td><code>{@link #ActionBar_homeLayout com.goreact:homeLayout}</code></td><td></td></tr>\n           <tr><td><code>{@link #ActionBar_icon com.goreact:icon}</code></td><td></td></tr>\n           <tr><td><code>{@link #ActionBar_indeterminateProgressStyle com.goreact:indeterminateProgressStyle}</code></td><td></td></tr>\n           <tr><td><code>{@link #ActionBar_itemPadding com.goreact:itemPadding}</code></td><td></td></tr>\n           <tr><td><code>{@link #ActionBar_logo com.goreact:logo}</code></td><td></td></tr>\n           <tr><td><code>{@link #ActionBar_navigationMode com.goreact:navigationMode}</code></td><td></td></tr>\n           <tr><td><code>{@link #ActionBar_popupTheme com.goreact:popupTheme}</code></td><td></td></tr>\n           <tr><td><code>{@link #ActionBar_progressBarPadding com.goreact:progressBarPadding}</code></td><td></td></tr>\n           <tr><td><code>{@link #ActionBar_progressBarStyle com.goreact:progressBarStyle}</code></td><td></td></tr>\n           <tr><td><code>{@link #ActionBar_subtitle com.goreact:subtitle}</code></td><td></td></tr>\n           <tr><td><code>{@link #ActionBar_subtitleTextStyle com.goreact:subtitleTextStyle}</code></td><td></td></tr>\n           <tr><td><code>{@link #ActionBar_title com.goreact:title}</code></td><td></td></tr>\n           <tr><td><code>{@link #ActionBar_titleTextStyle com.goreact:titleTextStyle}</code></td><td></td></tr>\n           </table>\n           @see #ActionBar_background\n           @see #ActionBar_backgroundSplit\n           @see #ActionBar_backgroundStacked\n           @see #ActionBar_contentInsetEnd\n           @see #ActionBar_contentInsetLeft\n           @see #ActionBar_contentInsetRight\n           @see #ActionBar_contentInsetStart\n           @see #ActionBar_customNavigationLayout\n           @see #ActionBar_displayOptions\n           @see #ActionBar_divider\n           @see #ActionBar_elevation\n           @see #ActionBar_height\n           @see #ActionBar_hideOnContentScroll\n           @see #ActionBar_homeAsUpIndicator\n           @see #ActionBar_homeLayout\n           @see #ActionBar_icon\n           @see #ActionBar_indeterminateProgressStyle\n           @see #ActionBar_itemPadding\n           @see #ActionBar_logo\n           @see #ActionBar_navigationMode\n           @see #ActionBar_popupTheme\n           @see #ActionBar_progressBarPadding\n           @see #ActionBar_progressBarStyle\n           @see #ActionBar_subtitle\n           @see #ActionBar_subtitleTextStyle\n           @see #ActionBar_title\n           @see #ActionBar_titleTextStyle\n         */\n        public static final int[] ActionBar = {\n            0x7f010001, 0x7f010003, 0x7f010004, 0x7f010005,\n            0x7f010006, 0x7f010007, 0x7f010008, 0x7f010009,\n            0x7f01000a, 0x7f01000b, 0x7f01000c, 0x7f01000d,\n            0x7f01000e, 0x7f01000f, 0x7f010010, 0x7f010011,\n            0x7f010012, 0x7f010013, 0x7f010014, 0x7f010015,\n            0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019,\n            0x7f01001a, 0x7f01001b, 0x7f010097\n        };\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#background}\n          attribute's value can be found in the {@link #ActionBar} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:background\n        */\n        public static final int ActionBar_background = 10;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#backgroundSplit}\n          attribute's value can be found in the {@link #ActionBar} array.\n\n\n          <p>May be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n<p>May be a color value, in the form of \"<code>#<i>rgb</i></code>\", \"<code>#<i>argb</i></code>\",\n\"<code>#<i>rrggbb</i></code>\", or \"<code>#<i>aarrggbb</i></code>\".\n          @attr name com.goreact:backgroundSplit\n        */\n        public static final int ActionBar_backgroundSplit = 12;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#backgroundStacked}\n          attribute's value can be found in the {@link #ActionBar} array.\n\n\n          <p>May be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n<p>May be a color value, in the form of \"<code>#<i>rgb</i></code>\", \"<code>#<i>argb</i></code>\",\n\"<code>#<i>rrggbb</i></code>\", or \"<code>#<i>aarrggbb</i></code>\".\n          @attr name com.goreact:backgroundStacked\n        */\n        public static final int ActionBar_backgroundStacked = 11;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#contentInsetEnd}\n          attribute's value can be found in the {@link #ActionBar} array.\n\n\n          <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          @attr name com.goreact:contentInsetEnd\n        */\n        public static final int ActionBar_contentInsetEnd = 21;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#contentInsetLeft}\n          attribute's value can be found in the {@link #ActionBar} array.\n\n\n          <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          @attr name com.goreact:contentInsetLeft\n        */\n        public static final int ActionBar_contentInsetLeft = 22;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#contentInsetRight}\n          attribute's value can be found in the {@link #ActionBar} array.\n\n\n          <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          @attr name com.goreact:contentInsetRight\n        */\n        public static final int ActionBar_contentInsetRight = 23;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#contentInsetStart}\n          attribute's value can be found in the {@link #ActionBar} array.\n\n\n          <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          @attr name com.goreact:contentInsetStart\n        */\n        public static final int ActionBar_contentInsetStart = 20;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#customNavigationLayout}\n          attribute's value can be found in the {@link #ActionBar} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:customNavigationLayout\n        */\n        public static final int ActionBar_customNavigationLayout = 13;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#displayOptions}\n          attribute's value can be found in the {@link #ActionBar} array.\n\n\n          <p>Must be one or more (separated by '|') of the following constant values.</p>\n<table>\n<colgroup align=\"left\" />\n<colgroup align=\"left\" />\n<colgroup align=\"left\" />\n<tr><th>Constant</th><th>Value</th><th>Description</th></tr>\n<tr><td><code>none</code></td><td>0</td><td></td></tr>\n<tr><td><code>useLogo</code></td><td>0x1</td><td></td></tr>\n<tr><td><code>showHome</code></td><td>0x2</td><td></td></tr>\n<tr><td><code>homeAsUp</code></td><td>0x4</td><td></td></tr>\n<tr><td><code>showTitle</code></td><td>0x8</td><td></td></tr>\n<tr><td><code>showCustom</code></td><td>0x10</td><td></td></tr>\n<tr><td><code>disableHome</code></td><td>0x20</td><td></td></tr>\n</table>\n          @attr name com.goreact:displayOptions\n        */\n        public static final int ActionBar_displayOptions = 3;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#divider}\n          attribute's value can be found in the {@link #ActionBar} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:divider\n        */\n        public static final int ActionBar_divider = 9;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#elevation}\n          attribute's value can be found in the {@link #ActionBar} array.\n\n\n          <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          @attr name com.goreact:elevation\n        */\n        public static final int ActionBar_elevation = 24;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#height}\n          attribute's value can be found in the {@link #ActionBar} array.\n\n\n          <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          @attr name com.goreact:height\n        */\n        public static final int ActionBar_height = 0;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#hideOnContentScroll}\n          attribute's value can be found in the {@link #ActionBar} array.\n\n\n          <p>Must be a boolean value, either \"<code>true</code>\" or \"<code>false</code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          @attr name com.goreact:hideOnContentScroll\n        */\n        public static final int ActionBar_hideOnContentScroll = 19;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#homeAsUpIndicator}\n          attribute's value can be found in the {@link #ActionBar} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:homeAsUpIndicator\n        */\n        public static final int ActionBar_homeAsUpIndicator = 26;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#homeLayout}\n          attribute's value can be found in the {@link #ActionBar} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:homeLayout\n        */\n        public static final int ActionBar_homeLayout = 14;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#icon}\n          attribute's value can be found in the {@link #ActionBar} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:icon\n        */\n        public static final int ActionBar_icon = 7;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#indeterminateProgressStyle}\n          attribute's value can be found in the {@link #ActionBar} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:indeterminateProgressStyle\n        */\n        public static final int ActionBar_indeterminateProgressStyle = 16;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#itemPadding}\n          attribute's value can be found in the {@link #ActionBar} array.\n\n\n          <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          @attr name com.goreact:itemPadding\n        */\n        public static final int ActionBar_itemPadding = 18;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#logo}\n          attribute's value can be found in the {@link #ActionBar} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:logo\n        */\n        public static final int ActionBar_logo = 8;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#navigationMode}\n          attribute's value can be found in the {@link #ActionBar} array.\n\n\n          <p>Must be one of the following constant values.</p>\n<table>\n<colgroup align=\"left\" />\n<colgroup align=\"left\" />\n<colgroup align=\"left\" />\n<tr><th>Constant</th><th>Value</th><th>Description</th></tr>\n<tr><td><code>normal</code></td><td>0</td><td></td></tr>\n<tr><td><code>listMode</code></td><td>1</td><td></td></tr>\n<tr><td><code>tabMode</code></td><td>2</td><td></td></tr>\n</table>\n          @attr name com.goreact:navigationMode\n        */\n        public static final int ActionBar_navigationMode = 2;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#popupTheme}\n          attribute's value can be found in the {@link #ActionBar} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:popupTheme\n        */\n        public static final int ActionBar_popupTheme = 25;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#progressBarPadding}\n          attribute's value can be found in the {@link #ActionBar} array.\n\n\n          <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          @attr name com.goreact:progressBarPadding\n        */\n        public static final int ActionBar_progressBarPadding = 17;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#progressBarStyle}\n          attribute's value can be found in the {@link #ActionBar} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:progressBarStyle\n        */\n        public static final int ActionBar_progressBarStyle = 15;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#subtitle}\n          attribute's value can be found in the {@link #ActionBar} array.\n\n\n          <p>Must be a string value, using '\\\\;' to escape characters such as '\\\\n' or '\\\\uxxxx' for a unicode character.\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          @attr name com.goreact:subtitle\n        */\n        public static final int ActionBar_subtitle = 4;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#subtitleTextStyle}\n          attribute's value can be found in the {@link #ActionBar} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:subtitleTextStyle\n        */\n        public static final int ActionBar_subtitleTextStyle = 6;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#title}\n          attribute's value can be found in the {@link #ActionBar} array.\n\n\n          <p>Must be a string value, using '\\\\;' to escape characters such as '\\\\n' or '\\\\uxxxx' for a unicode character.\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          @attr name com.goreact:title\n        */\n        public static final int ActionBar_title = 1;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#titleTextStyle}\n          attribute's value can be found in the {@link #ActionBar} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:titleTextStyle\n        */\n        public static final int ActionBar_titleTextStyle = 5;\n        /** Attributes that can be used with a ActionBarLayout.\n           <p>Includes the following attributes:</p>\n           <table>\n           <colgroup align=\"left\" />\n           <colgroup align=\"left\" />\n           <tr><th>Attribute</th><th>Description</th></tr>\n           <tr><td><code>{@link #ActionBarLayout_android_layout_gravity android:layout_gravity}</code></td><td></td></tr>\n           </table>\n           @see #ActionBarLayout_android_layout_gravity\n         */\n        public static final int[] ActionBarLayout = {\n            0x010100b3\n        };\n        /**\n          <p>This symbol is the offset where the {@link android.R.attr#layout_gravity}\n          attribute's value can be found in the {@link #ActionBarLayout} array.\n          @attr name android:layout_gravity\n        */\n        public static final int ActionBarLayout_android_layout_gravity = 0;\n        /** Attributes that can be used with a ActionMenuItemView.\n           <p>Includes the following attributes:</p>\n           <table>\n           <colgroup align=\"left\" />\n           <colgroup align=\"left\" />\n           <tr><th>Attribute</th><th>Description</th></tr>\n           <tr><td><code>{@link #ActionMenuItemView_android_minWidth android:minWidth}</code></td><td></td></tr>\n           </table>\n           @see #ActionMenuItemView_android_minWidth\n         */\n        public static final int[] ActionMenuItemView = {\n            0x0101013f\n        };\n        /**\n          <p>This symbol is the offset where the {@link android.R.attr#minWidth}\n          attribute's value can be found in the {@link #ActionMenuItemView} array.\n          @attr name android:minWidth\n        */\n        public static final int ActionMenuItemView_android_minWidth = 0;\n        /** Attributes that can be used with a ActionMenuView.\n         */\n        public static final int[] ActionMenuView = {\n            \n        };\n        /** Attributes that can be used with a ActionMode.\n           <p>Includes the following attributes:</p>\n           <table>\n           <colgroup align=\"left\" />\n           <colgroup align=\"left\" />\n           <tr><th>Attribute</th><th>Description</th></tr>\n           <tr><td><code>{@link #ActionMode_background com.goreact:background}</code></td><td></td></tr>\n           <tr><td><code>{@link #ActionMode_backgroundSplit com.goreact:backgroundSplit}</code></td><td></td></tr>\n           <tr><td><code>{@link #ActionMode_closeItemLayout com.goreact:closeItemLayout}</code></td><td></td></tr>\n           <tr><td><code>{@link #ActionMode_height com.goreact:height}</code></td><td></td></tr>\n           <tr><td><code>{@link #ActionMode_subtitleTextStyle com.goreact:subtitleTextStyle}</code></td><td></td></tr>\n           <tr><td><code>{@link #ActionMode_titleTextStyle com.goreact:titleTextStyle}</code></td><td></td></tr>\n           </table>\n           @see #ActionMode_background\n           @see #ActionMode_backgroundSplit\n           @see #ActionMode_closeItemLayout\n           @see #ActionMode_height\n           @see #ActionMode_subtitleTextStyle\n           @see #ActionMode_titleTextStyle\n         */\n        public static final int[] ActionMode = {\n            0x7f010001, 0x7f010007, 0x7f010008, 0x7f01000c,\n            0x7f01000e, 0x7f01001c\n        };\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#background}\n          attribute's value can be found in the {@link #ActionMode} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:background\n        */\n        public static final int ActionMode_background = 3;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#backgroundSplit}\n          attribute's value can be found in the {@link #ActionMode} array.\n\n\n          <p>May be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n<p>May be a color value, in the form of \"<code>#<i>rgb</i></code>\", \"<code>#<i>argb</i></code>\",\n\"<code>#<i>rrggbb</i></code>\", or \"<code>#<i>aarrggbb</i></code>\".\n          @attr name com.goreact:backgroundSplit\n        */\n        public static final int ActionMode_backgroundSplit = 4;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#closeItemLayout}\n          attribute's value can be found in the {@link #ActionMode} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:closeItemLayout\n        */\n        public static final int ActionMode_closeItemLayout = 5;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#height}\n          attribute's value can be found in the {@link #ActionMode} array.\n\n\n          <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          @attr name com.goreact:height\n        */\n        public static final int ActionMode_height = 0;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#subtitleTextStyle}\n          attribute's value can be found in the {@link #ActionMode} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:subtitleTextStyle\n        */\n        public static final int ActionMode_subtitleTextStyle = 2;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#titleTextStyle}\n          attribute's value can be found in the {@link #ActionMode} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:titleTextStyle\n        */\n        public static final int ActionMode_titleTextStyle = 1;\n        /** Attributes that can be used with a ActivityChooserView.\n           <p>Includes the following attributes:</p>\n           <table>\n           <colgroup align=\"left\" />\n           <colgroup align=\"left\" />\n           <tr><th>Attribute</th><th>Description</th></tr>\n           <tr><td><code>{@link #ActivityChooserView_expandActivityOverflowButtonDrawable com.goreact:expandActivityOverflowButtonDrawable}</code></td><td></td></tr>\n           <tr><td><code>{@link #ActivityChooserView_initialActivityCount com.goreact:initialActivityCount}</code></td><td></td></tr>\n           </table>\n           @see #ActivityChooserView_expandActivityOverflowButtonDrawable\n           @see #ActivityChooserView_initialActivityCount\n         */\n        public static final int[] ActivityChooserView = {\n            0x7f01001d, 0x7f01001e\n        };\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#expandActivityOverflowButtonDrawable}\n          attribute's value can be found in the {@link #ActivityChooserView} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:expandActivityOverflowButtonDrawable\n        */\n        public static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 1;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#initialActivityCount}\n          attribute's value can be found in the {@link #ActivityChooserView} array.\n\n\n          <p>Must be a string value, using '\\\\;' to escape characters such as '\\\\n' or '\\\\uxxxx' for a unicode character.\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          @attr name com.goreact:initialActivityCount\n        */\n        public static final int ActivityChooserView_initialActivityCount = 0;\n        /** Attributes that can be used with a AlertDialog.\n           <p>Includes the following attributes:</p>\n           <table>\n           <colgroup align=\"left\" />\n           <colgroup align=\"left\" />\n           <tr><th>Attribute</th><th>Description</th></tr>\n           <tr><td><code>{@link #AlertDialog_android_layout android:layout}</code></td><td></td></tr>\n           <tr><td><code>{@link #AlertDialog_buttonPanelSideLayout com.goreact:buttonPanelSideLayout}</code></td><td></td></tr>\n           <tr><td><code>{@link #AlertDialog_listItemLayout com.goreact:listItemLayout}</code></td><td></td></tr>\n           <tr><td><code>{@link #AlertDialog_listLayout com.goreact:listLayout}</code></td><td></td></tr>\n           <tr><td><code>{@link #AlertDialog_multiChoiceItemLayout com.goreact:multiChoiceItemLayout}</code></td><td></td></tr>\n           <tr><td><code>{@link #AlertDialog_singleChoiceItemLayout com.goreact:singleChoiceItemLayout}</code></td><td></td></tr>\n           </table>\n           @see #AlertDialog_android_layout\n           @see #AlertDialog_buttonPanelSideLayout\n           @see #AlertDialog_listItemLayout\n           @see #AlertDialog_listLayout\n           @see #AlertDialog_multiChoiceItemLayout\n           @see #AlertDialog_singleChoiceItemLayout\n         */\n        public static final int[] AlertDialog = {\n            0x010100f2, 0x7f01001f, 0x7f010020, 0x7f010021,\n            0x7f010022, 0x7f010023\n        };\n        /**\n          <p>This symbol is the offset where the {@link android.R.attr#layout}\n          attribute's value can be found in the {@link #AlertDialog} array.\n          @attr name android:layout\n        */\n        public static final int AlertDialog_android_layout = 0;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#buttonPanelSideLayout}\n          attribute's value can be found in the {@link #AlertDialog} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:buttonPanelSideLayout\n        */\n        public static final int AlertDialog_buttonPanelSideLayout = 1;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#listItemLayout}\n          attribute's value can be found in the {@link #AlertDialog} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:listItemLayout\n        */\n        public static final int AlertDialog_listItemLayout = 5;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#listLayout}\n          attribute's value can be found in the {@link #AlertDialog} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:listLayout\n        */\n        public static final int AlertDialog_listLayout = 2;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#multiChoiceItemLayout}\n          attribute's value can be found in the {@link #AlertDialog} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:multiChoiceItemLayout\n        */\n        public static final int AlertDialog_multiChoiceItemLayout = 3;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#singleChoiceItemLayout}\n          attribute's value can be found in the {@link #AlertDialog} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:singleChoiceItemLayout\n        */\n        public static final int AlertDialog_singleChoiceItemLayout = 4;\n        /** Attributes that can be used with a AppCompatTextView.\n           <p>Includes the following attributes:</p>\n           <table>\n           <colgroup align=\"left\" />\n           <colgroup align=\"left\" />\n           <tr><th>Attribute</th><th>Description</th></tr>\n           <tr><td><code>{@link #AppCompatTextView_android_textAppearance android:textAppearance}</code></td><td></td></tr>\n           <tr><td><code>{@link #AppCompatTextView_textAllCaps com.goreact:textAllCaps}</code></td><td></td></tr>\n           </table>\n           @see #AppCompatTextView_android_textAppearance\n           @see #AppCompatTextView_textAllCaps\n         */\n        public static final int[] AppCompatTextView = {\n            0x01010034, 0x7f010024\n        };\n        /**\n          <p>This symbol is the offset where the {@link android.R.attr#textAppearance}\n          attribute's value can be found in the {@link #AppCompatTextView} array.\n          @attr name android:textAppearance\n        */\n        public static final int AppCompatTextView_android_textAppearance = 0;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#textAllCaps}\n          attribute's value can be found in the {@link #AppCompatTextView} array.\n\n\n          <p>May be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n<p>May be a boolean value, either \"<code>true</code>\" or \"<code>false</code>\".\n          @attr name com.goreact:textAllCaps\n        */\n        public static final int AppCompatTextView_textAllCaps = 1;\n        /** Attributes that can be used with a CompoundButton.\n           <p>Includes the following attributes:</p>\n           <table>\n           <colgroup align=\"left\" />\n           <colgroup align=\"left\" />\n           <tr><th>Attribute</th><th>Description</th></tr>\n           <tr><td><code>{@link #CompoundButton_android_button android:button}</code></td><td></td></tr>\n           <tr><td><code>{@link #CompoundButton_buttonTint com.goreact:buttonTint}</code></td><td></td></tr>\n           <tr><td><code>{@link #CompoundButton_buttonTintMode com.goreact:buttonTintMode}</code></td><td></td></tr>\n           </table>\n           @see #CompoundButton_android_button\n           @see #CompoundButton_buttonTint\n           @see #CompoundButton_buttonTintMode\n         */\n        public static final int[] CompoundButton = {\n            0x01010107, 0x7f010025, 0x7f010026\n        };\n        /**\n          <p>This symbol is the offset where the {@link android.R.attr#button}\n          attribute's value can be found in the {@link #CompoundButton} array.\n          @attr name android:button\n        */\n        public static final int CompoundButton_android_button = 0;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#buttonTint}\n          attribute's value can be found in the {@link #CompoundButton} array.\n\n\n          <p>Must be a color value, in the form of \"<code>#<i>rgb</i></code>\", \"<code>#<i>argb</i></code>\",\n\"<code>#<i>rrggbb</i></code>\", or \"<code>#<i>aarrggbb</i></code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          @attr name com.goreact:buttonTint\n        */\n        public static final int CompoundButton_buttonTint = 1;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#buttonTintMode}\n          attribute's value can be found in the {@link #CompoundButton} array.\n\n\n          <p>Must be one of the following constant values.</p>\n<table>\n<colgroup align=\"left\" />\n<colgroup align=\"left\" />\n<colgroup align=\"left\" />\n<tr><th>Constant</th><th>Value</th><th>Description</th></tr>\n<tr><td><code>src_over</code></td><td>3</td><td></td></tr>\n<tr><td><code>src_in</code></td><td>5</td><td></td></tr>\n<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>\n<tr><td><code>multiply</code></td><td>14</td><td></td></tr>\n<tr><td><code>screen</code></td><td>15</td><td></td></tr>\n</table>\n          @attr name com.goreact:buttonTintMode\n        */\n        public static final int CompoundButton_buttonTintMode = 2;\n        /** Attributes that can be used with a DrawerArrowToggle.\n           <p>Includes the following attributes:</p>\n           <table>\n           <colgroup align=\"left\" />\n           <colgroup align=\"left\" />\n           <tr><th>Attribute</th><th>Description</th></tr>\n           <tr><td><code>{@link #DrawerArrowToggle_arrowHeadLength com.goreact:arrowHeadLength}</code></td><td></td></tr>\n           <tr><td><code>{@link #DrawerArrowToggle_arrowShaftLength com.goreact:arrowShaftLength}</code></td><td></td></tr>\n           <tr><td><code>{@link #DrawerArrowToggle_barLength com.goreact:barLength}</code></td><td></td></tr>\n           <tr><td><code>{@link #DrawerArrowToggle_color com.goreact:color}</code></td><td></td></tr>\n           <tr><td><code>{@link #DrawerArrowToggle_drawableSize com.goreact:drawableSize}</code></td><td></td></tr>\n           <tr><td><code>{@link #DrawerArrowToggle_gapBetweenBars com.goreact:gapBetweenBars}</code></td><td></td></tr>\n           <tr><td><code>{@link #DrawerArrowToggle_spinBars com.goreact:spinBars}</code></td><td></td></tr>\n           <tr><td><code>{@link #DrawerArrowToggle_thickness com.goreact:thickness}</code></td><td></td></tr>\n           </table>\n           @see #DrawerArrowToggle_arrowHeadLength\n           @see #DrawerArrowToggle_arrowShaftLength\n           @see #DrawerArrowToggle_barLength\n           @see #DrawerArrowToggle_color\n           @see #DrawerArrowToggle_drawableSize\n           @see #DrawerArrowToggle_gapBetweenBars\n           @see #DrawerArrowToggle_spinBars\n           @see #DrawerArrowToggle_thickness\n         */\n        public static final int[] DrawerArrowToggle = {\n            0x7f010027, 0x7f010028, 0x7f010029, 0x7f01002a,\n            0x7f01002b, 0x7f01002c, 0x7f01002d, 0x7f01002e\n        };\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#arrowHeadLength}\n          attribute's value can be found in the {@link #DrawerArrowToggle} array.\n\n\n          <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          @attr name com.goreact:arrowHeadLength\n        */\n        public static final int DrawerArrowToggle_arrowHeadLength = 4;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#arrowShaftLength}\n          attribute's value can be found in the {@link #DrawerArrowToggle} array.\n\n\n          <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          @attr name com.goreact:arrowShaftLength\n        */\n        public static final int DrawerArrowToggle_arrowShaftLength = 5;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#barLength}\n          attribute's value can be found in the {@link #DrawerArrowToggle} array.\n\n\n          <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          @attr name com.goreact:barLength\n        */\n        public static final int DrawerArrowToggle_barLength = 6;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#color}\n          attribute's value can be found in the {@link #DrawerArrowToggle} array.\n\n\n          <p>Must be a color value, in the form of \"<code>#<i>rgb</i></code>\", \"<code>#<i>argb</i></code>\",\n\"<code>#<i>rrggbb</i></code>\", or \"<code>#<i>aarrggbb</i></code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          @attr name com.goreact:color\n        */\n        public static final int DrawerArrowToggle_color = 0;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#drawableSize}\n          attribute's value can be found in the {@link #DrawerArrowToggle} array.\n\n\n          <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          @attr name com.goreact:drawableSize\n        */\n        public static final int DrawerArrowToggle_drawableSize = 2;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#gapBetweenBars}\n          attribute's value can be found in the {@link #DrawerArrowToggle} array.\n\n\n          <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          @attr name com.goreact:gapBetweenBars\n        */\n        public static final int DrawerArrowToggle_gapBetweenBars = 3;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#spinBars}\n          attribute's value can be found in the {@link #DrawerArrowToggle} array.\n\n\n          <p>Must be a boolean value, either \"<code>true</code>\" or \"<code>false</code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          @attr name com.goreact:spinBars\n        */\n        public static final int DrawerArrowToggle_spinBars = 1;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#thickness}\n          attribute's value can be found in the {@link #DrawerArrowToggle} array.\n\n\n          <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          @attr name com.goreact:thickness\n        */\n        public static final int DrawerArrowToggle_thickness = 7;\n        /** Attributes that can be used with a GenericDraweeView.\n           <p>Includes the following attributes:</p>\n           <table>\n           <colgroup align=\"left\" />\n           <colgroup align=\"left\" />\n           <tr><th>Attribute</th><th>Description</th></tr>\n           <tr><td><code>{@link #GenericDraweeView_actualImageScaleType com.goreact:actualImageScaleType}</code></td><td></td></tr>\n           <tr><td><code>{@link #GenericDraweeView_backgroundImage com.goreact:backgroundImage}</code></td><td></td></tr>\n           <tr><td><code>{@link #GenericDraweeView_fadeDuration com.goreact:fadeDuration}</code></td><td></td></tr>\n           <tr><td><code>{@link #GenericDraweeView_failureImage com.goreact:failureImage}</code></td><td></td></tr>\n           <tr><td><code>{@link #GenericDraweeView_failureImageScaleType com.goreact:failureImageScaleType}</code></td><td></td></tr>\n           <tr><td><code>{@link #GenericDraweeView_overlayImage com.goreact:overlayImage}</code></td><td></td></tr>\n           <tr><td><code>{@link #GenericDraweeView_placeholderImage com.goreact:placeholderImage}</code></td><td></td></tr>\n           <tr><td><code>{@link #GenericDraweeView_placeholderImageScaleType com.goreact:placeholderImageScaleType}</code></td><td></td></tr>\n           <tr><td><code>{@link #GenericDraweeView_pressedStateOverlayImage com.goreact:pressedStateOverlayImage}</code></td><td></td></tr>\n           <tr><td><code>{@link #GenericDraweeView_progressBarAutoRotateInterval com.goreact:progressBarAutoRotateInterval}</code></td><td></td></tr>\n           <tr><td><code>{@link #GenericDraweeView_progressBarImage com.goreact:progressBarImage}</code></td><td></td></tr>\n           <tr><td><code>{@link #GenericDraweeView_progressBarImageScaleType com.goreact:progressBarImageScaleType}</code></td><td></td></tr>\n           <tr><td><code>{@link #GenericDraweeView_retryImage com.goreact:retryImage}</code></td><td></td></tr>\n           <tr><td><code>{@link #GenericDraweeView_retryImageScaleType com.goreact:retryImageScaleType}</code></td><td></td></tr>\n           <tr><td><code>{@link #GenericDraweeView_roundAsCircle com.goreact:roundAsCircle}</code></td><td></td></tr>\n           <tr><td><code>{@link #GenericDraweeView_roundBottomLeft com.goreact:roundBottomLeft}</code></td><td></td></tr>\n           <tr><td><code>{@link #GenericDraweeView_roundBottomRight com.goreact:roundBottomRight}</code></td><td></td></tr>\n           <tr><td><code>{@link #GenericDraweeView_roundTopLeft com.goreact:roundTopLeft}</code></td><td></td></tr>\n           <tr><td><code>{@link #GenericDraweeView_roundTopRight com.goreact:roundTopRight}</code></td><td></td></tr>\n           <tr><td><code>{@link #GenericDraweeView_roundWithOverlayColor com.goreact:roundWithOverlayColor}</code></td><td></td></tr>\n           <tr><td><code>{@link #GenericDraweeView_roundedCornerRadius com.goreact:roundedCornerRadius}</code></td><td></td></tr>\n           <tr><td><code>{@link #GenericDraweeView_roundingBorderColor com.goreact:roundingBorderColor}</code></td><td></td></tr>\n           <tr><td><code>{@link #GenericDraweeView_roundingBorderWidth com.goreact:roundingBorderWidth}</code></td><td></td></tr>\n           <tr><td><code>{@link #GenericDraweeView_viewAspectRatio com.goreact:viewAspectRatio}</code></td><td></td></tr>\n           </table>\n           @see #GenericDraweeView_actualImageScaleType\n           @see #GenericDraweeView_backgroundImage\n           @see #GenericDraweeView_fadeDuration\n           @see #GenericDraweeView_failureImage\n           @see #GenericDraweeView_failureImageScaleType\n           @see #GenericDraweeView_overlayImage\n           @see #GenericDraweeView_placeholderImage\n           @see #GenericDraweeView_placeholderImageScaleType\n           @see #GenericDraweeView_pressedStateOverlayImage\n           @see #GenericDraweeView_progressBarAutoRotateInterval\n           @see #GenericDraweeView_progressBarImage\n           @see #GenericDraweeView_progressBarImageScaleType\n           @see #GenericDraweeView_retryImage\n           @see #GenericDraweeView_retryImageScaleType\n           @see #GenericDraweeView_roundAsCircle\n           @see #GenericDraweeView_roundBottomLeft\n           @see #GenericDraweeView_roundBottomRight\n           @see #GenericDraweeView_roundTopLeft\n           @see #GenericDraweeView_roundTopRight\n           @see #GenericDraweeView_roundWithOverlayColor\n           @see #GenericDraweeView_roundedCornerRadius\n           @see #GenericDraweeView_roundingBorderColor\n           @see #GenericDraweeView_roundingBorderWidth\n           @see #GenericDraweeView_viewAspectRatio\n         */\n        public static final int[] GenericDraweeView = {\n            0x7f01002f, 0x7f010030, 0x7f010031, 0x7f010032,\n            0x7f010033, 0x7f010034, 0x7f010035, 0x7f010036,\n            0x7f010037, 0x7f010038, 0x7f010039, 0x7f01003a,\n            0x7f01003b, 0x7f01003c, 0x7f01003d, 0x7f01003e,\n            0x7f01003f, 0x7f010040, 0x7f010041, 0x7f010042,\n            0x7f010043, 0x7f010044, 0x7f010045, 0x7f010046\n        };\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#actualImageScaleType}\n          attribute's value can be found in the {@link #GenericDraweeView} array.\n\n\n          <p>Must be one of the following constant values.</p>\n<table>\n<colgroup align=\"left\" />\n<colgroup align=\"left\" />\n<colgroup align=\"left\" />\n<tr><th>Constant</th><th>Value</th><th>Description</th></tr>\n<tr><td><code>none</code></td><td>-1</td><td></td></tr>\n<tr><td><code>fitXY</code></td><td>0</td><td></td></tr>\n<tr><td><code>fitStart</code></td><td>1</td><td></td></tr>\n<tr><td><code>fitCenter</code></td><td>2</td><td></td></tr>\n<tr><td><code>fitEnd</code></td><td>3</td><td></td></tr>\n<tr><td><code>center</code></td><td>4</td><td></td></tr>\n<tr><td><code>centerInside</code></td><td>5</td><td></td></tr>\n<tr><td><code>centerCrop</code></td><td>6</td><td></td></tr>\n<tr><td><code>focusCrop</code></td><td>7</td><td></td></tr>\n</table>\n          @attr name com.goreact:actualImageScaleType\n        */\n        public static final int GenericDraweeView_actualImageScaleType = 11;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#backgroundImage}\n          attribute's value can be found in the {@link #GenericDraweeView} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:backgroundImage\n        */\n        public static final int GenericDraweeView_backgroundImage = 12;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#fadeDuration}\n          attribute's value can be found in the {@link #GenericDraweeView} array.\n\n\n          <p>Must be an integer value, such as \"<code>100</code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          @attr name com.goreact:fadeDuration\n        */\n        public static final int GenericDraweeView_fadeDuration = 0;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#failureImage}\n          attribute's value can be found in the {@link #GenericDraweeView} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:failureImage\n        */\n        public static final int GenericDraweeView_failureImage = 6;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#failureImageScaleType}\n          attribute's value can be found in the {@link #GenericDraweeView} array.\n\n\n          <p>Must be one of the following constant values.</p>\n<table>\n<colgroup align=\"left\" />\n<colgroup align=\"left\" />\n<colgroup align=\"left\" />\n<tr><th>Constant</th><th>Value</th><th>Description</th></tr>\n<tr><td><code>none</code></td><td>-1</td><td></td></tr>\n<tr><td><code>fitXY</code></td><td>0</td><td></td></tr>\n<tr><td><code>fitStart</code></td><td>1</td><td></td></tr>\n<tr><td><code>fitCenter</code></td><td>2</td><td></td></tr>\n<tr><td><code>fitEnd</code></td><td>3</td><td></td></tr>\n<tr><td><code>center</code></td><td>4</td><td></td></tr>\n<tr><td><code>centerInside</code></td><td>5</td><td></td></tr>\n<tr><td><code>centerCrop</code></td><td>6</td><td></td></tr>\n<tr><td><code>focusCrop</code></td><td>7</td><td></td></tr>\n</table>\n          @attr name com.goreact:failureImageScaleType\n        */\n        public static final int GenericDraweeView_failureImageScaleType = 7;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#overlayImage}\n          attribute's value can be found in the {@link #GenericDraweeView} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:overlayImage\n        */\n        public static final int GenericDraweeView_overlayImage = 13;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#placeholderImage}\n          attribute's value can be found in the {@link #GenericDraweeView} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:placeholderImage\n        */\n        public static final int GenericDraweeView_placeholderImage = 2;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#placeholderImageScaleType}\n          attribute's value can be found in the {@link #GenericDraweeView} array.\n\n\n          <p>Must be one of the following constant values.</p>\n<table>\n<colgroup align=\"left\" />\n<colgroup align=\"left\" />\n<colgroup align=\"left\" />\n<tr><th>Constant</th><th>Value</th><th>Description</th></tr>\n<tr><td><code>none</code></td><td>-1</td><td></td></tr>\n<tr><td><code>fitXY</code></td><td>0</td><td></td></tr>\n<tr><td><code>fitStart</code></td><td>1</td><td></td></tr>\n<tr><td><code>fitCenter</code></td><td>2</td><td></td></tr>\n<tr><td><code>fitEnd</code></td><td>3</td><td></td></tr>\n<tr><td><code>center</code></td><td>4</td><td></td></tr>\n<tr><td><code>centerInside</code></td><td>5</td><td></td></tr>\n<tr><td><code>centerCrop</code></td><td>6</td><td></td></tr>\n<tr><td><code>focusCrop</code></td><td>7</td><td></td></tr>\n</table>\n          @attr name com.goreact:placeholderImageScaleType\n        */\n        public static final int GenericDraweeView_placeholderImageScaleType = 3;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#pressedStateOverlayImage}\n          attribute's value can be found in the {@link #GenericDraweeView} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:pressedStateOverlayImage\n        */\n        public static final int GenericDraweeView_pressedStateOverlayImage = 14;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#progressBarAutoRotateInterval}\n          attribute's value can be found in the {@link #GenericDraweeView} array.\n\n\n          <p>Must be an integer value, such as \"<code>100</code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          @attr name com.goreact:progressBarAutoRotateInterval\n        */\n        public static final int GenericDraweeView_progressBarAutoRotateInterval = 10;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#progressBarImage}\n          attribute's value can be found in the {@link #GenericDraweeView} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:progressBarImage\n        */\n        public static final int GenericDraweeView_progressBarImage = 8;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#progressBarImageScaleType}\n          attribute's value can be found in the {@link #GenericDraweeView} array.\n\n\n          <p>Must be one of the following constant values.</p>\n<table>\n<colgroup align=\"left\" />\n<colgroup align=\"left\" />\n<colgroup align=\"left\" />\n<tr><th>Constant</th><th>Value</th><th>Description</th></tr>\n<tr><td><code>none</code></td><td>-1</td><td></td></tr>\n<tr><td><code>fitXY</code></td><td>0</td><td></td></tr>\n<tr><td><code>fitStart</code></td><td>1</td><td></td></tr>\n<tr><td><code>fitCenter</code></td><td>2</td><td></td></tr>\n<tr><td><code>fitEnd</code></td><td>3</td><td></td></tr>\n<tr><td><code>center</code></td><td>4</td><td></td></tr>\n<tr><td><code>centerInside</code></td><td>5</td><td></td></tr>\n<tr><td><code>centerCrop</code></td><td>6</td><td></td></tr>\n<tr><td><code>focusCrop</code></td><td>7</td><td></td></tr>\n</table>\n          @attr name com.goreact:progressBarImageScaleType\n        */\n        public static final int GenericDraweeView_progressBarImageScaleType = 9;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#retryImage}\n          attribute's value can be found in the {@link #GenericDraweeView} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:retryImage\n        */\n        public static final int GenericDraweeView_retryImage = 4;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#retryImageScaleType}\n          attribute's value can be found in the {@link #GenericDraweeView} array.\n\n\n          <p>Must be one of the following constant values.</p>\n<table>\n<colgroup align=\"left\" />\n<colgroup align=\"left\" />\n<colgroup align=\"left\" />\n<tr><th>Constant</th><th>Value</th><th>Description</th></tr>\n<tr><td><code>none</code></td><td>-1</td><td></td></tr>\n<tr><td><code>fitXY</code></td><td>0</td><td></td></tr>\n<tr><td><code>fitStart</code></td><td>1</td><td></td></tr>\n<tr><td><code>fitCenter</code></td><td>2</td><td></td></tr>\n<tr><td><code>fitEnd</code></td><td>3</td><td></td></tr>\n<tr><td><code>center</code></td><td>4</td><td></td></tr>\n<tr><td><code>centerInside</code></td><td>5</td><td></td></tr>\n<tr><td><code>centerCrop</code></td><td>6</td><td></td></tr>\n<tr><td><code>focusCrop</code></td><td>7</td><td></td></tr>\n</table>\n          @attr name com.goreact:retryImageScaleType\n        */\n        public static final int GenericDraweeView_retryImageScaleType = 5;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#roundAsCircle}\n          attribute's value can be found in the {@link #GenericDraweeView} array.\n\n\n          <p>Must be a boolean value, either \"<code>true</code>\" or \"<code>false</code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          @attr name com.goreact:roundAsCircle\n        */\n        public static final int GenericDraweeView_roundAsCircle = 15;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#roundBottomLeft}\n          attribute's value can be found in the {@link #GenericDraweeView} array.\n\n\n          <p>Must be a boolean value, either \"<code>true</code>\" or \"<code>false</code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          @attr name com.goreact:roundBottomLeft\n        */\n        public static final int GenericDraweeView_roundBottomLeft = 20;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#roundBottomRight}\n          attribute's value can be found in the {@link #GenericDraweeView} array.\n\n\n          <p>Must be a boolean value, either \"<code>true</code>\" or \"<code>false</code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          @attr name com.goreact:roundBottomRight\n        */\n        public static final int GenericDraweeView_roundBottomRight = 19;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#roundTopLeft}\n          attribute's value can be found in the {@link #GenericDraweeView} array.\n\n\n          <p>Must be a boolean value, either \"<code>true</code>\" or \"<code>false</code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          @attr name com.goreact:roundTopLeft\n        */\n        public static final int GenericDraweeView_roundTopLeft = 17;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#roundTopRight}\n          attribute's value can be found in the {@link #GenericDraweeView} array.\n\n\n          <p>Must be a boolean value, either \"<code>true</code>\" or \"<code>false</code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          @attr name com.goreact:roundTopRight\n        */\n        public static final int GenericDraweeView_roundTopRight = 18;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#roundWithOverlayColor}\n          attribute's value can be found in the {@link #GenericDraweeView} array.\n\n\n          <p>Must be a color value, in the form of \"<code>#<i>rgb</i></code>\", \"<code>#<i>argb</i></code>\",\n\"<code>#<i>rrggbb</i></code>\", or \"<code>#<i>aarrggbb</i></code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          @attr name com.goreact:roundWithOverlayColor\n        */\n        public static final int GenericDraweeView_roundWithOverlayColor = 21;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#roundedCornerRadius}\n          attribute's value can be found in the {@link #GenericDraweeView} array.\n\n\n          <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          @attr name com.goreact:roundedCornerRadius\n        */\n        public static final int GenericDraweeView_roundedCornerRadius = 16;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#roundingBorderColor}\n          attribute's value can be found in the {@link #GenericDraweeView} array.\n\n\n          <p>Must be a color value, in the form of \"<code>#<i>rgb</i></code>\", \"<code>#<i>argb</i></code>\",\n\"<code>#<i>rrggbb</i></code>\", or \"<code>#<i>aarrggbb</i></code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          @attr name com.goreact:roundingBorderColor\n        */\n        public static final int GenericDraweeView_roundingBorderColor = 23;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#roundingBorderWidth}\n          attribute's value can be found in the {@link #GenericDraweeView} array.\n\n\n          <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          @attr name com.goreact:roundingBorderWidth\n        */\n        public static final int GenericDraweeView_roundingBorderWidth = 22;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#viewAspectRatio}\n          attribute's value can be found in the {@link #GenericDraweeView} array.\n\n\n          <p>Must be a floating point value, such as \"<code>1.2</code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          @attr name com.goreact:viewAspectRatio\n        */\n        public static final int GenericDraweeView_viewAspectRatio = 1;\n        /** Attributes that can be used with a LinearLayoutCompat.\n           <p>Includes the following attributes:</p>\n           <table>\n           <colgroup align=\"left\" />\n           <colgroup align=\"left\" />\n           <tr><th>Attribute</th><th>Description</th></tr>\n           <tr><td><code>{@link #LinearLayoutCompat_android_baselineAligned android:baselineAligned}</code></td><td></td></tr>\n           <tr><td><code>{@link #LinearLayoutCompat_android_baselineAlignedChildIndex android:baselineAlignedChildIndex}</code></td><td></td></tr>\n           <tr><td><code>{@link #LinearLayoutCompat_android_gravity android:gravity}</code></td><td></td></tr>\n           <tr><td><code>{@link #LinearLayoutCompat_android_orientation android:orientation}</code></td><td></td></tr>\n           <tr><td><code>{@link #LinearLayoutCompat_android_weightSum android:weightSum}</code></td><td></td></tr>\n           <tr><td><code>{@link #LinearLayoutCompat_divider com.goreact:divider}</code></td><td></td></tr>\n           <tr><td><code>{@link #LinearLayoutCompat_dividerPadding com.goreact:dividerPadding}</code></td><td></td></tr>\n           <tr><td><code>{@link #LinearLayoutCompat_measureWithLargestChild com.goreact:measureWithLargestChild}</code></td><td></td></tr>\n           <tr><td><code>{@link #LinearLayoutCompat_showDividers com.goreact:showDividers}</code></td><td></td></tr>\n           </table>\n           @see #LinearLayoutCompat_android_baselineAligned\n           @see #LinearLayoutCompat_android_baselineAlignedChildIndex\n           @see #LinearLayoutCompat_android_gravity\n           @see #LinearLayoutCompat_android_orientation\n           @see #LinearLayoutCompat_android_weightSum\n           @see #LinearLayoutCompat_divider\n           @see #LinearLayoutCompat_dividerPadding\n           @see #LinearLayoutCompat_measureWithLargestChild\n           @see #LinearLayoutCompat_showDividers\n         */\n        public static final int[] LinearLayoutCompat = {\n            0x010100af, 0x010100c4, 0x01010126, 0x01010127,\n            0x01010128, 0x7f01000b, 0x7f010047, 0x7f010048,\n            0x7f010049\n        };\n        /**\n          <p>This symbol is the offset where the {@link android.R.attr#baselineAligned}\n          attribute's value can be found in the {@link #LinearLayoutCompat} array.\n          @attr name android:baselineAligned\n        */\n        public static final int LinearLayoutCompat_android_baselineAligned = 2;\n        /**\n          <p>This symbol is the offset where the {@link android.R.attr#baselineAlignedChildIndex}\n          attribute's value can be found in the {@link #LinearLayoutCompat} array.\n          @attr name android:baselineAlignedChildIndex\n        */\n        public static final int LinearLayoutCompat_android_baselineAlignedChildIndex = 3;\n        /**\n          <p>This symbol is the offset where the {@link android.R.attr#gravity}\n          attribute's value can be found in the {@link #LinearLayoutCompat} array.\n          @attr name android:gravity\n        */\n        public static final int LinearLayoutCompat_android_gravity = 0;\n        /**\n          <p>This symbol is the offset where the {@link android.R.attr#orientation}\n          attribute's value can be found in the {@link #LinearLayoutCompat} array.\n          @attr name android:orientation\n        */\n        public static final int LinearLayoutCompat_android_orientation = 1;\n        /**\n          <p>This symbol is the offset where the {@link android.R.attr#weightSum}\n          attribute's value can be found in the {@link #LinearLayoutCompat} array.\n          @attr name android:weightSum\n        */\n        public static final int LinearLayoutCompat_android_weightSum = 4;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#divider}\n          attribute's value can be found in the {@link #LinearLayoutCompat} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:divider\n        */\n        public static final int LinearLayoutCompat_divider = 5;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#dividerPadding}\n          attribute's value can be found in the {@link #LinearLayoutCompat} array.\n\n\n          <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          @attr name com.goreact:dividerPadding\n        */\n        public static final int LinearLayoutCompat_dividerPadding = 8;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#measureWithLargestChild}\n          attribute's value can be found in the {@link #LinearLayoutCompat} array.\n\n\n          <p>Must be a boolean value, either \"<code>true</code>\" or \"<code>false</code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          @attr name com.goreact:measureWithLargestChild\n        */\n        public static final int LinearLayoutCompat_measureWithLargestChild = 6;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#showDividers}\n          attribute's value can be found in the {@link #LinearLayoutCompat} array.\n\n\n          <p>Must be one or more (separated by '|') of the following constant values.</p>\n<table>\n<colgroup align=\"left\" />\n<colgroup align=\"left\" />\n<colgroup align=\"left\" />\n<tr><th>Constant</th><th>Value</th><th>Description</th></tr>\n<tr><td><code>none</code></td><td>0</td><td></td></tr>\n<tr><td><code>beginning</code></td><td>1</td><td></td></tr>\n<tr><td><code>middle</code></td><td>2</td><td></td></tr>\n<tr><td><code>end</code></td><td>4</td><td></td></tr>\n</table>\n          @attr name com.goreact:showDividers\n        */\n        public static final int LinearLayoutCompat_showDividers = 7;\n        /** Attributes that can be used with a LinearLayoutCompat_Layout.\n           <p>Includes the following attributes:</p>\n           <table>\n           <colgroup align=\"left\" />\n           <colgroup align=\"left\" />\n           <tr><th>Attribute</th><th>Description</th></tr>\n           <tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_gravity android:layout_gravity}</code></td><td></td></tr>\n           <tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_height android:layout_height}</code></td><td></td></tr>\n           <tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_weight android:layout_weight}</code></td><td></td></tr>\n           <tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_width android:layout_width}</code></td><td></td></tr>\n           </table>\n           @see #LinearLayoutCompat_Layout_android_layout_gravity\n           @see #LinearLayoutCompat_Layout_android_layout_height\n           @see #LinearLayoutCompat_Layout_android_layout_weight\n           @see #LinearLayoutCompat_Layout_android_layout_width\n         */\n        public static final int[] LinearLayoutCompat_Layout = {\n            0x010100b3, 0x010100f4, 0x010100f5, 0x01010181\n        };\n        /**\n          <p>This symbol is the offset where the {@link android.R.attr#layout_gravity}\n          attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.\n          @attr name android:layout_gravity\n        */\n        public static final int LinearLayoutCompat_Layout_android_layout_gravity = 0;\n        /**\n          <p>This symbol is the offset where the {@link android.R.attr#layout_height}\n          attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.\n          @attr name android:layout_height\n        */\n        public static final int LinearLayoutCompat_Layout_android_layout_height = 2;\n        /**\n          <p>This symbol is the offset where the {@link android.R.attr#layout_weight}\n          attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.\n          @attr name android:layout_weight\n        */\n        public static final int LinearLayoutCompat_Layout_android_layout_weight = 3;\n        /**\n          <p>This symbol is the offset where the {@link android.R.attr#layout_width}\n          attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.\n          @attr name android:layout_width\n        */\n        public static final int LinearLayoutCompat_Layout_android_layout_width = 1;\n        /** Attributes that can be used with a ListPopupWindow.\n           <p>Includes the following attributes:</p>\n           <table>\n           <colgroup align=\"left\" />\n           <colgroup align=\"left\" />\n           <tr><th>Attribute</th><th>Description</th></tr>\n           <tr><td><code>{@link #ListPopupWindow_android_dropDownHorizontalOffset android:dropDownHorizontalOffset}</code></td><td></td></tr>\n           <tr><td><code>{@link #ListPopupWindow_android_dropDownVerticalOffset android:dropDownVerticalOffset}</code></td><td></td></tr>\n           </table>\n           @see #ListPopupWindow_android_dropDownHorizontalOffset\n           @see #ListPopupWindow_android_dropDownVerticalOffset\n         */\n        public static final int[] ListPopupWindow = {\n            0x010102ac, 0x010102ad\n        };\n        /**\n          <p>This symbol is the offset where the {@link android.R.attr#dropDownHorizontalOffset}\n          attribute's value can be found in the {@link #ListPopupWindow} array.\n          @attr name android:dropDownHorizontalOffset\n        */\n        public static final int ListPopupWindow_android_dropDownHorizontalOffset = 0;\n        /**\n          <p>This symbol is the offset where the {@link android.R.attr#dropDownVerticalOffset}\n          attribute's value can be found in the {@link #ListPopupWindow} array.\n          @attr name android:dropDownVerticalOffset\n        */\n        public static final int ListPopupWindow_android_dropDownVerticalOffset = 1;\n        /** Attributes that can be used with a MenuGroup.\n           <p>Includes the following attributes:</p>\n           <table>\n           <colgroup align=\"left\" />\n           <colgroup align=\"left\" />\n           <tr><th>Attribute</th><th>Description</th></tr>\n           <tr><td><code>{@link #MenuGroup_android_checkableBehavior android:checkableBehavior}</code></td><td></td></tr>\n           <tr><td><code>{@link #MenuGroup_android_enabled android:enabled}</code></td><td></td></tr>\n           <tr><td><code>{@link #MenuGroup_android_id android:id}</code></td><td></td></tr>\n           <tr><td><code>{@link #MenuGroup_android_menuCategory android:menuCategory}</code></td><td></td></tr>\n           <tr><td><code>{@link #MenuGroup_android_orderInCategory android:orderInCategory}</code></td><td></td></tr>\n           <tr><td><code>{@link #MenuGroup_android_visible android:visible}</code></td><td></td></tr>\n           </table>\n           @see #MenuGroup_android_checkableBehavior\n           @see #MenuGroup_android_enabled\n           @see #MenuGroup_android_id\n           @see #MenuGroup_android_menuCategory\n           @see #MenuGroup_android_orderInCategory\n           @see #MenuGroup_android_visible\n         */\n        public static final int[] MenuGroup = {\n            0x0101000e, 0x010100d0, 0x01010194, 0x010101de,\n            0x010101df, 0x010101e0\n        };\n        /**\n          <p>This symbol is the offset where the {@link android.R.attr#checkableBehavior}\n          attribute's value can be found in the {@link #MenuGroup} array.\n          @attr name android:checkableBehavior\n        */\n        public static final int MenuGroup_android_checkableBehavior = 5;\n        /**\n          <p>This symbol is the offset where the {@link android.R.attr#enabled}\n          attribute's value can be found in the {@link #MenuGroup} array.\n          @attr name android:enabled\n        */\n        public static final int MenuGroup_android_enabled = 0;\n        /**\n          <p>This symbol is the offset where the {@link android.R.attr#id}\n          attribute's value can be found in the {@link #MenuGroup} array.\n          @attr name android:id\n        */\n        public static final int MenuGroup_android_id = 1;\n        /**\n          <p>This symbol is the offset where the {@link android.R.attr#menuCategory}\n          attribute's value can be found in the {@link #MenuGroup} array.\n          @attr name android:menuCategory\n        */\n        public static final int MenuGroup_android_menuCategory = 3;\n        /**\n          <p>This symbol is the offset where the {@link android.R.attr#orderInCategory}\n          attribute's value can be found in the {@link #MenuGroup} array.\n          @attr name android:orderInCategory\n        */\n        public static final int MenuGroup_android_orderInCategory = 4;\n        /**\n          <p>This symbol is the offset where the {@link android.R.attr#visible}\n          attribute's value can be found in the {@link #MenuGroup} array.\n          @attr name android:visible\n        */\n        public static final int MenuGroup_android_visible = 2;\n        /** Attributes that can be used with a MenuItem.\n           <p>Includes the following attributes:</p>\n           <table>\n           <colgroup align=\"left\" />\n           <colgroup align=\"left\" />\n           <tr><th>Attribute</th><th>Description</th></tr>\n           <tr><td><code>{@link #MenuItem_actionLayout com.goreact:actionLayout}</code></td><td></td></tr>\n           <tr><td><code>{@link #MenuItem_actionProviderClass com.goreact:actionProviderClass}</code></td><td></td></tr>\n           <tr><td><code>{@link #MenuItem_actionViewClass com.goreact:actionViewClass}</code></td><td></td></tr>\n           <tr><td><code>{@link #MenuItem_android_alphabeticShortcut android:alphabeticShortcut}</code></td><td></td></tr>\n           <tr><td><code>{@link #MenuItem_android_checkable android:checkable}</code></td><td></td></tr>\n           <tr><td><code>{@link #MenuItem_android_checked android:checked}</code></td><td></td></tr>\n           <tr><td><code>{@link #MenuItem_android_enabled android:enabled}</code></td><td></td></tr>\n           <tr><td><code>{@link #MenuItem_android_icon android:icon}</code></td><td></td></tr>\n           <tr><td><code>{@link #MenuItem_android_id android:id}</code></td><td></td></tr>\n           <tr><td><code>{@link #MenuItem_android_menuCategory android:menuCategory}</code></td><td></td></tr>\n           <tr><td><code>{@link #MenuItem_android_numericShortcut android:numericShortcut}</code></td><td></td></tr>\n           <tr><td><code>{@link #MenuItem_android_onClick android:onClick}</code></td><td></td></tr>\n           <tr><td><code>{@link #MenuItem_android_orderInCategory android:orderInCategory}</code></td><td></td></tr>\n           <tr><td><code>{@link #MenuItem_android_title android:title}</code></td><td></td></tr>\n           <tr><td><code>{@link #MenuItem_android_titleCondensed android:titleCondensed}</code></td><td></td></tr>\n           <tr><td><code>{@link #MenuItem_android_visible android:visible}</code></td><td></td></tr>\n           <tr><td><code>{@link #MenuItem_showAsAction com.goreact:showAsAction}</code></td><td></td></tr>\n           </table>\n           @see #MenuItem_actionLayout\n           @see #MenuItem_actionProviderClass\n           @see #MenuItem_actionViewClass\n           @see #MenuItem_android_alphabeticShortcut\n           @see #MenuItem_android_checkable\n           @see #MenuItem_android_checked\n           @see #MenuItem_android_enabled\n           @see #MenuItem_android_icon\n           @see #MenuItem_android_id\n           @see #MenuItem_android_menuCategory\n           @see #MenuItem_android_numericShortcut\n           @see #MenuItem_android_onClick\n           @see #MenuItem_android_orderInCategory\n           @see #MenuItem_android_title\n           @see #MenuItem_android_titleCondensed\n           @see #MenuItem_android_visible\n           @see #MenuItem_showAsAction\n         */\n        public static final int[] MenuItem = {\n            0x01010002, 0x0101000e, 0x010100d0, 0x01010106,\n            0x01010194, 0x010101de, 0x010101df, 0x010101e1,\n            0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5,\n            0x0101026f, 0x7f01004a, 0x7f01004b, 0x7f01004c,\n            0x7f01004d\n        };\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#actionLayout}\n          attribute's value can be found in the {@link #MenuItem} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:actionLayout\n        */\n        public static final int MenuItem_actionLayout = 14;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#actionProviderClass}\n          attribute's value can be found in the {@link #MenuItem} array.\n\n\n          <p>Must be a string value, using '\\\\;' to escape characters such as '\\\\n' or '\\\\uxxxx' for a unicode character.\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          @attr name com.goreact:actionProviderClass\n        */\n        public static final int MenuItem_actionProviderClass = 16;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#actionViewClass}\n          attribute's value can be found in the {@link #MenuItem} array.\n\n\n          <p>Must be a string value, using '\\\\;' to escape characters such as '\\\\n' or '\\\\uxxxx' for a unicode character.\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          @attr name com.goreact:actionViewClass\n        */\n        public static final int MenuItem_actionViewClass = 15;\n        /**\n          <p>This symbol is the offset where the {@link android.R.attr#alphabeticShortcut}\n          attribute's value can be found in the {@link #MenuItem} array.\n          @attr name android:alphabeticShortcut\n        */\n        public static final int MenuItem_android_alphabeticShortcut = 9;\n        /**\n          <p>This symbol is the offset where the {@link android.R.attr#checkable}\n          attribute's value can be found in the {@link #MenuItem} array.\n          @attr name android:checkable\n        */\n        public static final int MenuItem_android_checkable = 11;\n        /**\n          <p>This symbol is the offset where the {@link android.R.attr#checked}\n          attribute's value can be found in the {@link #MenuItem} array.\n          @attr name android:checked\n        */\n        public static final int MenuItem_android_checked = 3;\n        /**\n          <p>This symbol is the offset where the {@link android.R.attr#enabled}\n          attribute's value can be found in the {@link #MenuItem} array.\n          @attr name android:enabled\n        */\n        public static final int MenuItem_android_enabled = 1;\n        /**\n          <p>This symbol is the offset where the {@link android.R.attr#icon}\n          attribute's value can be found in the {@link #MenuItem} array.\n          @attr name android:icon\n        */\n        public static final int MenuItem_android_icon = 0;\n        /**\n          <p>This symbol is the offset where the {@link android.R.attr#id}\n          attribute's value can be found in the {@link #MenuItem} array.\n          @attr name android:id\n        */\n        public static final int MenuItem_android_id = 2;\n        /**\n          <p>This symbol is the offset where the {@link android.R.attr#menuCategory}\n          attribute's value can be found in the {@link #MenuItem} array.\n          @attr name android:menuCategory\n        */\n        public static final int MenuItem_android_menuCategory = 5;\n        /**\n          <p>This symbol is the offset where the {@link android.R.attr#numericShortcut}\n          attribute's value can be found in the {@link #MenuItem} array.\n          @attr name android:numericShortcut\n        */\n        public static final int MenuItem_android_numericShortcut = 10;\n        /**\n          <p>This symbol is the offset where the {@link android.R.attr#onClick}\n          attribute's value can be found in the {@link #MenuItem} array.\n          @attr name android:onClick\n        */\n        public static final int MenuItem_android_onClick = 12;\n        /**\n          <p>This symbol is the offset where the {@link android.R.attr#orderInCategory}\n          attribute's value can be found in the {@link #MenuItem} array.\n          @attr name android:orderInCategory\n        */\n        public static final int MenuItem_android_orderInCategory = 6;\n        /**\n          <p>This symbol is the offset where the {@link android.R.attr#title}\n          attribute's value can be found in the {@link #MenuItem} array.\n          @attr name android:title\n        */\n        public static final int MenuItem_android_title = 7;\n        /**\n          <p>This symbol is the offset where the {@link android.R.attr#titleCondensed}\n          attribute's value can be found in the {@link #MenuItem} array.\n          @attr name android:titleCondensed\n        */\n        public static final int MenuItem_android_titleCondensed = 8;\n        /**\n          <p>This symbol is the offset where the {@link android.R.attr#visible}\n          attribute's value can be found in the {@link #MenuItem} array.\n          @attr name android:visible\n        */\n        public static final int MenuItem_android_visible = 4;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#showAsAction}\n          attribute's value can be found in the {@link #MenuItem} array.\n\n\n          <p>Must be one or more (separated by '|') of the following constant values.</p>\n<table>\n<colgroup align=\"left\" />\n<colgroup align=\"left\" />\n<colgroup align=\"left\" />\n<tr><th>Constant</th><th>Value</th><th>Description</th></tr>\n<tr><td><code>never</code></td><td>0</td><td></td></tr>\n<tr><td><code>ifRoom</code></td><td>1</td><td></td></tr>\n<tr><td><code>always</code></td><td>2</td><td></td></tr>\n<tr><td><code>withText</code></td><td>4</td><td></td></tr>\n<tr><td><code>collapseActionView</code></td><td>8</td><td></td></tr>\n</table>\n          @attr name com.goreact:showAsAction\n        */\n        public static final int MenuItem_showAsAction = 13;\n        /** Attributes that can be used with a MenuView.\n           <p>Includes the following attributes:</p>\n           <table>\n           <colgroup align=\"left\" />\n           <colgroup align=\"left\" />\n           <tr><th>Attribute</th><th>Description</th></tr>\n           <tr><td><code>{@link #MenuView_android_headerBackground android:headerBackground}</code></td><td></td></tr>\n           <tr><td><code>{@link #MenuView_android_horizontalDivider android:horizontalDivider}</code></td><td></td></tr>\n           <tr><td><code>{@link #MenuView_android_itemBackground android:itemBackground}</code></td><td></td></tr>\n           <tr><td><code>{@link #MenuView_android_itemIconDisabledAlpha android:itemIconDisabledAlpha}</code></td><td></td></tr>\n           <tr><td><code>{@link #MenuView_android_itemTextAppearance android:itemTextAppearance}</code></td><td></td></tr>\n           <tr><td><code>{@link #MenuView_android_verticalDivider android:verticalDivider}</code></td><td></td></tr>\n           <tr><td><code>{@link #MenuView_android_windowAnimationStyle android:windowAnimationStyle}</code></td><td></td></tr>\n           <tr><td><code>{@link #MenuView_preserveIconSpacing com.goreact:preserveIconSpacing}</code></td><td></td></tr>\n           </table>\n           @see #MenuView_android_headerBackground\n           @see #MenuView_android_horizontalDivider\n           @see #MenuView_android_itemBackground\n           @see #MenuView_android_itemIconDisabledAlpha\n           @see #MenuView_android_itemTextAppearance\n           @see #MenuView_android_verticalDivider\n           @see #MenuView_android_windowAnimationStyle\n           @see #MenuView_preserveIconSpacing\n         */\n        public static final int[] MenuView = {\n            0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e,\n            0x0101012f, 0x01010130, 0x01010131, 0x7f01004e\n        };\n        /**\n          <p>This symbol is the offset where the {@link android.R.attr#headerBackground}\n          attribute's value can be found in the {@link #MenuView} array.\n          @attr name android:headerBackground\n        */\n        public static final int MenuView_android_headerBackground = 4;\n        /**\n          <p>This symbol is the offset where the {@link android.R.attr#horizontalDivider}\n          attribute's value can be found in the {@link #MenuView} array.\n          @attr name android:horizontalDivider\n        */\n        public static final int MenuView_android_horizontalDivider = 2;\n        /**\n          <p>This symbol is the offset where the {@link android.R.attr#itemBackground}\n          attribute's value can be found in the {@link #MenuView} array.\n          @attr name android:itemBackground\n        */\n        public static final int MenuView_android_itemBackground = 5;\n        /**\n          <p>This symbol is the offset where the {@link android.R.attr#itemIconDisabledAlpha}\n          attribute's value can be found in the {@link #MenuView} array.\n          @attr name android:itemIconDisabledAlpha\n        */\n        public static final int MenuView_android_itemIconDisabledAlpha = 6;\n        /**\n          <p>This symbol is the offset where the {@link android.R.attr#itemTextAppearance}\n          attribute's value can be found in the {@link #MenuView} array.\n          @attr name android:itemTextAppearance\n        */\n        public static final int MenuView_android_itemTextAppearance = 1;\n        /**\n          <p>This symbol is the offset where the {@link android.R.attr#verticalDivider}\n          attribute's value can be found in the {@link #MenuView} array.\n          @attr name android:verticalDivider\n        */\n        public static final int MenuView_android_verticalDivider = 3;\n        /**\n          <p>This symbol is the offset where the {@link android.R.attr#windowAnimationStyle}\n          attribute's value can be found in the {@link #MenuView} array.\n          @attr name android:windowAnimationStyle\n        */\n        public static final int MenuView_android_windowAnimationStyle = 0;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#preserveIconSpacing}\n          attribute's value can be found in the {@link #MenuView} array.\n\n\n          <p>Must be a boolean value, either \"<code>true</code>\" or \"<code>false</code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          @attr name com.goreact:preserveIconSpacing\n        */\n        public static final int MenuView_preserveIconSpacing = 7;\n        /** Attributes that can be used with a PopupWindow.\n           <p>Includes the following attributes:</p>\n           <table>\n           <colgroup align=\"left\" />\n           <colgroup align=\"left\" />\n           <tr><th>Attribute</th><th>Description</th></tr>\n           <tr><td><code>{@link #PopupWindow_android_popupBackground android:popupBackground}</code></td><td></td></tr>\n           <tr><td><code>{@link #PopupWindow_overlapAnchor com.goreact:overlapAnchor}</code></td><td></td></tr>\n           </table>\n           @see #PopupWindow_android_popupBackground\n           @see #PopupWindow_overlapAnchor\n         */\n        public static final int[] PopupWindow = {\n            0x01010176, 0x7f01004f\n        };\n        /**\n          <p>This symbol is the offset where the {@link android.R.attr#popupBackground}\n          attribute's value can be found in the {@link #PopupWindow} array.\n          @attr name android:popupBackground\n        */\n        public static final int PopupWindow_android_popupBackground = 0;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#overlapAnchor}\n          attribute's value can be found in the {@link #PopupWindow} array.\n\n\n          <p>Must be a boolean value, either \"<code>true</code>\" or \"<code>false</code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          @attr name com.goreact:overlapAnchor\n        */\n        public static final int PopupWindow_overlapAnchor = 1;\n        /** Attributes that can be used with a PopupWindowBackgroundState.\n           <p>Includes the following attributes:</p>\n           <table>\n           <colgroup align=\"left\" />\n           <colgroup align=\"left\" />\n           <tr><th>Attribute</th><th>Description</th></tr>\n           <tr><td><code>{@link #PopupWindowBackgroundState_state_above_anchor com.goreact:state_above_anchor}</code></td><td></td></tr>\n           </table>\n           @see #PopupWindowBackgroundState_state_above_anchor\n         */\n        public static final int[] PopupWindowBackgroundState = {\n            0x7f010050\n        };\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#state_above_anchor}\n          attribute's value can be found in the {@link #PopupWindowBackgroundState} array.\n\n\n          <p>Must be a boolean value, either \"<code>true</code>\" or \"<code>false</code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          @attr name com.goreact:state_above_anchor\n        */\n        public static final int PopupWindowBackgroundState_state_above_anchor = 0;\n        /** Attributes that can be used with a RecyclerView.\n           <p>Includes the following attributes:</p>\n           <table>\n           <colgroup align=\"left\" />\n           <colgroup align=\"left\" />\n           <tr><th>Attribute</th><th>Description</th></tr>\n           <tr><td><code>{@link #RecyclerView_android_orientation android:orientation}</code></td><td></td></tr>\n           <tr><td><code>{@link #RecyclerView_layoutManager com.goreact:layoutManager}</code></td><td></td></tr>\n           <tr><td><code>{@link #RecyclerView_reverseLayout com.goreact:reverseLayout}</code></td><td></td></tr>\n           <tr><td><code>{@link #RecyclerView_spanCount com.goreact:spanCount}</code></td><td></td></tr>\n           <tr><td><code>{@link #RecyclerView_stackFromEnd com.goreact:stackFromEnd}</code></td><td></td></tr>\n           </table>\n           @see #RecyclerView_android_orientation\n           @see #RecyclerView_layoutManager\n           @see #RecyclerView_reverseLayout\n           @see #RecyclerView_spanCount\n           @see #RecyclerView_stackFromEnd\n         */\n        public static final int[] RecyclerView = {\n            0x010100c4, 0x7f010051, 0x7f010052, 0x7f010053,\n            0x7f010054\n        };\n        /**\n          <p>This symbol is the offset where the {@link android.R.attr#orientation}\n          attribute's value can be found in the {@link #RecyclerView} array.\n          @attr name android:orientation\n        */\n        public static final int RecyclerView_android_orientation = 0;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#layoutManager}\n          attribute's value can be found in the {@link #RecyclerView} array.\n\n\n          <p>Must be a string value, using '\\\\;' to escape characters such as '\\\\n' or '\\\\uxxxx' for a unicode character.\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          @attr name com.goreact:layoutManager\n        */\n        public static final int RecyclerView_layoutManager = 1;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#reverseLayout}\n          attribute's value can be found in the {@link #RecyclerView} array.\n\n\n          <p>Must be a boolean value, either \"<code>true</code>\" or \"<code>false</code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          @attr name com.goreact:reverseLayout\n        */\n        public static final int RecyclerView_reverseLayout = 3;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#spanCount}\n          attribute's value can be found in the {@link #RecyclerView} array.\n\n\n          <p>Must be an integer value, such as \"<code>100</code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          @attr name com.goreact:spanCount\n        */\n        public static final int RecyclerView_spanCount = 2;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#stackFromEnd}\n          attribute's value can be found in the {@link #RecyclerView} array.\n\n\n          <p>Must be a boolean value, either \"<code>true</code>\" or \"<code>false</code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          @attr name com.goreact:stackFromEnd\n        */\n        public static final int RecyclerView_stackFromEnd = 4;\n        /** Attributes that can be used with a SearchView.\n           <p>Includes the following attributes:</p>\n           <table>\n           <colgroup align=\"left\" />\n           <colgroup align=\"left\" />\n           <tr><th>Attribute</th><th>Description</th></tr>\n           <tr><td><code>{@link #SearchView_android_focusable android:focusable}</code></td><td></td></tr>\n           <tr><td><code>{@link #SearchView_android_imeOptions android:imeOptions}</code></td><td></td></tr>\n           <tr><td><code>{@link #SearchView_android_inputType android:inputType}</code></td><td></td></tr>\n           <tr><td><code>{@link #SearchView_android_maxWidth android:maxWidth}</code></td><td></td></tr>\n           <tr><td><code>{@link #SearchView_closeIcon com.goreact:closeIcon}</code></td><td></td></tr>\n           <tr><td><code>{@link #SearchView_commitIcon com.goreact:commitIcon}</code></td><td></td></tr>\n           <tr><td><code>{@link #SearchView_defaultQueryHint com.goreact:defaultQueryHint}</code></td><td></td></tr>\n           <tr><td><code>{@link #SearchView_goIcon com.goreact:goIcon}</code></td><td></td></tr>\n           <tr><td><code>{@link #SearchView_iconifiedByDefault com.goreact:iconifiedByDefault}</code></td><td></td></tr>\n           <tr><td><code>{@link #SearchView_layout com.goreact:layout}</code></td><td></td></tr>\n           <tr><td><code>{@link #SearchView_queryBackground com.goreact:queryBackground}</code></td><td></td></tr>\n           <tr><td><code>{@link #SearchView_queryHint com.goreact:queryHint}</code></td><td></td></tr>\n           <tr><td><code>{@link #SearchView_searchHintIcon com.goreact:searchHintIcon}</code></td><td></td></tr>\n           <tr><td><code>{@link #SearchView_searchIcon com.goreact:searchIcon}</code></td><td></td></tr>\n           <tr><td><code>{@link #SearchView_submitBackground com.goreact:submitBackground}</code></td><td></td></tr>\n           <tr><td><code>{@link #SearchView_suggestionRowLayout com.goreact:suggestionRowLayout}</code></td><td></td></tr>\n           <tr><td><code>{@link #SearchView_voiceIcon com.goreact:voiceIcon}</code></td><td></td></tr>\n           </table>\n           @see #SearchView_android_focusable\n           @see #SearchView_android_imeOptions\n           @see #SearchView_android_inputType\n           @see #SearchView_android_maxWidth\n           @see #SearchView_closeIcon\n           @see #SearchView_commitIcon\n           @see #SearchView_defaultQueryHint\n           @see #SearchView_goIcon\n           @see #SearchView_iconifiedByDefault\n           @see #SearchView_layout\n           @see #SearchView_queryBackground\n           @see #SearchView_queryHint\n           @see #SearchView_searchHintIcon\n           @see #SearchView_searchIcon\n           @see #SearchView_submitBackground\n           @see #SearchView_suggestionRowLayout\n           @see #SearchView_voiceIcon\n         */\n        public static final int[] SearchView = {\n            0x010100da, 0x0101011f, 0x01010220, 0x01010264,\n            0x7f010055, 0x7f010056, 0x7f010057, 0x7f010058,\n            0x7f010059, 0x7f01005a, 0x7f01005b, 0x7f01005c,\n            0x7f01005d, 0x7f01005e, 0x7f01005f, 0x7f010060,\n            0x7f010061\n        };\n        /**\n          <p>This symbol is the offset where the {@link android.R.attr#focusable}\n          attribute's value can be found in the {@link #SearchView} array.\n          @attr name android:focusable\n        */\n        public static final int SearchView_android_focusable = 0;\n        /**\n          <p>This symbol is the offset where the {@link android.R.attr#imeOptions}\n          attribute's value can be found in the {@link #SearchView} array.\n          @attr name android:imeOptions\n        */\n        public static final int SearchView_android_imeOptions = 3;\n        /**\n          <p>This symbol is the offset where the {@link android.R.attr#inputType}\n          attribute's value can be found in the {@link #SearchView} array.\n          @attr name android:inputType\n        */\n        public static final int SearchView_android_inputType = 2;\n        /**\n          <p>This symbol is the offset where the {@link android.R.attr#maxWidth}\n          attribute's value can be found in the {@link #SearchView} array.\n          @attr name android:maxWidth\n        */\n        public static final int SearchView_android_maxWidth = 1;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#closeIcon}\n          attribute's value can be found in the {@link #SearchView} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:closeIcon\n        */\n        public static final int SearchView_closeIcon = 8;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#commitIcon}\n          attribute's value can be found in the {@link #SearchView} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:commitIcon\n        */\n        public static final int SearchView_commitIcon = 13;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#defaultQueryHint}\n          attribute's value can be found in the {@link #SearchView} array.\n\n\n          <p>Must be a string value, using '\\\\;' to escape characters such as '\\\\n' or '\\\\uxxxx' for a unicode character.\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          @attr name com.goreact:defaultQueryHint\n        */\n        public static final int SearchView_defaultQueryHint = 7;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#goIcon}\n          attribute's value can be found in the {@link #SearchView} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:goIcon\n        */\n        public static final int SearchView_goIcon = 9;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#iconifiedByDefault}\n          attribute's value can be found in the {@link #SearchView} array.\n\n\n          <p>Must be a boolean value, either \"<code>true</code>\" or \"<code>false</code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          @attr name com.goreact:iconifiedByDefault\n        */\n        public static final int SearchView_iconifiedByDefault = 5;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#layout}\n          attribute's value can be found in the {@link #SearchView} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:layout\n        */\n        public static final int SearchView_layout = 4;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#queryBackground}\n          attribute's value can be found in the {@link #SearchView} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:queryBackground\n        */\n        public static final int SearchView_queryBackground = 15;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#queryHint}\n          attribute's value can be found in the {@link #SearchView} array.\n\n\n          <p>Must be a string value, using '\\\\;' to escape characters such as '\\\\n' or '\\\\uxxxx' for a unicode character.\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          @attr name com.goreact:queryHint\n        */\n        public static final int SearchView_queryHint = 6;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#searchHintIcon}\n          attribute's value can be found in the {@link #SearchView} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:searchHintIcon\n        */\n        public static final int SearchView_searchHintIcon = 11;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#searchIcon}\n          attribute's value can be found in the {@link #SearchView} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:searchIcon\n        */\n        public static final int SearchView_searchIcon = 10;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#submitBackground}\n          attribute's value can be found in the {@link #SearchView} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:submitBackground\n        */\n        public static final int SearchView_submitBackground = 16;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#suggestionRowLayout}\n          attribute's value can be found in the {@link #SearchView} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:suggestionRowLayout\n        */\n        public static final int SearchView_suggestionRowLayout = 14;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#voiceIcon}\n          attribute's value can be found in the {@link #SearchView} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:voiceIcon\n        */\n        public static final int SearchView_voiceIcon = 12;\n        /** Attributes that can be used with a Spinner.\n           <p>Includes the following attributes:</p>\n           <table>\n           <colgroup align=\"left\" />\n           <colgroup align=\"left\" />\n           <tr><th>Attribute</th><th>Description</th></tr>\n           <tr><td><code>{@link #Spinner_android_dropDownWidth android:dropDownWidth}</code></td><td></td></tr>\n           <tr><td><code>{@link #Spinner_android_popupBackground android:popupBackground}</code></td><td></td></tr>\n           <tr><td><code>{@link #Spinner_android_prompt android:prompt}</code></td><td></td></tr>\n           <tr><td><code>{@link #Spinner_popupTheme com.goreact:popupTheme}</code></td><td></td></tr>\n           </table>\n           @see #Spinner_android_dropDownWidth\n           @see #Spinner_android_popupBackground\n           @see #Spinner_android_prompt\n           @see #Spinner_popupTheme\n         */\n        public static final int[] Spinner = {\n            0x01010176, 0x0101017b, 0x01010262, 0x7f01001b\n        };\n        /**\n          <p>This symbol is the offset where the {@link android.R.attr#dropDownWidth}\n          attribute's value can be found in the {@link #Spinner} array.\n          @attr name android:dropDownWidth\n        */\n        public static final int Spinner_android_dropDownWidth = 2;\n        /**\n          <p>This symbol is the offset where the {@link android.R.attr#popupBackground}\n          attribute's value can be found in the {@link #Spinner} array.\n          @attr name android:popupBackground\n        */\n        public static final int Spinner_android_popupBackground = 0;\n        /**\n          <p>This symbol is the offset where the {@link android.R.attr#prompt}\n          attribute's value can be found in the {@link #Spinner} array.\n          @attr name android:prompt\n        */\n        public static final int Spinner_android_prompt = 1;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#popupTheme}\n          attribute's value can be found in the {@link #Spinner} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:popupTheme\n        */\n        public static final int Spinner_popupTheme = 3;\n        /** Attributes that can be used with a SwitchCompat.\n           <p>Includes the following attributes:</p>\n           <table>\n           <colgroup align=\"left\" />\n           <colgroup align=\"left\" />\n           <tr><th>Attribute</th><th>Description</th></tr>\n           <tr><td><code>{@link #SwitchCompat_android_textOff android:textOff}</code></td><td></td></tr>\n           <tr><td><code>{@link #SwitchCompat_android_textOn android:textOn}</code></td><td></td></tr>\n           <tr><td><code>{@link #SwitchCompat_android_thumb android:thumb}</code></td><td></td></tr>\n           <tr><td><code>{@link #SwitchCompat_showText com.goreact:showText}</code></td><td></td></tr>\n           <tr><td><code>{@link #SwitchCompat_splitTrack com.goreact:splitTrack}</code></td><td></td></tr>\n           <tr><td><code>{@link #SwitchCompat_switchMinWidth com.goreact:switchMinWidth}</code></td><td></td></tr>\n           <tr><td><code>{@link #SwitchCompat_switchPadding com.goreact:switchPadding}</code></td><td></td></tr>\n           <tr><td><code>{@link #SwitchCompat_switchTextAppearance com.goreact:switchTextAppearance}</code></td><td></td></tr>\n           <tr><td><code>{@link #SwitchCompat_thumbTextPadding com.goreact:thumbTextPadding}</code></td><td></td></tr>\n           <tr><td><code>{@link #SwitchCompat_track com.goreact:track}</code></td><td></td></tr>\n           </table>\n           @see #SwitchCompat_android_textOff\n           @see #SwitchCompat_android_textOn\n           @see #SwitchCompat_android_thumb\n           @see #SwitchCompat_showText\n           @see #SwitchCompat_splitTrack\n           @see #SwitchCompat_switchMinWidth\n           @see #SwitchCompat_switchPadding\n           @see #SwitchCompat_switchTextAppearance\n           @see #SwitchCompat_thumbTextPadding\n           @see #SwitchCompat_track\n         */\n        public static final int[] SwitchCompat = {\n            0x01010124, 0x01010125, 0x01010142, 0x7f010062,\n            0x7f010063, 0x7f010064, 0x7f010065, 0x7f010066,\n            0x7f010067, 0x7f010068\n        };\n        /**\n          <p>This symbol is the offset where the {@link android.R.attr#textOff}\n          attribute's value can be found in the {@link #SwitchCompat} array.\n          @attr name android:textOff\n        */\n        public static final int SwitchCompat_android_textOff = 1;\n        /**\n          <p>This symbol is the offset where the {@link android.R.attr#textOn}\n          attribute's value can be found in the {@link #SwitchCompat} array.\n          @attr name android:textOn\n        */\n        public static final int SwitchCompat_android_textOn = 0;\n        /**\n          <p>This symbol is the offset where the {@link android.R.attr#thumb}\n          attribute's value can be found in the {@link #SwitchCompat} array.\n          @attr name android:thumb\n        */\n        public static final int SwitchCompat_android_thumb = 2;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#showText}\n          attribute's value can be found in the {@link #SwitchCompat} array.\n\n\n          <p>Must be a boolean value, either \"<code>true</code>\" or \"<code>false</code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          @attr name com.goreact:showText\n        */\n        public static final int SwitchCompat_showText = 9;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#splitTrack}\n          attribute's value can be found in the {@link #SwitchCompat} array.\n\n\n          <p>Must be a boolean value, either \"<code>true</code>\" or \"<code>false</code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          @attr name com.goreact:splitTrack\n        */\n        public static final int SwitchCompat_splitTrack = 8;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#switchMinWidth}\n          attribute's value can be found in the {@link #SwitchCompat} array.\n\n\n          <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          @attr name com.goreact:switchMinWidth\n        */\n        public static final int SwitchCompat_switchMinWidth = 6;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#switchPadding}\n          attribute's value can be found in the {@link #SwitchCompat} array.\n\n\n          <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          @attr name com.goreact:switchPadding\n        */\n        public static final int SwitchCompat_switchPadding = 7;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#switchTextAppearance}\n          attribute's value can be found in the {@link #SwitchCompat} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:switchTextAppearance\n        */\n        public static final int SwitchCompat_switchTextAppearance = 5;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#thumbTextPadding}\n          attribute's value can be found in the {@link #SwitchCompat} array.\n\n\n          <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          @attr name com.goreact:thumbTextPadding\n        */\n        public static final int SwitchCompat_thumbTextPadding = 4;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#track}\n          attribute's value can be found in the {@link #SwitchCompat} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:track\n        */\n        public static final int SwitchCompat_track = 3;\n        /** Attributes that can be used with a TextAppearance.\n           <p>Includes the following attributes:</p>\n           <table>\n           <colgroup align=\"left\" />\n           <colgroup align=\"left\" />\n           <tr><th>Attribute</th><th>Description</th></tr>\n           <tr><td><code>{@link #TextAppearance_android_textColor android:textColor}</code></td><td></td></tr>\n           <tr><td><code>{@link #TextAppearance_android_textSize android:textSize}</code></td><td></td></tr>\n           <tr><td><code>{@link #TextAppearance_android_textStyle android:textStyle}</code></td><td></td></tr>\n           <tr><td><code>{@link #TextAppearance_android_typeface android:typeface}</code></td><td></td></tr>\n           <tr><td><code>{@link #TextAppearance_textAllCaps com.goreact:textAllCaps}</code></td><td></td></tr>\n           </table>\n           @see #TextAppearance_android_textColor\n           @see #TextAppearance_android_textSize\n           @see #TextAppearance_android_textStyle\n           @see #TextAppearance_android_typeface\n           @see #TextAppearance_textAllCaps\n         */\n        public static final int[] TextAppearance = {\n            0x01010095, 0x01010096, 0x01010097, 0x01010098,\n            0x7f010024\n        };\n        /**\n          <p>This symbol is the offset where the {@link android.R.attr#textColor}\n          attribute's value can be found in the {@link #TextAppearance} array.\n          @attr name android:textColor\n        */\n        public static final int TextAppearance_android_textColor = 3;\n        /**\n          <p>This symbol is the offset where the {@link android.R.attr#textSize}\n          attribute's value can be found in the {@link #TextAppearance} array.\n          @attr name android:textSize\n        */\n        public static final int TextAppearance_android_textSize = 0;\n        /**\n          <p>This symbol is the offset where the {@link android.R.attr#textStyle}\n          attribute's value can be found in the {@link #TextAppearance} array.\n          @attr name android:textStyle\n        */\n        public static final int TextAppearance_android_textStyle = 2;\n        /**\n          <p>This symbol is the offset where the {@link android.R.attr#typeface}\n          attribute's value can be found in the {@link #TextAppearance} array.\n          @attr name android:typeface\n        */\n        public static final int TextAppearance_android_typeface = 1;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#textAllCaps}\n          attribute's value can be found in the {@link #TextAppearance} array.\n\n\n          <p>May be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n<p>May be a boolean value, either \"<code>true</code>\" or \"<code>false</code>\".\n          @attr name com.goreact:textAllCaps\n        */\n        public static final int TextAppearance_textAllCaps = 4;\n        /** Attributes that can be used with a Theme.\n           <p>Includes the following attributes:</p>\n           <table>\n           <colgroup align=\"left\" />\n           <colgroup align=\"left\" />\n           <tr><th>Attribute</th><th>Description</th></tr>\n           <tr><td><code>{@link #Theme_actionBarDivider com.goreact:actionBarDivider}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_actionBarItemBackground com.goreact:actionBarItemBackground}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_actionBarPopupTheme com.goreact:actionBarPopupTheme}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_actionBarSize com.goreact:actionBarSize}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_actionBarSplitStyle com.goreact:actionBarSplitStyle}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_actionBarStyle com.goreact:actionBarStyle}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_actionBarTabBarStyle com.goreact:actionBarTabBarStyle}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_actionBarTabStyle com.goreact:actionBarTabStyle}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_actionBarTabTextStyle com.goreact:actionBarTabTextStyle}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_actionBarTheme com.goreact:actionBarTheme}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_actionBarWidgetTheme com.goreact:actionBarWidgetTheme}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_actionButtonStyle com.goreact:actionButtonStyle}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_actionDropDownStyle com.goreact:actionDropDownStyle}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_actionMenuTextAppearance com.goreact:actionMenuTextAppearance}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_actionMenuTextColor com.goreact:actionMenuTextColor}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_actionModeBackground com.goreact:actionModeBackground}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_actionModeCloseButtonStyle com.goreact:actionModeCloseButtonStyle}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_actionModeCloseDrawable com.goreact:actionModeCloseDrawable}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_actionModeCopyDrawable com.goreact:actionModeCopyDrawable}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_actionModeCutDrawable com.goreact:actionModeCutDrawable}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_actionModeFindDrawable com.goreact:actionModeFindDrawable}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_actionModePasteDrawable com.goreact:actionModePasteDrawable}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_actionModePopupWindowStyle com.goreact:actionModePopupWindowStyle}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_actionModeSelectAllDrawable com.goreact:actionModeSelectAllDrawable}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_actionModeShareDrawable com.goreact:actionModeShareDrawable}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_actionModeSplitBackground com.goreact:actionModeSplitBackground}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_actionModeStyle com.goreact:actionModeStyle}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_actionModeWebSearchDrawable com.goreact:actionModeWebSearchDrawable}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_actionOverflowButtonStyle com.goreact:actionOverflowButtonStyle}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_actionOverflowMenuStyle com.goreact:actionOverflowMenuStyle}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_activityChooserViewStyle com.goreact:activityChooserViewStyle}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_alertDialogButtonGroupStyle com.goreact:alertDialogButtonGroupStyle}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_alertDialogCenterButtons com.goreact:alertDialogCenterButtons}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_alertDialogStyle com.goreact:alertDialogStyle}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_alertDialogTheme com.goreact:alertDialogTheme}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_android_windowAnimationStyle android:windowAnimationStyle}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_android_windowIsFloating android:windowIsFloating}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_autoCompleteTextViewStyle com.goreact:autoCompleteTextViewStyle}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_borderlessButtonStyle com.goreact:borderlessButtonStyle}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_buttonBarButtonStyle com.goreact:buttonBarButtonStyle}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_buttonBarNegativeButtonStyle com.goreact:buttonBarNegativeButtonStyle}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_buttonBarNeutralButtonStyle com.goreact:buttonBarNeutralButtonStyle}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_buttonBarPositiveButtonStyle com.goreact:buttonBarPositiveButtonStyle}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_buttonBarStyle com.goreact:buttonBarStyle}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_buttonStyle com.goreact:buttonStyle}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_buttonStyleSmall com.goreact:buttonStyleSmall}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_checkboxStyle com.goreact:checkboxStyle}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_checkedTextViewStyle com.goreact:checkedTextViewStyle}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_colorAccent com.goreact:colorAccent}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_colorButtonNormal com.goreact:colorButtonNormal}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_colorControlActivated com.goreact:colorControlActivated}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_colorControlHighlight com.goreact:colorControlHighlight}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_colorControlNormal com.goreact:colorControlNormal}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_colorPrimary com.goreact:colorPrimary}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_colorPrimaryDark com.goreact:colorPrimaryDark}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_colorSwitchThumbNormal com.goreact:colorSwitchThumbNormal}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_controlBackground com.goreact:controlBackground}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_dialogPreferredPadding com.goreact:dialogPreferredPadding}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_dialogTheme com.goreact:dialogTheme}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_dividerHorizontal com.goreact:dividerHorizontal}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_dividerVertical com.goreact:dividerVertical}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_dropDownListViewStyle com.goreact:dropDownListViewStyle}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_dropdownListPreferredItemHeight com.goreact:dropdownListPreferredItemHeight}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_editTextBackground com.goreact:editTextBackground}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_editTextColor com.goreact:editTextColor}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_editTextStyle com.goreact:editTextStyle}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_homeAsUpIndicator com.goreact:homeAsUpIndicator}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_listChoiceBackgroundIndicator com.goreact:listChoiceBackgroundIndicator}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_listDividerAlertDialog com.goreact:listDividerAlertDialog}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_listPopupWindowStyle com.goreact:listPopupWindowStyle}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_listPreferredItemHeight com.goreact:listPreferredItemHeight}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_listPreferredItemHeightLarge com.goreact:listPreferredItemHeightLarge}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_listPreferredItemHeightSmall com.goreact:listPreferredItemHeightSmall}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_listPreferredItemPaddingLeft com.goreact:listPreferredItemPaddingLeft}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_listPreferredItemPaddingRight com.goreact:listPreferredItemPaddingRight}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_panelBackground com.goreact:panelBackground}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_panelMenuListTheme com.goreact:panelMenuListTheme}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_panelMenuListWidth com.goreact:panelMenuListWidth}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_popupMenuStyle com.goreact:popupMenuStyle}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_popupWindowStyle com.goreact:popupWindowStyle}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_radioButtonStyle com.goreact:radioButtonStyle}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_ratingBarStyle com.goreact:ratingBarStyle}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_searchViewStyle com.goreact:searchViewStyle}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_selectableItemBackground com.goreact:selectableItemBackground}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_selectableItemBackgroundBorderless com.goreact:selectableItemBackgroundBorderless}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_spinnerDropDownItemStyle com.goreact:spinnerDropDownItemStyle}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_spinnerStyle com.goreact:spinnerStyle}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_switchStyle com.goreact:switchStyle}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_textAppearanceLargePopupMenu com.goreact:textAppearanceLargePopupMenu}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_textAppearanceListItem com.goreact:textAppearanceListItem}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_textAppearanceListItemSmall com.goreact:textAppearanceListItemSmall}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_textAppearanceSearchResultSubtitle com.goreact:textAppearanceSearchResultSubtitle}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_textAppearanceSearchResultTitle com.goreact:textAppearanceSearchResultTitle}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_textAppearanceSmallPopupMenu com.goreact:textAppearanceSmallPopupMenu}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_textColorAlertDialogListItem com.goreact:textColorAlertDialogListItem}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_textColorSearchUrl com.goreact:textColorSearchUrl}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_toolbarNavigationButtonStyle com.goreact:toolbarNavigationButtonStyle}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_toolbarStyle com.goreact:toolbarStyle}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_windowActionBar com.goreact:windowActionBar}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_windowActionBarOverlay com.goreact:windowActionBarOverlay}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_windowActionModeOverlay com.goreact:windowActionModeOverlay}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_windowFixedHeightMajor com.goreact:windowFixedHeightMajor}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_windowFixedHeightMinor com.goreact:windowFixedHeightMinor}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_windowFixedWidthMajor com.goreact:windowFixedWidthMajor}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_windowFixedWidthMinor com.goreact:windowFixedWidthMinor}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_windowMinWidthMajor com.goreact:windowMinWidthMajor}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_windowMinWidthMinor com.goreact:windowMinWidthMinor}</code></td><td></td></tr>\n           <tr><td><code>{@link #Theme_windowNoTitle com.goreact:windowNoTitle}</code></td><td></td></tr>\n           </table>\n           @see #Theme_actionBarDivider\n           @see #Theme_actionBarItemBackground\n           @see #Theme_actionBarPopupTheme\n           @see #Theme_actionBarSize\n           @see #Theme_actionBarSplitStyle\n           @see #Theme_actionBarStyle\n           @see #Theme_actionBarTabBarStyle\n           @see #Theme_actionBarTabStyle\n           @see #Theme_actionBarTabTextStyle\n           @see #Theme_actionBarTheme\n           @see #Theme_actionBarWidgetTheme\n           @see #Theme_actionButtonStyle\n           @see #Theme_actionDropDownStyle\n           @see #Theme_actionMenuTextAppearance\n           @see #Theme_actionMenuTextColor\n           @see #Theme_actionModeBackground\n           @see #Theme_actionModeCloseButtonStyle\n           @see #Theme_actionModeCloseDrawable\n           @see #Theme_actionModeCopyDrawable\n           @see #Theme_actionModeCutDrawable\n           @see #Theme_actionModeFindDrawable\n           @see #Theme_actionModePasteDrawable\n           @see #Theme_actionModePopupWindowStyle\n           @see #Theme_actionModeSelectAllDrawable\n           @see #Theme_actionModeShareDrawable\n           @see #Theme_actionModeSplitBackground\n           @see #Theme_actionModeStyle\n           @see #Theme_actionModeWebSearchDrawable\n           @see #Theme_actionOverflowButtonStyle\n           @see #Theme_actionOverflowMenuStyle\n           @see #Theme_activityChooserViewStyle\n           @see #Theme_alertDialogButtonGroupStyle\n           @see #Theme_alertDialogCenterButtons\n           @see #Theme_alertDialogStyle\n           @see #Theme_alertDialogTheme\n           @see #Theme_android_windowAnimationStyle\n           @see #Theme_android_windowIsFloating\n           @see #Theme_autoCompleteTextViewStyle\n           @see #Theme_borderlessButtonStyle\n           @see #Theme_buttonBarButtonStyle\n           @see #Theme_buttonBarNegativeButtonStyle\n           @see #Theme_buttonBarNeutralButtonStyle\n           @see #Theme_buttonBarPositiveButtonStyle\n           @see #Theme_buttonBarStyle\n           @see #Theme_buttonStyle\n           @see #Theme_buttonStyleSmall\n           @see #Theme_checkboxStyle\n           @see #Theme_checkedTextViewStyle\n           @see #Theme_colorAccent\n           @see #Theme_colorButtonNormal\n           @see #Theme_colorControlActivated\n           @see #Theme_colorControlHighlight\n           @see #Theme_colorControlNormal\n           @see #Theme_colorPrimary\n           @see #Theme_colorPrimaryDark\n           @see #Theme_colorSwitchThumbNormal\n           @see #Theme_controlBackground\n           @see #Theme_dialogPreferredPadding\n           @see #Theme_dialogTheme\n           @see #Theme_dividerHorizontal\n           @see #Theme_dividerVertical\n           @see #Theme_dropDownListViewStyle\n           @see #Theme_dropdownListPreferredItemHeight\n           @see #Theme_editTextBackground\n           @see #Theme_editTextColor\n           @see #Theme_editTextStyle\n           @see #Theme_homeAsUpIndicator\n           @see #Theme_listChoiceBackgroundIndicator\n           @see #Theme_listDividerAlertDialog\n           @see #Theme_listPopupWindowStyle\n           @see #Theme_listPreferredItemHeight\n           @see #Theme_listPreferredItemHeightLarge\n           @see #Theme_listPreferredItemHeightSmall\n           @see #Theme_listPreferredItemPaddingLeft\n           @see #Theme_listPreferredItemPaddingRight\n           @see #Theme_panelBackground\n           @see #Theme_panelMenuListTheme\n           @see #Theme_panelMenuListWidth\n           @see #Theme_popupMenuStyle\n           @see #Theme_popupWindowStyle\n           @see #Theme_radioButtonStyle\n           @see #Theme_ratingBarStyle\n           @see #Theme_searchViewStyle\n           @see #Theme_selectableItemBackground\n           @see #Theme_selectableItemBackgroundBorderless\n           @see #Theme_spinnerDropDownItemStyle\n           @see #Theme_spinnerStyle\n           @see #Theme_switchStyle\n           @see #Theme_textAppearanceLargePopupMenu\n           @see #Theme_textAppearanceListItem\n           @see #Theme_textAppearanceListItemSmall\n           @see #Theme_textAppearanceSearchResultSubtitle\n           @see #Theme_textAppearanceSearchResultTitle\n           @see #Theme_textAppearanceSmallPopupMenu\n           @see #Theme_textColorAlertDialogListItem\n           @see #Theme_textColorSearchUrl\n           @see #Theme_toolbarNavigationButtonStyle\n           @see #Theme_toolbarStyle\n           @see #Theme_windowActionBar\n           @see #Theme_windowActionBarOverlay\n           @see #Theme_windowActionModeOverlay\n           @see #Theme_windowFixedHeightMajor\n           @see #Theme_windowFixedHeightMinor\n           @see #Theme_windowFixedWidthMajor\n           @see #Theme_windowFixedWidthMinor\n           @see #Theme_windowMinWidthMajor\n           @see #Theme_windowMinWidthMinor\n           @see #Theme_windowNoTitle\n         */\n        public static final int[] Theme = {\n            0x01010057, 0x010100ae, 0x7f010069, 0x7f01006a,\n            0x7f01006b, 0x7f01006c, 0x7f01006d, 0x7f01006e,\n            0x7f01006f, 0x7f010070, 0x7f010071, 0x7f010072,\n            0x7f010073, 0x7f010074, 0x7f010075, 0x7f010076,\n            0x7f010077, 0x7f010078, 0x7f010079, 0x7f01007a,\n            0x7f01007b, 0x7f01007c, 0x7f01007d, 0x7f01007e,\n            0x7f01007f, 0x7f010080, 0x7f010081, 0x7f010082,\n            0x7f010083, 0x7f010084, 0x7f010085, 0x7f010086,\n            0x7f010087, 0x7f010088, 0x7f010089, 0x7f01008a,\n            0x7f01008b, 0x7f01008c, 0x7f01008d, 0x7f01008e,\n            0x7f01008f, 0x7f010090, 0x7f010091, 0x7f010092,\n            0x7f010093, 0x7f010094, 0x7f010095, 0x7f010096,\n            0x7f010097, 0x7f010098, 0x7f010099, 0x7f01009a,\n            0x7f01009b, 0x7f01009c, 0x7f01009d, 0x7f01009e,\n            0x7f01009f, 0x7f0100a0, 0x7f0100a1, 0x7f0100a2,\n            0x7f0100a3, 0x7f0100a4, 0x7f0100a5, 0x7f0100a6,\n            0x7f0100a7, 0x7f0100a8, 0x7f0100a9, 0x7f0100aa,\n            0x7f0100ab, 0x7f0100ac, 0x7f0100ad, 0x7f0100ae,\n            0x7f0100af, 0x7f0100b0, 0x7f0100b1, 0x7f0100b2,\n            0x7f0100b3, 0x7f0100b4, 0x7f0100b5, 0x7f0100b6,\n            0x7f0100b7, 0x7f0100b8, 0x7f0100b9, 0x7f0100ba,\n            0x7f0100bb, 0x7f0100bc, 0x7f0100bd, 0x7f0100be,\n            0x7f0100bf, 0x7f0100c0, 0x7f0100c1, 0x7f0100c2,\n            0x7f0100c3, 0x7f0100c4, 0x7f0100c5, 0x7f0100c6,\n            0x7f0100c7, 0x7f0100c8, 0x7f0100c9, 0x7f0100ca,\n            0x7f0100cb, 0x7f0100cc, 0x7f0100cd, 0x7f0100ce,\n            0x7f0100cf, 0x7f0100d0, 0x7f0100d1, 0x7f0100d2\n        };\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#actionBarDivider}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:actionBarDivider\n        */\n        public static final int Theme_actionBarDivider = 23;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#actionBarItemBackground}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:actionBarItemBackground\n        */\n        public static final int Theme_actionBarItemBackground = 24;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#actionBarPopupTheme}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:actionBarPopupTheme\n        */\n        public static final int Theme_actionBarPopupTheme = 17;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#actionBarSize}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>May be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n<p>May be one of the following constant values.</p>\n<table>\n<colgroup align=\"left\" />\n<colgroup align=\"left\" />\n<colgroup align=\"left\" />\n<tr><th>Constant</th><th>Value</th><th>Description</th></tr>\n<tr><td><code>wrap_content</code></td><td>0</td><td></td></tr>\n</table>\n          @attr name com.goreact:actionBarSize\n        */\n        public static final int Theme_actionBarSize = 22;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#actionBarSplitStyle}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:actionBarSplitStyle\n        */\n        public static final int Theme_actionBarSplitStyle = 19;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#actionBarStyle}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:actionBarStyle\n        */\n        public static final int Theme_actionBarStyle = 18;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#actionBarTabBarStyle}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:actionBarTabBarStyle\n        */\n        public static final int Theme_actionBarTabBarStyle = 13;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#actionBarTabStyle}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:actionBarTabStyle\n        */\n        public static final int Theme_actionBarTabStyle = 12;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#actionBarTabTextStyle}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:actionBarTabTextStyle\n        */\n        public static final int Theme_actionBarTabTextStyle = 14;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#actionBarTheme}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:actionBarTheme\n        */\n        public static final int Theme_actionBarTheme = 20;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#actionBarWidgetTheme}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:actionBarWidgetTheme\n        */\n        public static final int Theme_actionBarWidgetTheme = 21;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#actionButtonStyle}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:actionButtonStyle\n        */\n        public static final int Theme_actionButtonStyle = 49;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#actionDropDownStyle}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:actionDropDownStyle\n        */\n        public static final int Theme_actionDropDownStyle = 45;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#actionMenuTextAppearance}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:actionMenuTextAppearance\n        */\n        public static final int Theme_actionMenuTextAppearance = 25;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#actionMenuTextColor}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>May be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n<p>May be a color value, in the form of \"<code>#<i>rgb</i></code>\", \"<code>#<i>argb</i></code>\",\n\"<code>#<i>rrggbb</i></code>\", or \"<code>#<i>aarrggbb</i></code>\".\n          @attr name com.goreact:actionMenuTextColor\n        */\n        public static final int Theme_actionMenuTextColor = 26;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#actionModeBackground}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:actionModeBackground\n        */\n        public static final int Theme_actionModeBackground = 29;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#actionModeCloseButtonStyle}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:actionModeCloseButtonStyle\n        */\n        public static final int Theme_actionModeCloseButtonStyle = 28;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#actionModeCloseDrawable}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:actionModeCloseDrawable\n        */\n        public static final int Theme_actionModeCloseDrawable = 31;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#actionModeCopyDrawable}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:actionModeCopyDrawable\n        */\n        public static final int Theme_actionModeCopyDrawable = 33;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#actionModeCutDrawable}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:actionModeCutDrawable\n        */\n        public static final int Theme_actionModeCutDrawable = 32;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#actionModeFindDrawable}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:actionModeFindDrawable\n        */\n        public static final int Theme_actionModeFindDrawable = 37;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#actionModePasteDrawable}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:actionModePasteDrawable\n        */\n        public static final int Theme_actionModePasteDrawable = 34;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#actionModePopupWindowStyle}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:actionModePopupWindowStyle\n        */\n        public static final int Theme_actionModePopupWindowStyle = 39;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#actionModeSelectAllDrawable}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:actionModeSelectAllDrawable\n        */\n        public static final int Theme_actionModeSelectAllDrawable = 35;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#actionModeShareDrawable}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:actionModeShareDrawable\n        */\n        public static final int Theme_actionModeShareDrawable = 36;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#actionModeSplitBackground}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:actionModeSplitBackground\n        */\n        public static final int Theme_actionModeSplitBackground = 30;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#actionModeStyle}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:actionModeStyle\n        */\n        public static final int Theme_actionModeStyle = 27;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#actionModeWebSearchDrawable}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:actionModeWebSearchDrawable\n        */\n        public static final int Theme_actionModeWebSearchDrawable = 38;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#actionOverflowButtonStyle}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:actionOverflowButtonStyle\n        */\n        public static final int Theme_actionOverflowButtonStyle = 15;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#actionOverflowMenuStyle}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:actionOverflowMenuStyle\n        */\n        public static final int Theme_actionOverflowMenuStyle = 16;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#activityChooserViewStyle}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:activityChooserViewStyle\n        */\n        public static final int Theme_activityChooserViewStyle = 57;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#alertDialogButtonGroupStyle}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:alertDialogButtonGroupStyle\n        */\n        public static final int Theme_alertDialogButtonGroupStyle = 91;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#alertDialogCenterButtons}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>Must be a boolean value, either \"<code>true</code>\" or \"<code>false</code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          @attr name com.goreact:alertDialogCenterButtons\n        */\n        public static final int Theme_alertDialogCenterButtons = 92;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#alertDialogStyle}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:alertDialogStyle\n        */\n        public static final int Theme_alertDialogStyle = 90;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#alertDialogTheme}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:alertDialogTheme\n        */\n        public static final int Theme_alertDialogTheme = 93;\n        /**\n          <p>This symbol is the offset where the {@link android.R.attr#windowAnimationStyle}\n          attribute's value can be found in the {@link #Theme} array.\n          @attr name android:windowAnimationStyle\n        */\n        public static final int Theme_android_windowAnimationStyle = 1;\n        /**\n          <p>This symbol is the offset where the {@link android.R.attr#windowIsFloating}\n          attribute's value can be found in the {@link #Theme} array.\n          @attr name android:windowIsFloating\n        */\n        public static final int Theme_android_windowIsFloating = 0;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#autoCompleteTextViewStyle}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:autoCompleteTextViewStyle\n        */\n        public static final int Theme_autoCompleteTextViewStyle = 98;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#borderlessButtonStyle}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:borderlessButtonStyle\n        */\n        public static final int Theme_borderlessButtonStyle = 54;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#buttonBarButtonStyle}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:buttonBarButtonStyle\n        */\n        public static final int Theme_buttonBarButtonStyle = 51;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#buttonBarNegativeButtonStyle}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:buttonBarNegativeButtonStyle\n        */\n        public static final int Theme_buttonBarNegativeButtonStyle = 96;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#buttonBarNeutralButtonStyle}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:buttonBarNeutralButtonStyle\n        */\n        public static final int Theme_buttonBarNeutralButtonStyle = 97;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#buttonBarPositiveButtonStyle}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:buttonBarPositiveButtonStyle\n        */\n        public static final int Theme_buttonBarPositiveButtonStyle = 95;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#buttonBarStyle}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:buttonBarStyle\n        */\n        public static final int Theme_buttonBarStyle = 50;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#buttonStyle}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:buttonStyle\n        */\n        public static final int Theme_buttonStyle = 99;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#buttonStyleSmall}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:buttonStyleSmall\n        */\n        public static final int Theme_buttonStyleSmall = 100;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#checkboxStyle}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:checkboxStyle\n        */\n        public static final int Theme_checkboxStyle = 101;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#checkedTextViewStyle}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:checkedTextViewStyle\n        */\n        public static final int Theme_checkedTextViewStyle = 102;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#colorAccent}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>Must be a color value, in the form of \"<code>#<i>rgb</i></code>\", \"<code>#<i>argb</i></code>\",\n\"<code>#<i>rrggbb</i></code>\", or \"<code>#<i>aarrggbb</i></code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          @attr name com.goreact:colorAccent\n        */\n        public static final int Theme_colorAccent = 83;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#colorButtonNormal}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>Must be a color value, in the form of \"<code>#<i>rgb</i></code>\", \"<code>#<i>argb</i></code>\",\n\"<code>#<i>rrggbb</i></code>\", or \"<code>#<i>aarrggbb</i></code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          @attr name com.goreact:colorButtonNormal\n        */\n        public static final int Theme_colorButtonNormal = 87;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#colorControlActivated}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>Must be a color value, in the form of \"<code>#<i>rgb</i></code>\", \"<code>#<i>argb</i></code>\",\n\"<code>#<i>rrggbb</i></code>\", or \"<code>#<i>aarrggbb</i></code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          @attr name com.goreact:colorControlActivated\n        */\n        public static final int Theme_colorControlActivated = 85;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#colorControlHighlight}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>Must be a color value, in the form of \"<code>#<i>rgb</i></code>\", \"<code>#<i>argb</i></code>\",\n\"<code>#<i>rrggbb</i></code>\", or \"<code>#<i>aarrggbb</i></code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          @attr name com.goreact:colorControlHighlight\n        */\n        public static final int Theme_colorControlHighlight = 86;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#colorControlNormal}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>Must be a color value, in the form of \"<code>#<i>rgb</i></code>\", \"<code>#<i>argb</i></code>\",\n\"<code>#<i>rrggbb</i></code>\", or \"<code>#<i>aarrggbb</i></code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          @attr name com.goreact:colorControlNormal\n        */\n        public static final int Theme_colorControlNormal = 84;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#colorPrimary}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>Must be a color value, in the form of \"<code>#<i>rgb</i></code>\", \"<code>#<i>argb</i></code>\",\n\"<code>#<i>rrggbb</i></code>\", or \"<code>#<i>aarrggbb</i></code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          @attr name com.goreact:colorPrimary\n        */\n        public static final int Theme_colorPrimary = 81;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#colorPrimaryDark}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>Must be a color value, in the form of \"<code>#<i>rgb</i></code>\", \"<code>#<i>argb</i></code>\",\n\"<code>#<i>rrggbb</i></code>\", or \"<code>#<i>aarrggbb</i></code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          @attr name com.goreact:colorPrimaryDark\n        */\n        public static final int Theme_colorPrimaryDark = 82;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#colorSwitchThumbNormal}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>Must be a color value, in the form of \"<code>#<i>rgb</i></code>\", \"<code>#<i>argb</i></code>\",\n\"<code>#<i>rrggbb</i></code>\", or \"<code>#<i>aarrggbb</i></code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          @attr name com.goreact:colorSwitchThumbNormal\n        */\n        public static final int Theme_colorSwitchThumbNormal = 88;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#controlBackground}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:controlBackground\n        */\n        public static final int Theme_controlBackground = 89;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#dialogPreferredPadding}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          @attr name com.goreact:dialogPreferredPadding\n        */\n        public static final int Theme_dialogPreferredPadding = 43;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#dialogTheme}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:dialogTheme\n        */\n        public static final int Theme_dialogTheme = 42;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#dividerHorizontal}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:dividerHorizontal\n        */\n        public static final int Theme_dividerHorizontal = 56;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#dividerVertical}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:dividerVertical\n        */\n        public static final int Theme_dividerVertical = 55;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#dropDownListViewStyle}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:dropDownListViewStyle\n        */\n        public static final int Theme_dropDownListViewStyle = 73;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#dropdownListPreferredItemHeight}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          @attr name com.goreact:dropdownListPreferredItemHeight\n        */\n        public static final int Theme_dropdownListPreferredItemHeight = 46;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#editTextBackground}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:editTextBackground\n        */\n        public static final int Theme_editTextBackground = 63;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#editTextColor}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>May be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n<p>May be a color value, in the form of \"<code>#<i>rgb</i></code>\", \"<code>#<i>argb</i></code>\",\n\"<code>#<i>rrggbb</i></code>\", or \"<code>#<i>aarrggbb</i></code>\".\n          @attr name com.goreact:editTextColor\n        */\n        public static final int Theme_editTextColor = 62;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#editTextStyle}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:editTextStyle\n        */\n        public static final int Theme_editTextStyle = 103;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#homeAsUpIndicator}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:homeAsUpIndicator\n        */\n        public static final int Theme_homeAsUpIndicator = 48;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#listChoiceBackgroundIndicator}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:listChoiceBackgroundIndicator\n        */\n        public static final int Theme_listChoiceBackgroundIndicator = 80;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#listDividerAlertDialog}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:listDividerAlertDialog\n        */\n        public static final int Theme_listDividerAlertDialog = 44;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#listPopupWindowStyle}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:listPopupWindowStyle\n        */\n        public static final int Theme_listPopupWindowStyle = 74;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#listPreferredItemHeight}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          @attr name com.goreact:listPreferredItemHeight\n        */\n        public static final int Theme_listPreferredItemHeight = 68;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#listPreferredItemHeightLarge}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          @attr name com.goreact:listPreferredItemHeightLarge\n        */\n        public static final int Theme_listPreferredItemHeightLarge = 70;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#listPreferredItemHeightSmall}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          @attr name com.goreact:listPreferredItemHeightSmall\n        */\n        public static final int Theme_listPreferredItemHeightSmall = 69;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#listPreferredItemPaddingLeft}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          @attr name com.goreact:listPreferredItemPaddingLeft\n        */\n        public static final int Theme_listPreferredItemPaddingLeft = 71;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#listPreferredItemPaddingRight}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          @attr name com.goreact:listPreferredItemPaddingRight\n        */\n        public static final int Theme_listPreferredItemPaddingRight = 72;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#panelBackground}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:panelBackground\n        */\n        public static final int Theme_panelBackground = 77;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#panelMenuListTheme}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:panelMenuListTheme\n        */\n        public static final int Theme_panelMenuListTheme = 79;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#panelMenuListWidth}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          @attr name com.goreact:panelMenuListWidth\n        */\n        public static final int Theme_panelMenuListWidth = 78;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#popupMenuStyle}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:popupMenuStyle\n        */\n        public static final int Theme_popupMenuStyle = 60;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#popupWindowStyle}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:popupWindowStyle\n        */\n        public static final int Theme_popupWindowStyle = 61;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#radioButtonStyle}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:radioButtonStyle\n        */\n        public static final int Theme_radioButtonStyle = 104;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#ratingBarStyle}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:ratingBarStyle\n        */\n        public static final int Theme_ratingBarStyle = 105;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#searchViewStyle}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:searchViewStyle\n        */\n        public static final int Theme_searchViewStyle = 67;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#selectableItemBackground}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:selectableItemBackground\n        */\n        public static final int Theme_selectableItemBackground = 52;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#selectableItemBackgroundBorderless}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:selectableItemBackgroundBorderless\n        */\n        public static final int Theme_selectableItemBackgroundBorderless = 53;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#spinnerDropDownItemStyle}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:spinnerDropDownItemStyle\n        */\n        public static final int Theme_spinnerDropDownItemStyle = 47;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#spinnerStyle}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:spinnerStyle\n        */\n        public static final int Theme_spinnerStyle = 106;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#switchStyle}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:switchStyle\n        */\n        public static final int Theme_switchStyle = 107;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#textAppearanceLargePopupMenu}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:textAppearanceLargePopupMenu\n        */\n        public static final int Theme_textAppearanceLargePopupMenu = 40;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#textAppearanceListItem}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:textAppearanceListItem\n        */\n        public static final int Theme_textAppearanceListItem = 75;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#textAppearanceListItemSmall}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:textAppearanceListItemSmall\n        */\n        public static final int Theme_textAppearanceListItemSmall = 76;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#textAppearanceSearchResultSubtitle}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:textAppearanceSearchResultSubtitle\n        */\n        public static final int Theme_textAppearanceSearchResultSubtitle = 65;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#textAppearanceSearchResultTitle}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:textAppearanceSearchResultTitle\n        */\n        public static final int Theme_textAppearanceSearchResultTitle = 64;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#textAppearanceSmallPopupMenu}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:textAppearanceSmallPopupMenu\n        */\n        public static final int Theme_textAppearanceSmallPopupMenu = 41;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#textColorAlertDialogListItem}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>May be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n<p>May be a color value, in the form of \"<code>#<i>rgb</i></code>\", \"<code>#<i>argb</i></code>\",\n\"<code>#<i>rrggbb</i></code>\", or \"<code>#<i>aarrggbb</i></code>\".\n          @attr name com.goreact:textColorAlertDialogListItem\n        */\n        public static final int Theme_textColorAlertDialogListItem = 94;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#textColorSearchUrl}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>May be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n<p>May be a color value, in the form of \"<code>#<i>rgb</i></code>\", \"<code>#<i>argb</i></code>\",\n\"<code>#<i>rrggbb</i></code>\", or \"<code>#<i>aarrggbb</i></code>\".\n          @attr name com.goreact:textColorSearchUrl\n        */\n        public static final int Theme_textColorSearchUrl = 66;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#toolbarNavigationButtonStyle}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:toolbarNavigationButtonStyle\n        */\n        public static final int Theme_toolbarNavigationButtonStyle = 59;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#toolbarStyle}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:toolbarStyle\n        */\n        public static final int Theme_toolbarStyle = 58;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#windowActionBar}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>Must be a boolean value, either \"<code>true</code>\" or \"<code>false</code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          @attr name com.goreact:windowActionBar\n        */\n        public static final int Theme_windowActionBar = 2;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#windowActionBarOverlay}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>Must be a boolean value, either \"<code>true</code>\" or \"<code>false</code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          @attr name com.goreact:windowActionBarOverlay\n        */\n        public static final int Theme_windowActionBarOverlay = 4;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#windowActionModeOverlay}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>Must be a boolean value, either \"<code>true</code>\" or \"<code>false</code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          @attr name com.goreact:windowActionModeOverlay\n        */\n        public static final int Theme_windowActionModeOverlay = 5;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#windowFixedHeightMajor}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>May be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>May be a fractional value, which is a floating point number appended with either % or %p, such as \"<code>14.5%</code>\".\nThe % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to\nsome parent container.\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          @attr name com.goreact:windowFixedHeightMajor\n        */\n        public static final int Theme_windowFixedHeightMajor = 9;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#windowFixedHeightMinor}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>May be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>May be a fractional value, which is a floating point number appended with either % or %p, such as \"<code>14.5%</code>\".\nThe % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to\nsome parent container.\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          @attr name com.goreact:windowFixedHeightMinor\n        */\n        public static final int Theme_windowFixedHeightMinor = 7;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#windowFixedWidthMajor}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>May be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>May be a fractional value, which is a floating point number appended with either % or %p, such as \"<code>14.5%</code>\".\nThe % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to\nsome parent container.\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          @attr name com.goreact:windowFixedWidthMajor\n        */\n        public static final int Theme_windowFixedWidthMajor = 6;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#windowFixedWidthMinor}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>May be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>May be a fractional value, which is a floating point number appended with either % or %p, such as \"<code>14.5%</code>\".\nThe % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to\nsome parent container.\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          @attr name com.goreact:windowFixedWidthMinor\n        */\n        public static final int Theme_windowFixedWidthMinor = 8;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#windowMinWidthMajor}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>May be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>May be a fractional value, which is a floating point number appended with either % or %p, such as \"<code>14.5%</code>\".\nThe % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to\nsome parent container.\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          @attr name com.goreact:windowMinWidthMajor\n        */\n        public static final int Theme_windowMinWidthMajor = 10;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#windowMinWidthMinor}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>May be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>May be a fractional value, which is a floating point number appended with either % or %p, such as \"<code>14.5%</code>\".\nThe % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to\nsome parent container.\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          @attr name com.goreact:windowMinWidthMinor\n        */\n        public static final int Theme_windowMinWidthMinor = 11;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#windowNoTitle}\n          attribute's value can be found in the {@link #Theme} array.\n\n\n          <p>Must be a boolean value, either \"<code>true</code>\" or \"<code>false</code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          @attr name com.goreact:windowNoTitle\n        */\n        public static final int Theme_windowNoTitle = 3;\n        /** Attributes that can be used with a Toolbar.\n           <p>Includes the following attributes:</p>\n           <table>\n           <colgroup align=\"left\" />\n           <colgroup align=\"left\" />\n           <tr><th>Attribute</th><th>Description</th></tr>\n           <tr><td><code>{@link #Toolbar_android_gravity android:gravity}</code></td><td></td></tr>\n           <tr><td><code>{@link #Toolbar_android_minHeight android:minHeight}</code></td><td></td></tr>\n           <tr><td><code>{@link #Toolbar_collapseContentDescription com.goreact:collapseContentDescription}</code></td><td></td></tr>\n           <tr><td><code>{@link #Toolbar_collapseIcon com.goreact:collapseIcon}</code></td><td></td></tr>\n           <tr><td><code>{@link #Toolbar_contentInsetEnd com.goreact:contentInsetEnd}</code></td><td></td></tr>\n           <tr><td><code>{@link #Toolbar_contentInsetLeft com.goreact:contentInsetLeft}</code></td><td></td></tr>\n           <tr><td><code>{@link #Toolbar_contentInsetRight com.goreact:contentInsetRight}</code></td><td></td></tr>\n           <tr><td><code>{@link #Toolbar_contentInsetStart com.goreact:contentInsetStart}</code></td><td></td></tr>\n           <tr><td><code>{@link #Toolbar_logo com.goreact:logo}</code></td><td></td></tr>\n           <tr><td><code>{@link #Toolbar_logoDescription com.goreact:logoDescription}</code></td><td></td></tr>\n           <tr><td><code>{@link #Toolbar_maxButtonHeight com.goreact:maxButtonHeight}</code></td><td></td></tr>\n           <tr><td><code>{@link #Toolbar_navigationContentDescription com.goreact:navigationContentDescription}</code></td><td></td></tr>\n           <tr><td><code>{@link #Toolbar_navigationIcon com.goreact:navigationIcon}</code></td><td></td></tr>\n           <tr><td><code>{@link #Toolbar_popupTheme com.goreact:popupTheme}</code></td><td></td></tr>\n           <tr><td><code>{@link #Toolbar_subtitle com.goreact:subtitle}</code></td><td></td></tr>\n           <tr><td><code>{@link #Toolbar_subtitleTextAppearance com.goreact:subtitleTextAppearance}</code></td><td></td></tr>\n           <tr><td><code>{@link #Toolbar_subtitleTextColor com.goreact:subtitleTextColor}</code></td><td></td></tr>\n           <tr><td><code>{@link #Toolbar_title com.goreact:title}</code></td><td></td></tr>\n           <tr><td><code>{@link #Toolbar_titleMarginBottom com.goreact:titleMarginBottom}</code></td><td></td></tr>\n           <tr><td><code>{@link #Toolbar_titleMarginEnd com.goreact:titleMarginEnd}</code></td><td></td></tr>\n           <tr><td><code>{@link #Toolbar_titleMarginStart com.goreact:titleMarginStart}</code></td><td></td></tr>\n           <tr><td><code>{@link #Toolbar_titleMarginTop com.goreact:titleMarginTop}</code></td><td></td></tr>\n           <tr><td><code>{@link #Toolbar_titleMargins com.goreact:titleMargins}</code></td><td></td></tr>\n           <tr><td><code>{@link #Toolbar_titleTextAppearance com.goreact:titleTextAppearance}</code></td><td></td></tr>\n           <tr><td><code>{@link #Toolbar_titleTextColor com.goreact:titleTextColor}</code></td><td></td></tr>\n           </table>\n           @see #Toolbar_android_gravity\n           @see #Toolbar_android_minHeight\n           @see #Toolbar_collapseContentDescription\n           @see #Toolbar_collapseIcon\n           @see #Toolbar_contentInsetEnd\n           @see #Toolbar_contentInsetLeft\n           @see #Toolbar_contentInsetRight\n           @see #Toolbar_contentInsetStart\n           @see #Toolbar_logo\n           @see #Toolbar_logoDescription\n           @see #Toolbar_maxButtonHeight\n           @see #Toolbar_navigationContentDescription\n           @see #Toolbar_navigationIcon\n           @see #Toolbar_popupTheme\n           @see #Toolbar_subtitle\n           @see #Toolbar_subtitleTextAppearance\n           @see #Toolbar_subtitleTextColor\n           @see #Toolbar_title\n           @see #Toolbar_titleMarginBottom\n           @see #Toolbar_titleMarginEnd\n           @see #Toolbar_titleMarginStart\n           @see #Toolbar_titleMarginTop\n           @see #Toolbar_titleMargins\n           @see #Toolbar_titleTextAppearance\n           @see #Toolbar_titleTextColor\n         */\n        public static final int[] Toolbar = {\n            0x010100af, 0x01010140, 0x7f010003, 0x7f010006,\n            0x7f01000a, 0x7f010016, 0x7f010017, 0x7f010018,\n            0x7f010019, 0x7f01001b, 0x7f0100d3, 0x7f0100d4,\n            0x7f0100d5, 0x7f0100d6, 0x7f0100d7, 0x7f0100d8,\n            0x7f0100d9, 0x7f0100da, 0x7f0100db, 0x7f0100dc,\n            0x7f0100dd, 0x7f0100de, 0x7f0100df, 0x7f0100e0,\n            0x7f0100e1\n        };\n        /**\n          <p>This symbol is the offset where the {@link android.R.attr#gravity}\n          attribute's value can be found in the {@link #Toolbar} array.\n          @attr name android:gravity\n        */\n        public static final int Toolbar_android_gravity = 0;\n        /**\n          <p>This symbol is the offset where the {@link android.R.attr#minHeight}\n          attribute's value can be found in the {@link #Toolbar} array.\n          @attr name android:minHeight\n        */\n        public static final int Toolbar_android_minHeight = 1;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#collapseContentDescription}\n          attribute's value can be found in the {@link #Toolbar} array.\n\n\n          <p>Must be a string value, using '\\\\;' to escape characters such as '\\\\n' or '\\\\uxxxx' for a unicode character.\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          @attr name com.goreact:collapseContentDescription\n        */\n        public static final int Toolbar_collapseContentDescription = 19;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#collapseIcon}\n          attribute's value can be found in the {@link #Toolbar} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:collapseIcon\n        */\n        public static final int Toolbar_collapseIcon = 18;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#contentInsetEnd}\n          attribute's value can be found in the {@link #Toolbar} array.\n\n\n          <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          @attr name com.goreact:contentInsetEnd\n        */\n        public static final int Toolbar_contentInsetEnd = 6;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#contentInsetLeft}\n          attribute's value can be found in the {@link #Toolbar} array.\n\n\n          <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          @attr name com.goreact:contentInsetLeft\n        */\n        public static final int Toolbar_contentInsetLeft = 7;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#contentInsetRight}\n          attribute's value can be found in the {@link #Toolbar} array.\n\n\n          <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          @attr name com.goreact:contentInsetRight\n        */\n        public static final int Toolbar_contentInsetRight = 8;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#contentInsetStart}\n          attribute's value can be found in the {@link #Toolbar} array.\n\n\n          <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          @attr name com.goreact:contentInsetStart\n        */\n        public static final int Toolbar_contentInsetStart = 5;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#logo}\n          attribute's value can be found in the {@link #Toolbar} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:logo\n        */\n        public static final int Toolbar_logo = 4;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#logoDescription}\n          attribute's value can be found in the {@link #Toolbar} array.\n\n\n          <p>Must be a string value, using '\\\\;' to escape characters such as '\\\\n' or '\\\\uxxxx' for a unicode character.\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          @attr name com.goreact:logoDescription\n        */\n        public static final int Toolbar_logoDescription = 22;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#maxButtonHeight}\n          attribute's value can be found in the {@link #Toolbar} array.\n\n\n          <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          @attr name com.goreact:maxButtonHeight\n        */\n        public static final int Toolbar_maxButtonHeight = 17;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#navigationContentDescription}\n          attribute's value can be found in the {@link #Toolbar} array.\n\n\n          <p>Must be a string value, using '\\\\;' to escape characters such as '\\\\n' or '\\\\uxxxx' for a unicode character.\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          @attr name com.goreact:navigationContentDescription\n        */\n        public static final int Toolbar_navigationContentDescription = 21;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#navigationIcon}\n          attribute's value can be found in the {@link #Toolbar} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:navigationIcon\n        */\n        public static final int Toolbar_navigationIcon = 20;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#popupTheme}\n          attribute's value can be found in the {@link #Toolbar} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:popupTheme\n        */\n        public static final int Toolbar_popupTheme = 9;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#subtitle}\n          attribute's value can be found in the {@link #Toolbar} array.\n\n\n          <p>Must be a string value, using '\\\\;' to escape characters such as '\\\\n' or '\\\\uxxxx' for a unicode character.\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          @attr name com.goreact:subtitle\n        */\n        public static final int Toolbar_subtitle = 3;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#subtitleTextAppearance}\n          attribute's value can be found in the {@link #Toolbar} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:subtitleTextAppearance\n        */\n        public static final int Toolbar_subtitleTextAppearance = 11;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#subtitleTextColor}\n          attribute's value can be found in the {@link #Toolbar} array.\n\n\n          <p>Must be a color value, in the form of \"<code>#<i>rgb</i></code>\", \"<code>#<i>argb</i></code>\",\n\"<code>#<i>rrggbb</i></code>\", or \"<code>#<i>aarrggbb</i></code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          @attr name com.goreact:subtitleTextColor\n        */\n        public static final int Toolbar_subtitleTextColor = 24;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#title}\n          attribute's value can be found in the {@link #Toolbar} array.\n\n\n          <p>Must be a string value, using '\\\\;' to escape characters such as '\\\\n' or '\\\\uxxxx' for a unicode character.\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          @attr name com.goreact:title\n        */\n        public static final int Toolbar_title = 2;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#titleMarginBottom}\n          attribute's value can be found in the {@link #Toolbar} array.\n\n\n          <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          @attr name com.goreact:titleMarginBottom\n        */\n        public static final int Toolbar_titleMarginBottom = 16;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#titleMarginEnd}\n          attribute's value can be found in the {@link #Toolbar} array.\n\n\n          <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          @attr name com.goreact:titleMarginEnd\n        */\n        public static final int Toolbar_titleMarginEnd = 14;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#titleMarginStart}\n          attribute's value can be found in the {@link #Toolbar} array.\n\n\n          <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          @attr name com.goreact:titleMarginStart\n        */\n        public static final int Toolbar_titleMarginStart = 13;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#titleMarginTop}\n          attribute's value can be found in the {@link #Toolbar} array.\n\n\n          <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          @attr name com.goreact:titleMarginTop\n        */\n        public static final int Toolbar_titleMarginTop = 15;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#titleMargins}\n          attribute's value can be found in the {@link #Toolbar} array.\n\n\n          <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          @attr name com.goreact:titleMargins\n        */\n        public static final int Toolbar_titleMargins = 12;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#titleTextAppearance}\n          attribute's value can be found in the {@link #Toolbar} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:titleTextAppearance\n        */\n        public static final int Toolbar_titleTextAppearance = 10;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#titleTextColor}\n          attribute's value can be found in the {@link #Toolbar} array.\n\n\n          <p>Must be a color value, in the form of \"<code>#<i>rgb</i></code>\", \"<code>#<i>argb</i></code>\",\n\"<code>#<i>rrggbb</i></code>\", or \"<code>#<i>aarrggbb</i></code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          @attr name com.goreact:titleTextColor\n        */\n        public static final int Toolbar_titleTextColor = 23;\n        /** Attributes that can be used with a View.\n           <p>Includes the following attributes:</p>\n           <table>\n           <colgroup align=\"left\" />\n           <colgroup align=\"left\" />\n           <tr><th>Attribute</th><th>Description</th></tr>\n           <tr><td><code>{@link #View_android_focusable android:focusable}</code></td><td></td></tr>\n           <tr><td><code>{@link #View_android_theme android:theme}</code></td><td></td></tr>\n           <tr><td><code>{@link #View_paddingEnd com.goreact:paddingEnd}</code></td><td></td></tr>\n           <tr><td><code>{@link #View_paddingStart com.goreact:paddingStart}</code></td><td></td></tr>\n           <tr><td><code>{@link #View_theme com.goreact:theme}</code></td><td></td></tr>\n           </table>\n           @see #View_android_focusable\n           @see #View_android_theme\n           @see #View_paddingEnd\n           @see #View_paddingStart\n           @see #View_theme\n         */\n        public static final int[] View = {\n            0x01010000, 0x010100da, 0x7f0100e2, 0x7f0100e3,\n            0x7f0100e4\n        };\n        /**\n          <p>This symbol is the offset where the {@link android.R.attr#focusable}\n          attribute's value can be found in the {@link #View} array.\n          @attr name android:focusable\n        */\n        public static final int View_android_focusable = 1;\n        /**\n          <p>This symbol is the offset where the {@link android.R.attr#theme}\n          attribute's value can be found in the {@link #View} array.\n          @attr name android:theme\n        */\n        public static final int View_android_theme = 0;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#paddingEnd}\n          attribute's value can be found in the {@link #View} array.\n\n\n          <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          @attr name com.goreact:paddingEnd\n        */\n        public static final int View_paddingEnd = 3;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#paddingStart}\n          attribute's value can be found in the {@link #View} array.\n\n\n          <p>Must be a dimension value, which is a floating point number appended with a unit such as \"<code>14.5sp</code>\".\nAvailable units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),\nin (inches), mm (millimeters).\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          @attr name com.goreact:paddingStart\n        */\n        public static final int View_paddingStart = 2;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#theme}\n          attribute's value can be found in the {@link #View} array.\n\n\n          <p>Must be a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\nor to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\".\n          @attr name com.goreact:theme\n        */\n        public static final int View_theme = 4;\n        /** Attributes that can be used with a ViewBackgroundHelper.\n           <p>Includes the following attributes:</p>\n           <table>\n           <colgroup align=\"left\" />\n           <colgroup align=\"left\" />\n           <tr><th>Attribute</th><th>Description</th></tr>\n           <tr><td><code>{@link #ViewBackgroundHelper_android_background android:background}</code></td><td></td></tr>\n           <tr><td><code>{@link #ViewBackgroundHelper_backgroundTint com.goreact:backgroundTint}</code></td><td></td></tr>\n           <tr><td><code>{@link #ViewBackgroundHelper_backgroundTintMode com.goreact:backgroundTintMode}</code></td><td></td></tr>\n           </table>\n           @see #ViewBackgroundHelper_android_background\n           @see #ViewBackgroundHelper_backgroundTint\n           @see #ViewBackgroundHelper_backgroundTintMode\n         */\n        public static final int[] ViewBackgroundHelper = {\n            0x010100d4, 0x7f0100e5, 0x7f0100e6\n        };\n        /**\n          <p>This symbol is the offset where the {@link android.R.attr#background}\n          attribute's value can be found in the {@link #ViewBackgroundHelper} array.\n          @attr name android:background\n        */\n        public static final int ViewBackgroundHelper_android_background = 0;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#backgroundTint}\n          attribute's value can be found in the {@link #ViewBackgroundHelper} array.\n\n\n          <p>Must be a color value, in the form of \"<code>#<i>rgb</i></code>\", \"<code>#<i>argb</i></code>\",\n\"<code>#<i>rrggbb</i></code>\", or \"<code>#<i>aarrggbb</i></code>\".\n<p>This may also be a reference to a resource (in the form\n\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\ntheme attribute (in the form\n\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\ncontaining a value of this type.\n          @attr name com.goreact:backgroundTint\n        */\n        public static final int ViewBackgroundHelper_backgroundTint = 1;\n        /**\n          <p>This symbol is the offset where the {@link com.goreact.R.attr#backgroundTintMode}\n          attribute's value can be found in the {@link #ViewBackgroundHelper} array.\n\n\n          <p>Must be one of the following constant values.</p>\n<table>\n<colgroup align=\"left\" />\n<colgroup align=\"left\" />\n<colgroup align=\"left\" />\n<tr><th>Constant</th><th>Value</th><th>Description</th></tr>\n<tr><td><code>src_over</code></td><td>3</td><td></td></tr>\n<tr><td><code>src_in</code></td><td>5</td><td></td></tr>\n<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>\n<tr><td><code>multiply</code></td><td>14</td><td></td></tr>\n<tr><td><code>screen</code></td><td>15</td><td></td></tr>\n</table>\n          @attr name com.goreact:backgroundTintMode\n        */\n        public static final int ViewBackgroundHelper_backgroundTintMode = 2;\n        /** Attributes that can be used with a ViewStubCompat.\n           <p>Includes the following attributes:</p>\n           <table>\n           <colgroup align=\"left\" />\n           <colgroup align=\"left\" />\n           <tr><th>Attribute</th><th>Description</th></tr>\n           <tr><td><code>{@link #ViewStubCompat_android_id android:id}</code></td><td></td></tr>\n           <tr><td><code>{@link #ViewStubCompat_android_inflatedId android:inflatedId}</code></td><td></td></tr>\n           <tr><td><code>{@link #ViewStubCompat_android_layout android:layout}</code></td><td></td></tr>\n           </table>\n           @see #ViewStubCompat_android_id\n           @see #ViewStubCompat_android_inflatedId\n           @see #ViewStubCompat_android_layout\n         */\n        public static final int[] ViewStubCompat = {\n            0x010100d0, 0x010100f2, 0x010100f3\n        };\n        /**\n          <p>This symbol is the offset where the {@link android.R.attr#id}\n          attribute's value can be found in the {@link #ViewStubCompat} array.\n          @attr name android:id\n        */\n        public static final int ViewStubCompat_android_id = 0;\n        /**\n          <p>This symbol is the offset where the {@link android.R.attr#inflatedId}\n          attribute's value can be found in the {@link #ViewStubCompat} array.\n          @attr name android:inflatedId\n        */\n        public static final int ViewStubCompat_android_inflatedId = 2;\n        /**\n          <p>This symbol is the offset where the {@link android.R.attr#layout}\n          attribute's value can be found in the {@link #ViewStubCompat} array.\n          @attr name android:layout\n        */\n        public static final int ViewStubCompat_android_layout = 1;\n    };\n}\n"
  },
  {
    "path": "android/app/build/generated/source/r/debug/go/demo/gojni/R.java",
    "content": "/* AUTO-GENERATED FILE.  DO NOT MODIFY.\n *\n * This class was automatically generated by the\n * aapt tool from the resource data it found.  It\n * should not be modified by hand.\n */\npackage go.demo.gojni;\n\npublic final class R {\n}\n"
  },
  {
    "path": "android/app/build/generated/source/r/debug/org/webkit/android_jsc/R.java",
    "content": "/* AUTO-GENERATED FILE.  DO NOT MODIFY.\n *\n * This class was automatically generated by the\n * aapt tool from the resource data it found.  It\n * should not be modified by hand.\n */\npackage org.webkit.android_jsc;\n\npublic final class R {\n}\n"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/GoReact/demo/unspecified/AndroidManifest.xml",
    "content": "<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\" package=\"go.demo.gojni\">\n<uses-sdk android:minSdkVersion=\"15\"/></manifest>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/GoReact/demo/unspecified/R.txt",
    "content": ""
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/GoReact/demo/unspecified/proguard.txt",
    "content": "-keep class go.** { *; }\n"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/AndroidManifest.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!--\n Copyright (C) 2012 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    package=\"android.support.v7.appcompat\" >\n\n    <uses-sdk android:minSdkVersion=\"7\" />\n\n    <application />\n\n</manifest>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/R.txt",
    "content": "int anim abc_fade_in 0x7f040000\nint anim abc_fade_out 0x7f040001\nint anim abc_grow_fade_in_from_bottom 0x7f040002\nint anim abc_popup_enter 0x7f040003\nint anim abc_popup_exit 0x7f040004\nint anim abc_shrink_fade_out_from_bottom 0x7f040005\nint anim abc_slide_in_bottom 0x7f040006\nint anim abc_slide_in_top 0x7f040007\nint anim abc_slide_out_bottom 0x7f040008\nint anim abc_slide_out_top 0x7f040009\nint attr actionBarDivider 0x7f010062\nint attr actionBarItemBackground 0x7f010063\nint attr actionBarPopupTheme 0x7f01005c\nint attr actionBarSize 0x7f010061\nint attr actionBarSplitStyle 0x7f01005e\nint attr actionBarStyle 0x7f01005d\nint attr actionBarTabBarStyle 0x7f010058\nint attr actionBarTabStyle 0x7f010057\nint attr actionBarTabTextStyle 0x7f010059\nint attr actionBarTheme 0x7f01005f\nint attr actionBarWidgetTheme 0x7f010060\nint attr actionButtonStyle 0x7f01007c\nint attr actionDropDownStyle 0x7f010078\nint attr actionLayout 0x7f010033\nint attr actionMenuTextAppearance 0x7f010064\nint attr actionMenuTextColor 0x7f010065\nint attr actionModeBackground 0x7f010068\nint attr actionModeCloseButtonStyle 0x7f010067\nint attr actionModeCloseDrawable 0x7f01006a\nint attr actionModeCopyDrawable 0x7f01006c\nint attr actionModeCutDrawable 0x7f01006b\nint attr actionModeFindDrawable 0x7f010070\nint attr actionModePasteDrawable 0x7f01006d\nint attr actionModePopupWindowStyle 0x7f010072\nint attr actionModeSelectAllDrawable 0x7f01006e\nint attr actionModeShareDrawable 0x7f01006f\nint attr actionModeSplitBackground 0x7f010069\nint attr actionModeStyle 0x7f010066\nint attr actionModeWebSearchDrawable 0x7f010071\nint attr actionOverflowButtonStyle 0x7f01005a\nint attr actionOverflowMenuStyle 0x7f01005b\nint attr actionProviderClass 0x7f010035\nint attr actionViewClass 0x7f010034\nint attr activityChooserViewStyle 0x7f010084\nint attr alertDialogButtonGroupStyle 0x7f0100a6\nint attr alertDialogCenterButtons 0x7f0100a7\nint attr alertDialogStyle 0x7f0100a5\nint attr alertDialogTheme 0x7f0100a8\nint attr arrowHeadLength 0x7f01002b\nint attr arrowShaftLength 0x7f01002c\nint attr autoCompleteTextViewStyle 0x7f0100ad\nint attr background 0x7f01000c\nint attr backgroundSplit 0x7f01000e\nint attr backgroundStacked 0x7f01000d\nint attr backgroundTint 0x7f0100c9\nint attr backgroundTintMode 0x7f0100ca\nint attr barLength 0x7f01002d\nint attr borderlessButtonStyle 0x7f010081\nint attr buttonBarButtonStyle 0x7f01007e\nint attr buttonBarNegativeButtonStyle 0x7f0100ab\nint attr buttonBarNeutralButtonStyle 0x7f0100ac\nint attr buttonBarPositiveButtonStyle 0x7f0100aa\nint attr buttonBarStyle 0x7f01007d\nint attr buttonPanelSideLayout 0x7f01001f\nint attr buttonStyle 0x7f0100ae\nint attr buttonStyleSmall 0x7f0100af\nint attr buttonTint 0x7f010025\nint attr buttonTintMode 0x7f010026\nint attr checkboxStyle 0x7f0100b0\nint attr checkedTextViewStyle 0x7f0100b1\nint attr closeIcon 0x7f01003d\nint attr closeItemLayout 0x7f01001c\nint attr collapseContentDescription 0x7f0100c0\nint attr collapseIcon 0x7f0100bf\nint attr color 0x7f010027\nint attr colorAccent 0x7f01009e\nint attr colorButtonNormal 0x7f0100a2\nint attr colorControlActivated 0x7f0100a0\nint attr colorControlHighlight 0x7f0100a1\nint attr colorControlNormal 0x7f01009f\nint attr colorPrimary 0x7f01009c\nint attr colorPrimaryDark 0x7f01009d\nint attr colorSwitchThumbNormal 0x7f0100a3\nint attr commitIcon 0x7f010042\nint attr contentInsetEnd 0x7f010017\nint attr contentInsetLeft 0x7f010018\nint attr contentInsetRight 0x7f010019\nint attr contentInsetStart 0x7f010016\nint attr controlBackground 0x7f0100a4\nint attr customNavigationLayout 0x7f01000f\nint attr defaultQueryHint 0x7f01003c\nint attr dialogPreferredPadding 0x7f010076\nint attr dialogTheme 0x7f010075\nint attr displayOptions 0x7f010005\nint attr divider 0x7f01000b\nint attr dividerHorizontal 0x7f010083\nint attr dividerPadding 0x7f010031\nint attr dividerVertical 0x7f010082\nint attr drawableSize 0x7f010029\nint attr drawerArrowStyle 0x7f010000\nint attr dropDownListViewStyle 0x7f010094\nint attr dropdownListPreferredItemHeight 0x7f010079\nint attr editTextBackground 0x7f01008a\nint attr editTextColor 0x7f010089\nint attr editTextStyle 0x7f0100b2\nint attr elevation 0x7f01001a\nint attr expandActivityOverflowButtonDrawable 0x7f01001e\nint attr gapBetweenBars 0x7f01002a\nint attr goIcon 0x7f01003e\nint attr height 0x7f010001\nint attr hideOnContentScroll 0x7f010015\nint attr homeAsUpIndicator 0x7f01007b\nint attr homeLayout 0x7f010010\nint attr icon 0x7f010009\nint attr iconifiedByDefault 0x7f01003a\nint attr indeterminateProgressStyle 0x7f010012\nint attr initialActivityCount 0x7f01001d\nint attr isLightTheme 0x7f010002\nint attr itemPadding 0x7f010014\nint attr layout 0x7f010039\nint attr listChoiceBackgroundIndicator 0x7f01009b\nint attr listDividerAlertDialog 0x7f010077\nint attr listItemLayout 0x7f010023\nint attr listLayout 0x7f010020\nint attr listPopupWindowStyle 0x7f010095\nint attr listPreferredItemHeight 0x7f01008f\nint attr listPreferredItemHeightLarge 0x7f010091\nint attr listPreferredItemHeightSmall 0x7f010090\nint attr listPreferredItemPaddingLeft 0x7f010092\nint attr listPreferredItemPaddingRight 0x7f010093\nint attr logo 0x7f01000a\nint attr logoDescription 0x7f0100c3\nint attr maxButtonHeight 0x7f0100be\nint attr measureWithLargestChild 0x7f01002f\nint attr multiChoiceItemLayout 0x7f010021\nint attr navigationContentDescription 0x7f0100c2\nint attr navigationIcon 0x7f0100c1\nint attr navigationMode 0x7f010004\nint attr overlapAnchor 0x7f010037\nint attr paddingEnd 0x7f0100c7\nint attr paddingStart 0x7f0100c6\nint attr panelBackground 0x7f010098\nint attr panelMenuListTheme 0x7f01009a\nint attr panelMenuListWidth 0x7f010099\nint attr popupMenuStyle 0x7f010087\nint attr popupTheme 0x7f01001b\nint attr popupWindowStyle 0x7f010088\nint attr preserveIconSpacing 0x7f010036\nint attr progressBarPadding 0x7f010013\nint attr progressBarStyle 0x7f010011\nint attr queryBackground 0x7f010044\nint attr queryHint 0x7f01003b\nint attr radioButtonStyle 0x7f0100b3\nint attr ratingBarStyle 0x7f0100b4\nint attr searchHintIcon 0x7f010040\nint attr searchIcon 0x7f01003f\nint attr searchViewStyle 0x7f01008e\nint attr selectableItemBackground 0x7f01007f\nint attr selectableItemBackgroundBorderless 0x7f010080\nint attr showAsAction 0x7f010032\nint attr showDividers 0x7f010030\nint attr showText 0x7f01004c\nint attr singleChoiceItemLayout 0x7f010022\nint attr spinBars 0x7f010028\nint attr spinnerDropDownItemStyle 0x7f01007a\nint attr spinnerStyle 0x7f0100b5\nint attr splitTrack 0x7f01004b\nint attr state_above_anchor 0x7f010038\nint attr submitBackground 0x7f010045\nint attr subtitle 0x7f010006\nint attr subtitleTextAppearance 0x7f0100b8\nint attr subtitleTextColor 0x7f0100c5\nint attr subtitleTextStyle 0x7f010008\nint attr suggestionRowLayout 0x7f010043\nint attr switchMinWidth 0x7f010049\nint attr switchPadding 0x7f01004a\nint attr switchStyle 0x7f0100b6\nint attr switchTextAppearance 0x7f010048\nint attr textAllCaps 0x7f010024\nint attr textAppearanceLargePopupMenu 0x7f010073\nint attr textAppearanceListItem 0x7f010096\nint attr textAppearanceListItemSmall 0x7f010097\nint attr textAppearanceSearchResultSubtitle 0x7f01008c\nint attr textAppearanceSearchResultTitle 0x7f01008b\nint attr textAppearanceSmallPopupMenu 0x7f010074\nint attr textColorAlertDialogListItem 0x7f0100a9\nint attr textColorSearchUrl 0x7f01008d\nint attr theme 0x7f0100c8\nint attr thickness 0x7f01002e\nint attr thumbTextPadding 0x7f010047\nint attr title 0x7f010003\nint attr titleMarginBottom 0x7f0100bd\nint attr titleMarginEnd 0x7f0100bb\nint attr titleMarginStart 0x7f0100ba\nint attr titleMarginTop 0x7f0100bc\nint attr titleMargins 0x7f0100b9\nint attr titleTextAppearance 0x7f0100b7\nint attr titleTextColor 0x7f0100c4\nint attr titleTextStyle 0x7f010007\nint attr toolbarNavigationButtonStyle 0x7f010086\nint attr toolbarStyle 0x7f010085\nint attr track 0x7f010046\nint attr voiceIcon 0x7f010041\nint attr windowActionBar 0x7f01004d\nint attr windowActionBarOverlay 0x7f01004f\nint attr windowActionModeOverlay 0x7f010050\nint attr windowFixedHeightMajor 0x7f010054\nint attr windowFixedHeightMinor 0x7f010052\nint attr windowFixedWidthMajor 0x7f010051\nint attr windowFixedWidthMinor 0x7f010053\nint attr windowMinWidthMajor 0x7f010055\nint attr windowMinWidthMinor 0x7f010056\nint attr windowNoTitle 0x7f01004e\nint bool abc_action_bar_embed_tabs 0x7f080002\nint bool abc_action_bar_embed_tabs_pre_jb 0x7f080000\nint bool abc_action_bar_expanded_action_views_exclusive 0x7f080003\nint bool abc_config_actionMenuItemAllCaps 0x7f080004\nint bool abc_config_allowActionMenuItemTextWithIcon 0x7f080001\nint bool abc_config_closeDialogWhenTouchOutside 0x7f080005\nint bool abc_config_showMenuShortcutsWhenKeyboardPresent 0x7f080006\nint color abc_background_cache_hint_selector_material_dark 0x7f0a003a\nint color abc_background_cache_hint_selector_material_light 0x7f0a003b\nint color abc_color_highlight_material 0x7f0a003c\nint color abc_input_method_navigation_guard 0x7f0a0000\nint color abc_primary_text_disable_only_material_dark 0x7f0a003d\nint color abc_primary_text_disable_only_material_light 0x7f0a003e\nint color abc_primary_text_material_dark 0x7f0a003f\nint color abc_primary_text_material_light 0x7f0a0040\nint color abc_search_url_text 0x7f0a0041\nint color abc_search_url_text_normal 0x7f0a0001\nint color abc_search_url_text_pressed 0x7f0a0002\nint color abc_search_url_text_selected 0x7f0a0003\nint color abc_secondary_text_material_dark 0x7f0a0042\nint color abc_secondary_text_material_light 0x7f0a0043\nint color accent_material_dark 0x7f0a0004\nint color accent_material_light 0x7f0a0005\nint color background_floating_material_dark 0x7f0a0006\nint color background_floating_material_light 0x7f0a0007\nint color background_material_dark 0x7f0a0008\nint color background_material_light 0x7f0a0009\nint color bright_foreground_disabled_material_dark 0x7f0a000a\nint color bright_foreground_disabled_material_light 0x7f0a000b\nint color bright_foreground_inverse_material_dark 0x7f0a000c\nint color bright_foreground_inverse_material_light 0x7f0a000d\nint color bright_foreground_material_dark 0x7f0a000e\nint color bright_foreground_material_light 0x7f0a000f\nint color button_material_dark 0x7f0a0010\nint color button_material_light 0x7f0a0011\nint color dim_foreground_disabled_material_dark 0x7f0a0012\nint color dim_foreground_disabled_material_light 0x7f0a0013\nint color dim_foreground_material_dark 0x7f0a0014\nint color dim_foreground_material_light 0x7f0a0015\nint color foreground_material_dark 0x7f0a0016\nint color foreground_material_light 0x7f0a0017\nint color highlighted_text_material_dark 0x7f0a0018\nint color highlighted_text_material_light 0x7f0a0019\nint color hint_foreground_material_dark 0x7f0a001a\nint color hint_foreground_material_light 0x7f0a001b\nint color material_blue_grey_800 0x7f0a001c\nint color material_blue_grey_900 0x7f0a001d\nint color material_blue_grey_950 0x7f0a001e\nint color material_deep_teal_200 0x7f0a001f\nint color material_deep_teal_500 0x7f0a0020\nint color material_grey_100 0x7f0a0021\nint color material_grey_300 0x7f0a0022\nint color material_grey_50 0x7f0a0023\nint color material_grey_600 0x7f0a0024\nint color material_grey_800 0x7f0a0025\nint color material_grey_850 0x7f0a0026\nint color material_grey_900 0x7f0a0027\nint color primary_dark_material_dark 0x7f0a0028\nint color primary_dark_material_light 0x7f0a0029\nint color primary_material_dark 0x7f0a002a\nint color primary_material_light 0x7f0a002b\nint color primary_text_default_material_dark 0x7f0a002c\nint color primary_text_default_material_light 0x7f0a002d\nint color primary_text_disabled_material_dark 0x7f0a002e\nint color primary_text_disabled_material_light 0x7f0a002f\nint color ripple_material_dark 0x7f0a0030\nint color ripple_material_light 0x7f0a0031\nint color secondary_text_default_material_dark 0x7f0a0032\nint color secondary_text_default_material_light 0x7f0a0033\nint color secondary_text_disabled_material_dark 0x7f0a0034\nint color secondary_text_disabled_material_light 0x7f0a0035\nint color switch_thumb_disabled_material_dark 0x7f0a0036\nint color switch_thumb_disabled_material_light 0x7f0a0037\nint color switch_thumb_material_dark 0x7f0a0044\nint color switch_thumb_material_light 0x7f0a0045\nint color switch_thumb_normal_material_dark 0x7f0a0038\nint color switch_thumb_normal_material_light 0x7f0a0039\nint dimen abc_action_bar_content_inset_material 0x7f06000b\nint dimen abc_action_bar_default_height_material 0x7f060001\nint dimen abc_action_bar_default_padding_end_material 0x7f06000c\nint dimen abc_action_bar_default_padding_start_material 0x7f06000d\nint dimen abc_action_bar_icon_vertical_padding_material 0x7f06000f\nint dimen abc_action_bar_overflow_padding_end_material 0x7f060010\nint dimen abc_action_bar_overflow_padding_start_material 0x7f060011\nint dimen abc_action_bar_progress_bar_size 0x7f060002\nint dimen abc_action_bar_stacked_max_height 0x7f060012\nint dimen abc_action_bar_stacked_tab_max_width 0x7f060013\nint dimen abc_action_bar_subtitle_bottom_margin_material 0x7f060014\nint dimen abc_action_bar_subtitle_top_margin_material 0x7f060015\nint dimen abc_action_button_min_height_material 0x7f060016\nint dimen abc_action_button_min_width_material 0x7f060017\nint dimen abc_action_button_min_width_overflow_material 0x7f060018\nint dimen abc_alert_dialog_button_bar_height 0x7f060000\nint dimen abc_button_inset_horizontal_material 0x7f060019\nint dimen abc_button_inset_vertical_material 0x7f06001a\nint dimen abc_button_padding_horizontal_material 0x7f06001b\nint dimen abc_button_padding_vertical_material 0x7f06001c\nint dimen abc_config_prefDialogWidth 0x7f060005\nint dimen abc_control_corner_material 0x7f06001d\nint dimen abc_control_inset_material 0x7f06001e\nint dimen abc_control_padding_material 0x7f06001f\nint dimen abc_dialog_list_padding_vertical_material 0x7f060020\nint dimen abc_dialog_min_width_major 0x7f060021\nint dimen abc_dialog_min_width_minor 0x7f060022\nint dimen abc_dialog_padding_material 0x7f060023\nint dimen abc_dialog_padding_top_material 0x7f060024\nint dimen abc_disabled_alpha_material_dark 0x7f060025\nint dimen abc_disabled_alpha_material_light 0x7f060026\nint dimen abc_dropdownitem_icon_width 0x7f060027\nint dimen abc_dropdownitem_text_padding_left 0x7f060028\nint dimen abc_dropdownitem_text_padding_right 0x7f060029\nint dimen abc_edit_text_inset_bottom_material 0x7f06002a\nint dimen abc_edit_text_inset_horizontal_material 0x7f06002b\nint dimen abc_edit_text_inset_top_material 0x7f06002c\nint dimen abc_floating_window_z 0x7f06002d\nint dimen abc_list_item_padding_horizontal_material 0x7f06002e\nint dimen abc_panel_menu_list_width 0x7f06002f\nint dimen abc_search_view_preferred_width 0x7f060030\nint dimen abc_search_view_text_min_width 0x7f060006\nint dimen abc_switch_padding 0x7f06000e\nint dimen abc_text_size_body_1_material 0x7f060031\nint dimen abc_text_size_body_2_material 0x7f060032\nint dimen abc_text_size_button_material 0x7f060033\nint dimen abc_text_size_caption_material 0x7f060034\nint dimen abc_text_size_display_1_material 0x7f060035\nint dimen abc_text_size_display_2_material 0x7f060036\nint dimen abc_text_size_display_3_material 0x7f060037\nint dimen abc_text_size_display_4_material 0x7f060038\nint dimen abc_text_size_headline_material 0x7f060039\nint dimen abc_text_size_large_material 0x7f06003a\nint dimen abc_text_size_medium_material 0x7f06003b\nint dimen abc_text_size_menu_material 0x7f06003c\nint dimen abc_text_size_small_material 0x7f06003d\nint dimen abc_text_size_subhead_material 0x7f06003e\nint dimen abc_text_size_subtitle_material_toolbar 0x7f060003\nint dimen abc_text_size_title_material 0x7f06003f\nint dimen abc_text_size_title_material_toolbar 0x7f060004\nint dimen dialog_fixed_height_major 0x7f060007\nint dimen dialog_fixed_height_minor 0x7f060008\nint dimen dialog_fixed_width_major 0x7f060009\nint dimen dialog_fixed_width_minor 0x7f06000a\nint dimen disabled_alpha_material_dark 0x7f060040\nint dimen disabled_alpha_material_light 0x7f060041\nint dimen highlight_alpha_material_colored 0x7f060042\nint dimen highlight_alpha_material_dark 0x7f060043\nint dimen highlight_alpha_material_light 0x7f060044\nint dimen notification_large_icon_height 0x7f060045\nint dimen notification_large_icon_width 0x7f060046\nint dimen notification_subtext_size 0x7f060047\nint drawable abc_ab_share_pack_mtrl_alpha 0x7f020000\nint drawable abc_action_bar_item_background_material 0x7f020001\nint drawable abc_btn_borderless_material 0x7f020002\nint drawable abc_btn_check_material 0x7f020003\nint drawable abc_btn_check_to_on_mtrl_000 0x7f020004\nint drawable abc_btn_check_to_on_mtrl_015 0x7f020005\nint drawable abc_btn_colored_material 0x7f020006\nint drawable abc_btn_default_mtrl_shape 0x7f020007\nint drawable abc_btn_radio_material 0x7f020008\nint drawable abc_btn_radio_to_on_mtrl_000 0x7f020009\nint drawable abc_btn_radio_to_on_mtrl_015 0x7f02000a\nint drawable abc_btn_rating_star_off_mtrl_alpha 0x7f02000b\nint drawable abc_btn_rating_star_on_mtrl_alpha 0x7f02000c\nint drawable abc_btn_switch_to_on_mtrl_00001 0x7f02000d\nint drawable abc_btn_switch_to_on_mtrl_00012 0x7f02000e\nint drawable abc_cab_background_internal_bg 0x7f02000f\nint drawable abc_cab_background_top_material 0x7f020010\nint drawable abc_cab_background_top_mtrl_alpha 0x7f020011\nint drawable abc_control_background_material 0x7f020012\nint drawable abc_dialog_material_background_dark 0x7f020013\nint drawable abc_dialog_material_background_light 0x7f020014\nint drawable abc_edit_text_material 0x7f020015\nint drawable abc_ic_ab_back_mtrl_am_alpha 0x7f020016\nint drawable abc_ic_clear_mtrl_alpha 0x7f020017\nint drawable abc_ic_commit_search_api_mtrl_alpha 0x7f020018\nint drawable abc_ic_go_search_api_mtrl_alpha 0x7f020019\nint drawable abc_ic_menu_copy_mtrl_am_alpha 0x7f02001a\nint drawable abc_ic_menu_cut_mtrl_alpha 0x7f02001b\nint drawable abc_ic_menu_moreoverflow_mtrl_alpha 0x7f02001c\nint drawable abc_ic_menu_paste_mtrl_am_alpha 0x7f02001d\nint drawable abc_ic_menu_selectall_mtrl_alpha 0x7f02001e\nint drawable abc_ic_menu_share_mtrl_alpha 0x7f02001f\nint drawable abc_ic_search_api_mtrl_alpha 0x7f020020\nint drawable abc_ic_voice_search_api_mtrl_alpha 0x7f020021\nint drawable abc_item_background_holo_dark 0x7f020022\nint drawable abc_item_background_holo_light 0x7f020023\nint drawable abc_list_divider_mtrl_alpha 0x7f020024\nint drawable abc_list_focused_holo 0x7f020025\nint drawable abc_list_longpressed_holo 0x7f020026\nint drawable abc_list_pressed_holo_dark 0x7f020027\nint drawable abc_list_pressed_holo_light 0x7f020028\nint drawable abc_list_selector_background_transition_holo_dark 0x7f020029\nint drawable abc_list_selector_background_transition_holo_light 0x7f02002a\nint drawable abc_list_selector_disabled_holo_dark 0x7f02002b\nint drawable abc_list_selector_disabled_holo_light 0x7f02002c\nint drawable abc_list_selector_holo_dark 0x7f02002d\nint drawable abc_list_selector_holo_light 0x7f02002e\nint drawable abc_menu_hardkey_panel_mtrl_mult 0x7f02002f\nint drawable abc_popup_background_mtrl_mult 0x7f020030\nint drawable abc_ratingbar_full_material 0x7f020031\nint drawable abc_spinner_mtrl_am_alpha 0x7f020032\nint drawable abc_spinner_textfield_background_material 0x7f020033\nint drawable abc_switch_thumb_material 0x7f020034\nint drawable abc_switch_track_mtrl_alpha 0x7f020035\nint drawable abc_tab_indicator_material 0x7f020036\nint drawable abc_tab_indicator_mtrl_alpha 0x7f020037\nint drawable abc_text_cursor_material 0x7f020038\nint drawable abc_textfield_activated_mtrl_alpha 0x7f020039\nint drawable abc_textfield_default_mtrl_alpha 0x7f02003a\nint drawable abc_textfield_search_activated_mtrl_alpha 0x7f02003b\nint drawable abc_textfield_search_default_mtrl_alpha 0x7f02003c\nint drawable abc_textfield_search_material 0x7f02003d\nint drawable notification_template_icon_bg 0x7f02003e\nint id action0 0x7f0b004d\nint id action_bar 0x7f0b003e\nint id action_bar_activity_content 0x7f0b0000\nint id action_bar_container 0x7f0b003d\nint id action_bar_root 0x7f0b0039\nint id action_bar_spinner 0x7f0b0001\nint id action_bar_subtitle 0x7f0b0022\nint id action_bar_title 0x7f0b0021\nint id action_context_bar 0x7f0b003f\nint id action_divider 0x7f0b0051\nint id action_menu_divider 0x7f0b0002\nint id action_menu_presenter 0x7f0b0003\nint id action_mode_bar 0x7f0b003b\nint id action_mode_bar_stub 0x7f0b003a\nint id action_mode_close_button 0x7f0b0023\nint id activity_chooser_view_content 0x7f0b0024\nint id alertTitle 0x7f0b002e\nint id always 0x7f0b001b\nint id beginning 0x7f0b0018\nint id buttonPanel 0x7f0b0034\nint id cancel_action 0x7f0b004e\nint id checkbox 0x7f0b0036\nint id chronometer 0x7f0b0054\nint id collapseActionView 0x7f0b001c\nint id contentPanel 0x7f0b002f\nint id custom 0x7f0b0033\nint id customPanel 0x7f0b0032\nint id decor_content_parent 0x7f0b003c\nint id default_activity_button 0x7f0b0027\nint id disableHome 0x7f0b000c\nint id edit_query 0x7f0b0040\nint id end 0x7f0b0019\nint id end_padder 0x7f0b0059\nint id expand_activities_button 0x7f0b0025\nint id expanded_menu 0x7f0b0035\nint id home 0x7f0b0004\nint id homeAsUp 0x7f0b000d\nint id icon 0x7f0b0029\nint id ifRoom 0x7f0b001d\nint id image 0x7f0b0026\nint id info 0x7f0b0058\nint id line1 0x7f0b0052\nint id line3 0x7f0b0056\nint id listMode 0x7f0b0009\nint id list_item 0x7f0b0028\nint id media_actions 0x7f0b0050\nint id middle 0x7f0b001a\nint id multiply 0x7f0b0013\nint id never 0x7f0b001e\nint id none 0x7f0b000e\nint id normal 0x7f0b000a\nint id parentPanel 0x7f0b002b\nint id progress_circular 0x7f0b0005\nint id progress_horizontal 0x7f0b0006\nint id radio 0x7f0b0038\nint id screen 0x7f0b0014\nint id scrollView 0x7f0b0030\nint id search_badge 0x7f0b0042\nint id search_bar 0x7f0b0041\nint id search_button 0x7f0b0043\nint id search_close_btn 0x7f0b0048\nint id search_edit_frame 0x7f0b0044\nint id search_go_btn 0x7f0b004a\nint id search_mag_icon 0x7f0b0045\nint id search_plate 0x7f0b0046\nint id search_src_text 0x7f0b0047\nint id search_voice_btn 0x7f0b004b\nint id select_dialog_listview 0x7f0b004c\nint id shortcut 0x7f0b0037\nint id showCustom 0x7f0b000f\nint id showHome 0x7f0b0010\nint id showTitle 0x7f0b0011\nint id split_action_bar 0x7f0b0007\nint id src_atop 0x7f0b0015\nint id src_in 0x7f0b0016\nint id src_over 0x7f0b0017\nint id status_bar_latest_event_content 0x7f0b004f\nint id submit_area 0x7f0b0049\nint id tabMode 0x7f0b000b\nint id text 0x7f0b0057\nint id text2 0x7f0b0055\nint id textSpacerNoButtons 0x7f0b0031\nint id time 0x7f0b0053\nint id title 0x7f0b002a\nint id title_template 0x7f0b002d\nint id topPanel 0x7f0b002c\nint id up 0x7f0b0008\nint id useLogo 0x7f0b0012\nint id withText 0x7f0b001f\nint id wrap_content 0x7f0b0020\nint integer abc_config_activityDefaultDur 0x7f090001\nint integer abc_config_activityShortDur 0x7f090002\nint integer abc_max_action_buttons 0x7f090000\nint integer cancel_button_image_alpha 0x7f090003\nint integer status_bar_notification_info_maxnum 0x7f090004\nint layout abc_action_bar_title_item 0x7f030000\nint layout abc_action_bar_up_container 0x7f030001\nint layout abc_action_bar_view_list_nav_layout 0x7f030002\nint layout abc_action_menu_item_layout 0x7f030003\nint layout abc_action_menu_layout 0x7f030004\nint layout abc_action_mode_bar 0x7f030005\nint layout abc_action_mode_close_item_material 0x7f030006\nint layout abc_activity_chooser_view 0x7f030007\nint layout abc_activity_chooser_view_list_item 0x7f030008\nint layout abc_alert_dialog_material 0x7f030009\nint layout abc_dialog_title_material 0x7f03000a\nint layout abc_expanded_menu_layout 0x7f03000b\nint layout abc_list_menu_item_checkbox 0x7f03000c\nint layout abc_list_menu_item_icon 0x7f03000d\nint layout abc_list_menu_item_layout 0x7f03000e\nint layout abc_list_menu_item_radio 0x7f03000f\nint layout abc_popup_menu_item_layout 0x7f030010\nint layout abc_screen_content_include 0x7f030011\nint layout abc_screen_simple 0x7f030012\nint layout abc_screen_simple_overlay_action_mode 0x7f030013\nint layout abc_screen_toolbar 0x7f030014\nint layout abc_search_dropdown_item_icons_2line 0x7f030015\nint layout abc_search_view 0x7f030016\nint layout abc_select_dialog_material 0x7f030017\nint layout notification_media_action 0x7f030018\nint layout notification_media_cancel_action 0x7f030019\nint layout notification_template_big_media 0x7f03001a\nint layout notification_template_big_media_narrow 0x7f03001b\nint layout notification_template_lines 0x7f03001c\nint layout notification_template_media 0x7f03001d\nint layout notification_template_part_chronometer 0x7f03001e\nint layout notification_template_part_time 0x7f03001f\nint layout select_dialog_item_material 0x7f030020\nint layout select_dialog_multichoice_material 0x7f030021\nint layout select_dialog_singlechoice_material 0x7f030022\nint layout support_simple_spinner_dropdown_item 0x7f030023\nint string abc_action_bar_home_description 0x7f050000\nint string abc_action_bar_home_description_format 0x7f050001\nint string abc_action_bar_home_subtitle_description_format 0x7f050002\nint string abc_action_bar_up_description 0x7f050003\nint string abc_action_menu_overflow_description 0x7f050004\nint string abc_action_mode_done 0x7f050005\nint string abc_activity_chooser_view_see_all 0x7f050006\nint string abc_activitychooserview_choose_application 0x7f050007\nint string abc_search_hint 0x7f050008\nint string abc_searchview_description_clear 0x7f050009\nint string abc_searchview_description_query 0x7f05000a\nint string abc_searchview_description_search 0x7f05000b\nint string abc_searchview_description_submit 0x7f05000c\nint string abc_searchview_description_voice 0x7f05000d\nint string abc_shareactionprovider_share_with 0x7f05000e\nint string abc_shareactionprovider_share_with_application 0x7f05000f\nint string abc_toolbar_collapse_description 0x7f050010\nint string status_bar_notification_info_overflow 0x7f050011\nint style AlertDialog_AppCompat 0x7f07007a\nint style AlertDialog_AppCompat_Light 0x7f07007b\nint style Animation_AppCompat_Dialog 0x7f07007c\nint style Animation_AppCompat_DropDownUp 0x7f07007d\nint style Base_AlertDialog_AppCompat 0x7f07007e\nint style Base_AlertDialog_AppCompat_Light 0x7f07007f\nint style Base_Animation_AppCompat_Dialog 0x7f070080\nint style Base_Animation_AppCompat_DropDownUp 0x7f070081\nint style Base_DialogWindowTitle_AppCompat 0x7f070082\nint style Base_DialogWindowTitleBackground_AppCompat 0x7f070083\nint style Base_TextAppearance_AppCompat 0x7f07002d\nint style Base_TextAppearance_AppCompat_Body1 0x7f07002e\nint style Base_TextAppearance_AppCompat_Body2 0x7f07002f\nint style Base_TextAppearance_AppCompat_Button 0x7f070018\nint style Base_TextAppearance_AppCompat_Caption 0x7f070030\nint style Base_TextAppearance_AppCompat_Display1 0x7f070031\nint style Base_TextAppearance_AppCompat_Display2 0x7f070032\nint style Base_TextAppearance_AppCompat_Display3 0x7f070033\nint style Base_TextAppearance_AppCompat_Display4 0x7f070034\nint style Base_TextAppearance_AppCompat_Headline 0x7f070035\nint style Base_TextAppearance_AppCompat_Inverse 0x7f070003\nint style Base_TextAppearance_AppCompat_Large 0x7f070036\nint style Base_TextAppearance_AppCompat_Large_Inverse 0x7f070004\nint style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f070037\nint style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f070038\nint style Base_TextAppearance_AppCompat_Medium 0x7f070039\nint style Base_TextAppearance_AppCompat_Medium_Inverse 0x7f070005\nint style Base_TextAppearance_AppCompat_Menu 0x7f07003a\nint style Base_TextAppearance_AppCompat_SearchResult 0x7f070084\nint style Base_TextAppearance_AppCompat_SearchResult_Subtitle 0x7f07003b\nint style Base_TextAppearance_AppCompat_SearchResult_Title 0x7f07003c\nint style Base_TextAppearance_AppCompat_Small 0x7f07003d\nint style Base_TextAppearance_AppCompat_Small_Inverse 0x7f070006\nint style Base_TextAppearance_AppCompat_Subhead 0x7f07003e\nint style Base_TextAppearance_AppCompat_Subhead_Inverse 0x7f070007\nint style Base_TextAppearance_AppCompat_Title 0x7f07003f\nint style Base_TextAppearance_AppCompat_Title_Inverse 0x7f070008\nint style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f070040\nint style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f070041\nint style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f070042\nint style Base_TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f070043\nint style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f070044\nint style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f070045\nint style Base_TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f070046\nint style Base_TextAppearance_AppCompat_Widget_Button 0x7f070047\nint style Base_TextAppearance_AppCompat_Widget_Button_Inverse 0x7f070076\nint style Base_TextAppearance_AppCompat_Widget_DropDownItem 0x7f070085\nint style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f070048\nint style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f070049\nint style Base_TextAppearance_AppCompat_Widget_Switch 0x7f07004a\nint style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f07004b\nint style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f070086\nint style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f07004c\nint style Base_TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f07004d\nint style Base_Theme_AppCompat 0x7f07004e\nint style Base_Theme_AppCompat_CompactMenu 0x7f070087\nint style Base_Theme_AppCompat_Dialog 0x7f070009\nint style Base_Theme_AppCompat_Dialog_Alert 0x7f070088\nint style Base_Theme_AppCompat_Dialog_FixedSize 0x7f070089\nint style Base_Theme_AppCompat_Dialog_MinWidth 0x7f07008a\nint style Base_Theme_AppCompat_DialogWhenLarge 0x7f070001\nint style Base_Theme_AppCompat_Light 0x7f07004f\nint style Base_Theme_AppCompat_Light_DarkActionBar 0x7f07008b\nint style Base_Theme_AppCompat_Light_Dialog 0x7f07000a\nint style Base_Theme_AppCompat_Light_Dialog_Alert 0x7f07008c\nint style Base_Theme_AppCompat_Light_Dialog_FixedSize 0x7f07008d\nint style Base_Theme_AppCompat_Light_Dialog_MinWidth 0x7f07008e\nint style Base_Theme_AppCompat_Light_DialogWhenLarge 0x7f070002\nint style Base_ThemeOverlay_AppCompat 0x7f07008f\nint style Base_ThemeOverlay_AppCompat_ActionBar 0x7f070090\nint style Base_ThemeOverlay_AppCompat_Dark 0x7f070091\nint style Base_ThemeOverlay_AppCompat_Dark_ActionBar 0x7f070092\nint style Base_ThemeOverlay_AppCompat_Light 0x7f070093\nint style Base_V11_Theme_AppCompat_Dialog 0x7f07000b\nint style Base_V11_Theme_AppCompat_Light_Dialog 0x7f07000c\nint style Base_V12_Widget_AppCompat_AutoCompleteTextView 0x7f070014\nint style Base_V12_Widget_AppCompat_EditText 0x7f070015\nint style Base_V21_Theme_AppCompat 0x7f070050\nint style Base_V21_Theme_AppCompat_Dialog 0x7f070051\nint style Base_V21_Theme_AppCompat_Light 0x7f070052\nint style Base_V21_Theme_AppCompat_Light_Dialog 0x7f070053\nint style Base_V22_Theme_AppCompat 0x7f070074\nint style Base_V22_Theme_AppCompat_Light 0x7f070075\nint style Base_V23_Theme_AppCompat 0x7f070077\nint style Base_V23_Theme_AppCompat_Light 0x7f070078\nint style Base_V7_Theme_AppCompat 0x7f070094\nint style Base_V7_Theme_AppCompat_Dialog 0x7f070095\nint style Base_V7_Theme_AppCompat_Light 0x7f070096\nint style Base_V7_Theme_AppCompat_Light_Dialog 0x7f070097\nint style Base_V7_Widget_AppCompat_AutoCompleteTextView 0x7f070098\nint style Base_V7_Widget_AppCompat_EditText 0x7f070099\nint style Base_Widget_AppCompat_ActionBar 0x7f07009a\nint style Base_Widget_AppCompat_ActionBar_Solid 0x7f07009b\nint style Base_Widget_AppCompat_ActionBar_TabBar 0x7f07009c\nint style Base_Widget_AppCompat_ActionBar_TabText 0x7f070054\nint style Base_Widget_AppCompat_ActionBar_TabView 0x7f070055\nint style Base_Widget_AppCompat_ActionButton 0x7f070056\nint style Base_Widget_AppCompat_ActionButton_CloseMode 0x7f070057\nint style Base_Widget_AppCompat_ActionButton_Overflow 0x7f070058\nint style Base_Widget_AppCompat_ActionMode 0x7f07009d\nint style Base_Widget_AppCompat_ActivityChooserView 0x7f07009e\nint style Base_Widget_AppCompat_AutoCompleteTextView 0x7f070016\nint style Base_Widget_AppCompat_Button 0x7f070059\nint style Base_Widget_AppCompat_Button_Borderless 0x7f07005a\nint style Base_Widget_AppCompat_Button_Borderless_Colored 0x7f07005b\nint style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f07009f\nint style Base_Widget_AppCompat_Button_Colored 0x7f070079\nint style Base_Widget_AppCompat_Button_Small 0x7f07005c\nint style Base_Widget_AppCompat_ButtonBar 0x7f07005d\nint style Base_Widget_AppCompat_ButtonBar_AlertDialog 0x7f0700a0\nint style Base_Widget_AppCompat_CompoundButton_CheckBox 0x7f07005e\nint style Base_Widget_AppCompat_CompoundButton_RadioButton 0x7f07005f\nint style Base_Widget_AppCompat_CompoundButton_Switch 0x7f0700a1\nint style Base_Widget_AppCompat_DrawerArrowToggle 0x7f070000\nint style Base_Widget_AppCompat_DrawerArrowToggle_Common 0x7f0700a2\nint style Base_Widget_AppCompat_DropDownItem_Spinner 0x7f070060\nint style Base_Widget_AppCompat_EditText 0x7f070017\nint style Base_Widget_AppCompat_Light_ActionBar 0x7f0700a3\nint style Base_Widget_AppCompat_Light_ActionBar_Solid 0x7f0700a4\nint style Base_Widget_AppCompat_Light_ActionBar_TabBar 0x7f0700a5\nint style Base_Widget_AppCompat_Light_ActionBar_TabText 0x7f070061\nint style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f070062\nint style Base_Widget_AppCompat_Light_ActionBar_TabView 0x7f070063\nint style Base_Widget_AppCompat_Light_PopupMenu 0x7f070064\nint style Base_Widget_AppCompat_Light_PopupMenu_Overflow 0x7f070065\nint style Base_Widget_AppCompat_ListPopupWindow 0x7f070066\nint style Base_Widget_AppCompat_ListView 0x7f070067\nint style Base_Widget_AppCompat_ListView_DropDown 0x7f070068\nint style Base_Widget_AppCompat_ListView_Menu 0x7f070069\nint style Base_Widget_AppCompat_PopupMenu 0x7f07006a\nint style Base_Widget_AppCompat_PopupMenu_Overflow 0x7f07006b\nint style Base_Widget_AppCompat_PopupWindow 0x7f0700a6\nint style Base_Widget_AppCompat_ProgressBar 0x7f07000d\nint style Base_Widget_AppCompat_ProgressBar_Horizontal 0x7f07000e\nint style Base_Widget_AppCompat_RatingBar 0x7f07006c\nint style Base_Widget_AppCompat_SearchView 0x7f0700a7\nint style Base_Widget_AppCompat_SearchView_ActionBar 0x7f0700a8\nint style Base_Widget_AppCompat_Spinner 0x7f07006d\nint style Base_Widget_AppCompat_Spinner_Underlined 0x7f07006e\nint style Base_Widget_AppCompat_TextView_SpinnerItem 0x7f07006f\nint style Base_Widget_AppCompat_Toolbar 0x7f0700a9\nint style Base_Widget_AppCompat_Toolbar_Button_Navigation 0x7f070070\nint style Platform_AppCompat 0x7f07000f\nint style Platform_AppCompat_Light 0x7f070010\nint style Platform_ThemeOverlay_AppCompat 0x7f070071\nint style Platform_ThemeOverlay_AppCompat_Dark 0x7f070072\nint style Platform_ThemeOverlay_AppCompat_Light 0x7f070073\nint style Platform_V11_AppCompat 0x7f070011\nint style Platform_V11_AppCompat_Light 0x7f070012\nint style Platform_V14_AppCompat 0x7f070019\nint style Platform_V14_AppCompat_Light 0x7f07001a\nint style Platform_Widget_AppCompat_Spinner 0x7f070013\nint style RtlOverlay_DialogWindowTitle_AppCompat 0x7f070020\nint style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem 0x7f070021\nint style RtlOverlay_Widget_AppCompat_ActionButton_Overflow 0x7f070022\nint style RtlOverlay_Widget_AppCompat_DialogTitle_Icon 0x7f070023\nint style RtlOverlay_Widget_AppCompat_PopupMenuItem 0x7f070024\nint style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup 0x7f070025\nint style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text 0x7f070026\nint style RtlOverlay_Widget_AppCompat_Search_DropDown 0x7f070027\nint style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 0x7f070028\nint style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 0x7f070029\nint style RtlOverlay_Widget_AppCompat_Search_DropDown_Query 0x7f07002a\nint style RtlOverlay_Widget_AppCompat_Search_DropDown_Text 0x7f07002b\nint style RtlOverlay_Widget_AppCompat_SearchView_MagIcon 0x7f07002c\nint style TextAppearance_AppCompat 0x7f0700aa\nint style TextAppearance_AppCompat_Body1 0x7f0700ab\nint style TextAppearance_AppCompat_Body2 0x7f0700ac\nint style TextAppearance_AppCompat_Button 0x7f0700ad\nint style TextAppearance_AppCompat_Caption 0x7f0700ae\nint style TextAppearance_AppCompat_Display1 0x7f0700af\nint style TextAppearance_AppCompat_Display2 0x7f0700b0\nint style TextAppearance_AppCompat_Display3 0x7f0700b1\nint style TextAppearance_AppCompat_Display4 0x7f0700b2\nint style TextAppearance_AppCompat_Headline 0x7f0700b3\nint style TextAppearance_AppCompat_Inverse 0x7f0700b4\nint style TextAppearance_AppCompat_Large 0x7f0700b5\nint style TextAppearance_AppCompat_Large_Inverse 0x7f0700b6\nint style TextAppearance_AppCompat_Light_SearchResult_Subtitle 0x7f0700b7\nint style TextAppearance_AppCompat_Light_SearchResult_Title 0x7f0700b8\nint style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f0700b9\nint style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f0700ba\nint style TextAppearance_AppCompat_Medium 0x7f0700bb\nint style TextAppearance_AppCompat_Medium_Inverse 0x7f0700bc\nint style TextAppearance_AppCompat_Menu 0x7f0700bd\nint style TextAppearance_AppCompat_SearchResult_Subtitle 0x7f0700be\nint style TextAppearance_AppCompat_SearchResult_Title 0x7f0700bf\nint style TextAppearance_AppCompat_Small 0x7f0700c0\nint style TextAppearance_AppCompat_Small_Inverse 0x7f0700c1\nint style TextAppearance_AppCompat_Subhead 0x7f0700c2\nint style TextAppearance_AppCompat_Subhead_Inverse 0x7f0700c3\nint style TextAppearance_AppCompat_Title 0x7f0700c4\nint style TextAppearance_AppCompat_Title_Inverse 0x7f0700c5\nint style TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f0700c6\nint style TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f0700c7\nint style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f0700c8\nint style TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f0700c9\nint style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f0700ca\nint style TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f0700cb\nint style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse 0x7f0700cc\nint style TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f0700cd\nint style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse 0x7f0700ce\nint style TextAppearance_AppCompat_Widget_Button 0x7f0700cf\nint style TextAppearance_AppCompat_Widget_Button_Inverse 0x7f0700d0\nint style TextAppearance_AppCompat_Widget_DropDownItem 0x7f0700d1\nint style TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f0700d2\nint style TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f0700d3\nint style TextAppearance_AppCompat_Widget_Switch 0x7f0700d4\nint style TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f0700d5\nint style TextAppearance_StatusBar_EventContent 0x7f07001b\nint style TextAppearance_StatusBar_EventContent_Info 0x7f07001c\nint style TextAppearance_StatusBar_EventContent_Line2 0x7f07001d\nint style TextAppearance_StatusBar_EventContent_Time 0x7f07001e\nint style TextAppearance_StatusBar_EventContent_Title 0x7f07001f\nint style TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f0700d6\nint style TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f0700d7\nint style TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f0700d8\nint style Theme_AppCompat 0x7f0700d9\nint style Theme_AppCompat_CompactMenu 0x7f0700da\nint style Theme_AppCompat_Dialog 0x7f0700db\nint style Theme_AppCompat_Dialog_Alert 0x7f0700dc\nint style Theme_AppCompat_Dialog_MinWidth 0x7f0700dd\nint style Theme_AppCompat_DialogWhenLarge 0x7f0700de\nint style Theme_AppCompat_Light 0x7f0700df\nint style Theme_AppCompat_Light_DarkActionBar 0x7f0700e0\nint style Theme_AppCompat_Light_Dialog 0x7f0700e1\nint style Theme_AppCompat_Light_Dialog_Alert 0x7f0700e2\nint style Theme_AppCompat_Light_Dialog_MinWidth 0x7f0700e3\nint style Theme_AppCompat_Light_DialogWhenLarge 0x7f0700e4\nint style Theme_AppCompat_Light_NoActionBar 0x7f0700e5\nint style Theme_AppCompat_NoActionBar 0x7f0700e6\nint style ThemeOverlay_AppCompat 0x7f0700e7\nint style ThemeOverlay_AppCompat_ActionBar 0x7f0700e8\nint style ThemeOverlay_AppCompat_Dark 0x7f0700e9\nint style ThemeOverlay_AppCompat_Dark_ActionBar 0x7f0700ea\nint style ThemeOverlay_AppCompat_Light 0x7f0700eb\nint style Widget_AppCompat_ActionBar 0x7f0700ec\nint style Widget_AppCompat_ActionBar_Solid 0x7f0700ed\nint style Widget_AppCompat_ActionBar_TabBar 0x7f0700ee\nint style Widget_AppCompat_ActionBar_TabText 0x7f0700ef\nint style Widget_AppCompat_ActionBar_TabView 0x7f0700f0\nint style Widget_AppCompat_ActionButton 0x7f0700f1\nint style Widget_AppCompat_ActionButton_CloseMode 0x7f0700f2\nint style Widget_AppCompat_ActionButton_Overflow 0x7f0700f3\nint style Widget_AppCompat_ActionMode 0x7f0700f4\nint style Widget_AppCompat_ActivityChooserView 0x7f0700f5\nint style Widget_AppCompat_AutoCompleteTextView 0x7f0700f6\nint style Widget_AppCompat_Button 0x7f0700f7\nint style Widget_AppCompat_Button_Borderless 0x7f0700f8\nint style Widget_AppCompat_Button_Borderless_Colored 0x7f0700f9\nint style Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f0700fa\nint style Widget_AppCompat_Button_Colored 0x7f0700fb\nint style Widget_AppCompat_Button_Small 0x7f0700fc\nint style Widget_AppCompat_ButtonBar 0x7f0700fd\nint style Widget_AppCompat_ButtonBar_AlertDialog 0x7f0700fe\nint style Widget_AppCompat_CompoundButton_CheckBox 0x7f0700ff\nint style Widget_AppCompat_CompoundButton_RadioButton 0x7f070100\nint style Widget_AppCompat_CompoundButton_Switch 0x7f070101\nint style Widget_AppCompat_DrawerArrowToggle 0x7f070102\nint style Widget_AppCompat_DropDownItem_Spinner 0x7f070103\nint style Widget_AppCompat_EditText 0x7f070104\nint style Widget_AppCompat_Light_ActionBar 0x7f070105\nint style Widget_AppCompat_Light_ActionBar_Solid 0x7f070106\nint style Widget_AppCompat_Light_ActionBar_Solid_Inverse 0x7f070107\nint style Widget_AppCompat_Light_ActionBar_TabBar 0x7f070108\nint style Widget_AppCompat_Light_ActionBar_TabBar_Inverse 0x7f070109\nint style Widget_AppCompat_Light_ActionBar_TabText 0x7f07010a\nint style Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f07010b\nint style Widget_AppCompat_Light_ActionBar_TabView 0x7f07010c\nint style Widget_AppCompat_Light_ActionBar_TabView_Inverse 0x7f07010d\nint style Widget_AppCompat_Light_ActionButton 0x7f07010e\nint style Widget_AppCompat_Light_ActionButton_CloseMode 0x7f07010f\nint style Widget_AppCompat_Light_ActionButton_Overflow 0x7f070110\nint style Widget_AppCompat_Light_ActionMode_Inverse 0x7f070111\nint style Widget_AppCompat_Light_ActivityChooserView 0x7f070112\nint style Widget_AppCompat_Light_AutoCompleteTextView 0x7f070113\nint style Widget_AppCompat_Light_DropDownItem_Spinner 0x7f070114\nint style Widget_AppCompat_Light_ListPopupWindow 0x7f070115\nint style Widget_AppCompat_Light_ListView_DropDown 0x7f070116\nint style Widget_AppCompat_Light_PopupMenu 0x7f070117\nint style Widget_AppCompat_Light_PopupMenu_Overflow 0x7f070118\nint style Widget_AppCompat_Light_SearchView 0x7f070119\nint style Widget_AppCompat_Light_Spinner_DropDown_ActionBar 0x7f07011a\nint style Widget_AppCompat_ListPopupWindow 0x7f07011b\nint style Widget_AppCompat_ListView 0x7f07011c\nint style Widget_AppCompat_ListView_DropDown 0x7f07011d\nint style Widget_AppCompat_ListView_Menu 0x7f07011e\nint style Widget_AppCompat_PopupMenu 0x7f07011f\nint style Widget_AppCompat_PopupMenu_Overflow 0x7f070120\nint style Widget_AppCompat_PopupWindow 0x7f070121\nint style Widget_AppCompat_ProgressBar 0x7f070122\nint style Widget_AppCompat_ProgressBar_Horizontal 0x7f070123\nint style Widget_AppCompat_RatingBar 0x7f070124\nint style Widget_AppCompat_SearchView 0x7f070125\nint style Widget_AppCompat_SearchView_ActionBar 0x7f070126\nint style Widget_AppCompat_Spinner 0x7f070127\nint style Widget_AppCompat_Spinner_DropDown 0x7f070128\nint style Widget_AppCompat_Spinner_DropDown_ActionBar 0x7f070129\nint style Widget_AppCompat_Spinner_Underlined 0x7f07012a\nint style Widget_AppCompat_TextView_SpinnerItem 0x7f07012b\nint style Widget_AppCompat_Toolbar 0x7f07012c\nint style Widget_AppCompat_Toolbar_Button_Navigation 0x7f07012d\nint[] 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, 0x7f01007b }\nint styleable ActionBar_background 10\nint styleable ActionBar_backgroundSplit 12\nint styleable ActionBar_backgroundStacked 11\nint styleable ActionBar_contentInsetEnd 21\nint styleable ActionBar_contentInsetLeft 22\nint styleable ActionBar_contentInsetRight 23\nint styleable ActionBar_contentInsetStart 20\nint styleable ActionBar_customNavigationLayout 13\nint styleable ActionBar_displayOptions 3\nint styleable ActionBar_divider 9\nint styleable ActionBar_elevation 24\nint styleable ActionBar_height 0\nint styleable ActionBar_hideOnContentScroll 19\nint styleable ActionBar_homeAsUpIndicator 26\nint styleable ActionBar_homeLayout 14\nint styleable ActionBar_icon 7\nint styleable ActionBar_indeterminateProgressStyle 16\nint styleable ActionBar_itemPadding 18\nint styleable ActionBar_logo 8\nint styleable ActionBar_navigationMode 2\nint styleable ActionBar_popupTheme 25\nint styleable ActionBar_progressBarPadding 17\nint styleable ActionBar_progressBarStyle 15\nint styleable ActionBar_subtitle 4\nint styleable ActionBar_subtitleTextStyle 6\nint styleable ActionBar_title 1\nint styleable ActionBar_titleTextStyle 5\nint[] styleable ActionBarLayout { 0x010100b3 }\nint styleable ActionBarLayout_android_layout_gravity 0\nint[] styleable ActionMenuItemView { 0x0101013f }\nint styleable ActionMenuItemView_android_minWidth 0\nint[] styleable ActionMenuView { }\nint[] styleable ActionMode { 0x7f010001, 0x7f010007, 0x7f010008, 0x7f01000c, 0x7f01000e, 0x7f01001c }\nint styleable ActionMode_background 3\nint styleable ActionMode_backgroundSplit 4\nint styleable ActionMode_closeItemLayout 5\nint styleable ActionMode_height 0\nint styleable ActionMode_subtitleTextStyle 2\nint styleable ActionMode_titleTextStyle 1\nint[] styleable ActivityChooserView { 0x7f01001d, 0x7f01001e }\nint styleable ActivityChooserView_expandActivityOverflowButtonDrawable 1\nint styleable ActivityChooserView_initialActivityCount 0\nint[] styleable AlertDialog { 0x010100f2, 0x7f01001f, 0x7f010020, 0x7f010021, 0x7f010022, 0x7f010023 }\nint styleable AlertDialog_android_layout 0\nint styleable AlertDialog_buttonPanelSideLayout 1\nint styleable AlertDialog_listItemLayout 5\nint styleable AlertDialog_listLayout 2\nint styleable AlertDialog_multiChoiceItemLayout 3\nint styleable AlertDialog_singleChoiceItemLayout 4\nint[] styleable AppCompatTextView { 0x01010034, 0x7f010024 }\nint styleable AppCompatTextView_android_textAppearance 0\nint styleable AppCompatTextView_textAllCaps 1\nint[] styleable CompoundButton { 0x01010107, 0x7f010025, 0x7f010026 }\nint styleable CompoundButton_android_button 0\nint styleable CompoundButton_buttonTint 1\nint styleable CompoundButton_buttonTintMode 2\nint[] styleable DrawerArrowToggle { 0x7f010027, 0x7f010028, 0x7f010029, 0x7f01002a, 0x7f01002b, 0x7f01002c, 0x7f01002d, 0x7f01002e }\nint styleable DrawerArrowToggle_arrowHeadLength 4\nint styleable DrawerArrowToggle_arrowShaftLength 5\nint styleable DrawerArrowToggle_barLength 6\nint styleable DrawerArrowToggle_color 0\nint styleable DrawerArrowToggle_drawableSize 2\nint styleable DrawerArrowToggle_gapBetweenBars 3\nint styleable DrawerArrowToggle_spinBars 1\nint styleable DrawerArrowToggle_thickness 7\nint[] styleable LinearLayoutCompat { 0x010100af, 0x010100c4, 0x01010126, 0x01010127, 0x01010128, 0x7f01000b, 0x7f01002f, 0x7f010030, 0x7f010031 }\nint styleable LinearLayoutCompat_android_baselineAligned 2\nint styleable LinearLayoutCompat_android_baselineAlignedChildIndex 3\nint styleable LinearLayoutCompat_android_gravity 0\nint styleable LinearLayoutCompat_android_orientation 1\nint styleable LinearLayoutCompat_android_weightSum 4\nint styleable LinearLayoutCompat_divider 5\nint styleable LinearLayoutCompat_dividerPadding 8\nint styleable LinearLayoutCompat_measureWithLargestChild 6\nint styleable LinearLayoutCompat_showDividers 7\nint[] styleable LinearLayoutCompat_Layout { 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 }\nint styleable LinearLayoutCompat_Layout_android_layout_gravity 0\nint styleable LinearLayoutCompat_Layout_android_layout_height 2\nint styleable LinearLayoutCompat_Layout_android_layout_weight 3\nint styleable LinearLayoutCompat_Layout_android_layout_width 1\nint[] styleable ListPopupWindow { 0x010102ac, 0x010102ad }\nint styleable ListPopupWindow_android_dropDownHorizontalOffset 0\nint styleable ListPopupWindow_android_dropDownVerticalOffset 1\nint[] styleable MenuGroup { 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, 0x010101df, 0x010101e0 }\nint styleable MenuGroup_android_checkableBehavior 5\nint styleable MenuGroup_android_enabled 0\nint styleable MenuGroup_android_id 1\nint styleable MenuGroup_android_menuCategory 3\nint styleable MenuGroup_android_orderInCategory 4\nint styleable MenuGroup_android_visible 2\nint[] styleable MenuItem { 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f010032, 0x7f010033, 0x7f010034, 0x7f010035 }\nint styleable MenuItem_actionLayout 14\nint styleable MenuItem_actionProviderClass 16\nint styleable MenuItem_actionViewClass 15\nint styleable MenuItem_android_alphabeticShortcut 9\nint styleable MenuItem_android_checkable 11\nint styleable MenuItem_android_checked 3\nint styleable MenuItem_android_enabled 1\nint styleable MenuItem_android_icon 0\nint styleable MenuItem_android_id 2\nint styleable MenuItem_android_menuCategory 5\nint styleable MenuItem_android_numericShortcut 10\nint styleable MenuItem_android_onClick 12\nint styleable MenuItem_android_orderInCategory 6\nint styleable MenuItem_android_title 7\nint styleable MenuItem_android_titleCondensed 8\nint styleable MenuItem_android_visible 4\nint styleable MenuItem_showAsAction 13\nint[] styleable MenuView { 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x7f010036 }\nint styleable MenuView_android_headerBackground 4\nint styleable MenuView_android_horizontalDivider 2\nint styleable MenuView_android_itemBackground 5\nint styleable MenuView_android_itemIconDisabledAlpha 6\nint styleable MenuView_android_itemTextAppearance 1\nint styleable MenuView_android_verticalDivider 3\nint styleable MenuView_android_windowAnimationStyle 0\nint styleable MenuView_preserveIconSpacing 7\nint[] styleable PopupWindow { 0x01010176, 0x7f010037 }\nint styleable PopupWindow_android_popupBackground 0\nint styleable PopupWindow_overlapAnchor 1\nint[] styleable PopupWindowBackgroundState { 0x7f010038 }\nint styleable PopupWindowBackgroundState_state_above_anchor 0\nint[] styleable SearchView { 0x010100da, 0x0101011f, 0x01010220, 0x01010264, 0x7f010039, 0x7f01003a, 0x7f01003b, 0x7f01003c, 0x7f01003d, 0x7f01003e, 0x7f01003f, 0x7f010040, 0x7f010041, 0x7f010042, 0x7f010043, 0x7f010044, 0x7f010045 }\nint styleable SearchView_android_focusable 0\nint styleable SearchView_android_imeOptions 3\nint styleable SearchView_android_inputType 2\nint styleable SearchView_android_maxWidth 1\nint styleable SearchView_closeIcon 8\nint styleable SearchView_commitIcon 13\nint styleable SearchView_defaultQueryHint 7\nint styleable SearchView_goIcon 9\nint styleable SearchView_iconifiedByDefault 5\nint styleable SearchView_layout 4\nint styleable SearchView_queryBackground 15\nint styleable SearchView_queryHint 6\nint styleable SearchView_searchHintIcon 11\nint styleable SearchView_searchIcon 10\nint styleable SearchView_submitBackground 16\nint styleable SearchView_suggestionRowLayout 14\nint styleable SearchView_voiceIcon 12\nint[] styleable Spinner { 0x01010176, 0x0101017b, 0x01010262, 0x7f01001b }\nint styleable Spinner_android_dropDownWidth 2\nint styleable Spinner_android_popupBackground 0\nint styleable Spinner_android_prompt 1\nint styleable Spinner_popupTheme 3\nint[] styleable SwitchCompat { 0x01010124, 0x01010125, 0x01010142, 0x7f010046, 0x7f010047, 0x7f010048, 0x7f010049, 0x7f01004a, 0x7f01004b, 0x7f01004c }\nint styleable SwitchCompat_android_textOff 1\nint styleable SwitchCompat_android_textOn 0\nint styleable SwitchCompat_android_thumb 2\nint styleable SwitchCompat_showText 9\nint styleable SwitchCompat_splitTrack 8\nint styleable SwitchCompat_switchMinWidth 6\nint styleable SwitchCompat_switchPadding 7\nint styleable SwitchCompat_switchTextAppearance 5\nint styleable SwitchCompat_thumbTextPadding 4\nint styleable SwitchCompat_track 3\nint[] styleable TextAppearance { 0x01010095, 0x01010096, 0x01010097, 0x01010098, 0x7f010024 }\nint styleable TextAppearance_android_textColor 3\nint styleable TextAppearance_android_textSize 0\nint styleable TextAppearance_android_textStyle 2\nint styleable TextAppearance_android_typeface 1\nint styleable TextAppearance_textAllCaps 4\nint[] styleable Theme { 0x01010057, 0x010100ae, 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, 0x7f010097, 0x7f010098, 0x7f010099, 0x7f01009a, 0x7f01009b, 0x7f01009c, 0x7f01009d, 0x7f01009e, 0x7f01009f, 0x7f0100a0, 0x7f0100a1, 0x7f0100a2, 0x7f0100a3, 0x7f0100a4, 0x7f0100a5, 0x7f0100a6, 0x7f0100a7, 0x7f0100a8, 0x7f0100a9, 0x7f0100aa, 0x7f0100ab, 0x7f0100ac, 0x7f0100ad, 0x7f0100ae, 0x7f0100af, 0x7f0100b0, 0x7f0100b1, 0x7f0100b2, 0x7f0100b3, 0x7f0100b4, 0x7f0100b5, 0x7f0100b6 }\nint styleable Theme_actionBarDivider 23\nint styleable Theme_actionBarItemBackground 24\nint styleable Theme_actionBarPopupTheme 17\nint styleable Theme_actionBarSize 22\nint styleable Theme_actionBarSplitStyle 19\nint styleable Theme_actionBarStyle 18\nint styleable Theme_actionBarTabBarStyle 13\nint styleable Theme_actionBarTabStyle 12\nint styleable Theme_actionBarTabTextStyle 14\nint styleable Theme_actionBarTheme 20\nint styleable Theme_actionBarWidgetTheme 21\nint styleable Theme_actionButtonStyle 49\nint styleable Theme_actionDropDownStyle 45\nint styleable Theme_actionMenuTextAppearance 25\nint styleable Theme_actionMenuTextColor 26\nint styleable Theme_actionModeBackground 29\nint styleable Theme_actionModeCloseButtonStyle 28\nint styleable Theme_actionModeCloseDrawable 31\nint styleable Theme_actionModeCopyDrawable 33\nint styleable Theme_actionModeCutDrawable 32\nint styleable Theme_actionModeFindDrawable 37\nint styleable Theme_actionModePasteDrawable 34\nint styleable Theme_actionModePopupWindowStyle 39\nint styleable Theme_actionModeSelectAllDrawable 35\nint styleable Theme_actionModeShareDrawable 36\nint styleable Theme_actionModeSplitBackground 30\nint styleable Theme_actionModeStyle 27\nint styleable Theme_actionModeWebSearchDrawable 38\nint styleable Theme_actionOverflowButtonStyle 15\nint styleable Theme_actionOverflowMenuStyle 16\nint styleable Theme_activityChooserViewStyle 57\nint styleable Theme_alertDialogButtonGroupStyle 91\nint styleable Theme_alertDialogCenterButtons 92\nint styleable Theme_alertDialogStyle 90\nint styleable Theme_alertDialogTheme 93\nint styleable Theme_android_windowAnimationStyle 1\nint styleable Theme_android_windowIsFloating 0\nint styleable Theme_autoCompleteTextViewStyle 98\nint styleable Theme_borderlessButtonStyle 54\nint styleable Theme_buttonBarButtonStyle 51\nint styleable Theme_buttonBarNegativeButtonStyle 96\nint styleable Theme_buttonBarNeutralButtonStyle 97\nint styleable Theme_buttonBarPositiveButtonStyle 95\nint styleable Theme_buttonBarStyle 50\nint styleable Theme_buttonStyle 99\nint styleable Theme_buttonStyleSmall 100\nint styleable Theme_checkboxStyle 101\nint styleable Theme_checkedTextViewStyle 102\nint styleable Theme_colorAccent 83\nint styleable Theme_colorButtonNormal 87\nint styleable Theme_colorControlActivated 85\nint styleable Theme_colorControlHighlight 86\nint styleable Theme_colorControlNormal 84\nint styleable Theme_colorPrimary 81\nint styleable Theme_colorPrimaryDark 82\nint styleable Theme_colorSwitchThumbNormal 88\nint styleable Theme_controlBackground 89\nint styleable Theme_dialogPreferredPadding 43\nint styleable Theme_dialogTheme 42\nint styleable Theme_dividerHorizontal 56\nint styleable Theme_dividerVertical 55\nint styleable Theme_dropDownListViewStyle 73\nint styleable Theme_dropdownListPreferredItemHeight 46\nint styleable Theme_editTextBackground 63\nint styleable Theme_editTextColor 62\nint styleable Theme_editTextStyle 103\nint styleable Theme_homeAsUpIndicator 48\nint styleable Theme_listChoiceBackgroundIndicator 80\nint styleable Theme_listDividerAlertDialog 44\nint styleable Theme_listPopupWindowStyle 74\nint styleable Theme_listPreferredItemHeight 68\nint styleable Theme_listPreferredItemHeightLarge 70\nint styleable Theme_listPreferredItemHeightSmall 69\nint styleable Theme_listPreferredItemPaddingLeft 71\nint styleable Theme_listPreferredItemPaddingRight 72\nint styleable Theme_panelBackground 77\nint styleable Theme_panelMenuListTheme 79\nint styleable Theme_panelMenuListWidth 78\nint styleable Theme_popupMenuStyle 60\nint styleable Theme_popupWindowStyle 61\nint styleable Theme_radioButtonStyle 104\nint styleable Theme_ratingBarStyle 105\nint styleable Theme_searchViewStyle 67\nint styleable Theme_selectableItemBackground 52\nint styleable Theme_selectableItemBackgroundBorderless 53\nint styleable Theme_spinnerDropDownItemStyle 47\nint styleable Theme_spinnerStyle 106\nint styleable Theme_switchStyle 107\nint styleable Theme_textAppearanceLargePopupMenu 40\nint styleable Theme_textAppearanceListItem 75\nint styleable Theme_textAppearanceListItemSmall 76\nint styleable Theme_textAppearanceSearchResultSubtitle 65\nint styleable Theme_textAppearanceSearchResultTitle 64\nint styleable Theme_textAppearanceSmallPopupMenu 41\nint styleable Theme_textColorAlertDialogListItem 94\nint styleable Theme_textColorSearchUrl 66\nint styleable Theme_toolbarNavigationButtonStyle 59\nint styleable Theme_toolbarStyle 58\nint styleable Theme_windowActionBar 2\nint styleable Theme_windowActionBarOverlay 4\nint styleable Theme_windowActionModeOverlay 5\nint styleable Theme_windowFixedHeightMajor 9\nint styleable Theme_windowFixedHeightMinor 7\nint styleable Theme_windowFixedWidthMajor 6\nint styleable Theme_windowFixedWidthMinor 8\nint styleable Theme_windowMinWidthMajor 10\nint styleable Theme_windowMinWidthMinor 11\nint styleable Theme_windowNoTitle 3\nint[] styleable Toolbar { 0x010100af, 0x01010140, 0x7f010003, 0x7f010006, 0x7f01000a, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001b, 0x7f0100b7, 0x7f0100b8, 0x7f0100b9, 0x7f0100ba, 0x7f0100bb, 0x7f0100bc, 0x7f0100bd, 0x7f0100be, 0x7f0100bf, 0x7f0100c0, 0x7f0100c1, 0x7f0100c2, 0x7f0100c3, 0x7f0100c4, 0x7f0100c5 }\nint styleable Toolbar_android_gravity 0\nint styleable Toolbar_android_minHeight 1\nint styleable Toolbar_collapseContentDescription 19\nint styleable Toolbar_collapseIcon 18\nint styleable Toolbar_contentInsetEnd 6\nint styleable Toolbar_contentInsetLeft 7\nint styleable Toolbar_contentInsetRight 8\nint styleable Toolbar_contentInsetStart 5\nint styleable Toolbar_logo 4\nint styleable Toolbar_logoDescription 22\nint styleable Toolbar_maxButtonHeight 17\nint styleable Toolbar_navigationContentDescription 21\nint styleable Toolbar_navigationIcon 20\nint styleable Toolbar_popupTheme 9\nint styleable Toolbar_subtitle 3\nint styleable Toolbar_subtitleTextAppearance 11\nint styleable Toolbar_subtitleTextColor 24\nint styleable Toolbar_title 2\nint styleable Toolbar_titleMarginBottom 16\nint styleable Toolbar_titleMarginEnd 14\nint styleable Toolbar_titleMarginStart 13\nint styleable Toolbar_titleMarginTop 15\nint styleable Toolbar_titleMargins 12\nint styleable Toolbar_titleTextAppearance 10\nint styleable Toolbar_titleTextColor 23\nint[] styleable View { 0x01010000, 0x010100da, 0x7f0100c6, 0x7f0100c7, 0x7f0100c8 }\nint styleable View_android_focusable 1\nint styleable View_android_theme 0\nint styleable View_paddingEnd 3\nint styleable View_paddingStart 2\nint styleable View_theme 4\nint[] styleable ViewBackgroundHelper { 0x010100d4, 0x7f0100c9, 0x7f0100ca }\nint styleable ViewBackgroundHelper_android_background 0\nint styleable ViewBackgroundHelper_backgroundTint 1\nint styleable ViewBackgroundHelper_backgroundTintMode 2\nint[] styleable ViewStubCompat { 0x010100d0, 0x010100f2, 0x010100f3 }\nint styleable ViewStubCompat_android_id 0\nint styleable ViewStubCompat_android_inflatedId 2\nint styleable ViewStubCompat_android_layout 1\n"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/aapt/AndroidManifest.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!--\n Copyright (C) 2012 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    package=\"android.support.v7.appcompat\" >\n\n    <uses-sdk android:minSdkVersion=\"7\" />\n\n    <application />\n\n</manifest>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/public.txt",
    "content": "style TextAppearance.AppCompat\nstyle TextAppearance.AppCompat.Body1\nstyle TextAppearance.AppCompat.Body2\nstyle TextAppearance.AppCompat.Button\nstyle TextAppearance.AppCompat.Caption\nstyle TextAppearance.AppCompat.Display1\nstyle TextAppearance.AppCompat.Display2\nstyle TextAppearance.AppCompat.Display3\nstyle TextAppearance.AppCompat.Display4\nstyle TextAppearance.AppCompat.Headline\nstyle TextAppearance.AppCompat.Inverse\nstyle TextAppearance.AppCompat.Large\nstyle TextAppearance.AppCompat.Large.Inverse\nstyle TextAppearance.AppCompat.Light.SearchResult.Subtitle\nstyle TextAppearance.AppCompat.Light.SearchResult.Title\nstyle TextAppearance.AppCompat.Light.Widget.PopupMenu.Large\nstyle TextAppearance.AppCompat.Light.Widget.PopupMenu.Small\nstyle TextAppearance.AppCompat.Medium\nstyle TextAppearance.AppCompat.Medium.Inverse\nstyle TextAppearance.AppCompat.Menu\nstyle TextAppearance.AppCompat.SearchResult.Subtitle\nstyle TextAppearance.AppCompat.SearchResult.Title\nstyle TextAppearance.AppCompat.Small\nstyle TextAppearance.AppCompat.Small.Inverse\nstyle TextAppearance.AppCompat.Subhead\nstyle TextAppearance.AppCompat.Subhead.Inverse\nstyle TextAppearance.AppCompat.Title\nstyle TextAppearance.AppCompat.Title.Inverse\nstyle TextAppearance.AppCompat.Widget.ActionBar.Menu\nstyle TextAppearance.AppCompat.Widget.ActionBar.Subtitle\nstyle TextAppearance.AppCompat.Widget.ActionBar.Subtitle.Inverse\nstyle TextAppearance.AppCompat.Widget.ActionBar.Title\nstyle TextAppearance.AppCompat.Widget.ActionBar.Title.Inverse\nstyle TextAppearance.AppCompat.Widget.ActionMode.Subtitle\nstyle TextAppearance.AppCompat.Widget.ActionMode.Subtitle.Inverse\nstyle TextAppearance.AppCompat.Widget.ActionMode.Title\nstyle TextAppearance.AppCompat.Widget.ActionMode.Title.Inverse\nstyle TextAppearance.AppCompat.Widget.Button\nstyle TextAppearance.AppCompat.Widget.Button.Inverse\nstyle TextAppearance.AppCompat.Widget.DropDownItem\nstyle TextAppearance.AppCompat.Widget.PopupMenu.Large\nstyle TextAppearance.AppCompat.Widget.PopupMenu.Small\nstyle TextAppearance.AppCompat.Widget.Switch\nstyle TextAppearance.AppCompat.Widget.TextView.SpinnerItem\nstyle Theme.AppCompat\nstyle Theme.AppCompat.Dialog\nstyle Theme.AppCompat.Dialog.Alert\nstyle Theme.AppCompat.Dialog.MinWidth\nstyle Theme.AppCompat.DialogWhenLarge\nstyle Theme.AppCompat.Light\nstyle Theme.AppCompat.Light.DarkActionBar\nstyle Theme.AppCompat.Light.Dialog\nstyle Theme.AppCompat.Light.Dialog.Alert\nstyle Theme.AppCompat.Light.Dialog.MinWidth\nstyle Theme.AppCompat.Light.DialogWhenLarge\nstyle Theme.AppCompat.Light.NoActionBar\nstyle Theme.AppCompat.NoActionBar\nstyle ThemeOverlay.AppCompat\nstyle ThemeOverlay.AppCompat.ActionBar\nstyle ThemeOverlay.AppCompat.Dark\nstyle ThemeOverlay.AppCompat.Dark.ActionBar\nstyle ThemeOverlay.AppCompat.Light\nstyle Widget.AppCompat.ActionBar\nstyle Widget.AppCompat.ActionBar.Solid\nstyle Widget.AppCompat.ActionBar.TabBar\nstyle Widget.AppCompat.ActionBar.TabText\nstyle Widget.AppCompat.ActionBar.TabView\nstyle Widget.AppCompat.ActionButton\nstyle Widget.AppCompat.ActionButton.CloseMode\nstyle Widget.AppCompat.ActionButton.Overflow\nstyle Widget.AppCompat.ActionMode\nstyle Widget.AppCompat.AutoCompleteTextView\nstyle Widget.AppCompat.Button\nstyle Widget.AppCompat.Button.Borderless\nstyle Widget.AppCompat.Button.Borderless.Colored\nstyle Widget.AppCompat.Button.ButtonBar.AlertDialog\nstyle Widget.AppCompat.Button.Colored\nstyle Widget.AppCompat.Button.Small\nstyle Widget.AppCompat.ButtonBar\nstyle Widget.AppCompat.ButtonBar.AlertDialog\nstyle Widget.AppCompat.CompoundButton.CheckBox\nstyle Widget.AppCompat.CompoundButton.RadioButton\nstyle Widget.AppCompat.CompoundButton.Switch\nstyle Widget.AppCompat.DrawerArrowToggle\nstyle Widget.AppCompat.DropDownItem.Spinner\nstyle Widget.AppCompat.EditText\nstyle Widget.AppCompat.Light.ActionBar\nstyle Widget.AppCompat.Light.ActionBar.Solid\nstyle Widget.AppCompat.Light.ActionBar.Solid.Inverse\nstyle Widget.AppCompat.Light.ActionBar.TabBar\nstyle Widget.AppCompat.Light.ActionBar.TabBar.Inverse\nstyle Widget.AppCompat.Light.ActionBar.TabText\nstyle Widget.AppCompat.Light.ActionBar.TabText.Inverse\nstyle Widget.AppCompat.Light.ActionBar.TabView\nstyle Widget.AppCompat.Light.ActionBar.TabView.Inverse\nstyle Widget.AppCompat.Light.ActionButton\nstyle Widget.AppCompat.Light.ActionButton.CloseMode\nstyle Widget.AppCompat.Light.ActionButton.Overflow\nstyle Widget.AppCompat.Light.ActionMode.Inverse\nstyle Widget.AppCompat.Light.AutoCompleteTextView\nstyle Widget.AppCompat.Light.DropDownItem.Spinner\nstyle Widget.AppCompat.Light.ListPopupWindow\nstyle Widget.AppCompat.Light.ListView.DropDown\nstyle Widget.AppCompat.Light.PopupMenu\nstyle Widget.AppCompat.Light.PopupMenu.Overflow\nstyle Widget.AppCompat.Light.SearchView\nstyle Widget.AppCompat.Light.Spinner.DropDown.ActionBar\nstyle Widget.AppCompat.ListPopupWindow\nstyle Widget.AppCompat.ListView\nstyle Widget.AppCompat.ListView.DropDown\nstyle Widget.AppCompat.ListView.Menu\nstyle Widget.AppCompat.PopupMenu\nstyle Widget.AppCompat.PopupMenu.Overflow\nstyle Widget.AppCompat.PopupWindow\nstyle Widget.AppCompat.ProgressBar\nstyle Widget.AppCompat.ProgressBar.Horizontal\nstyle Widget.AppCompat.RatingBar\nstyle Widget.AppCompat.SearchView\nstyle Widget.AppCompat.SearchView.ActionBar\nstyle Widget.AppCompat.Spinner\nstyle Widget.AppCompat.Spinner.DropDown\nstyle Widget.AppCompat.Spinner.DropDown.ActionBar\nstyle Widget.AppCompat.Spinner.Underlined\nstyle Widget.AppCompat.TextView.SpinnerItem\nstyle Widget.AppCompat.Toolbar\nstyle Widget.AppCompat.Toolbar.Button.Navigation\nattr actionBarDivider\nattr actionBarItemBackground\nattr actionBarPopupTheme\nattr actionBarSize\nattr actionBarSplitStyle\nattr actionBarStyle\nattr actionBarTabBarStyle\nattr actionBarTabStyle\nattr actionBarTabTextStyle\nattr actionBarTheme\nattr actionBarWidgetTheme\nattr actionButtonStyle\nattr actionDropDownStyle\nattr actionLayout\nattr actionMenuTextAppearance\nattr actionMenuTextColor\nattr actionModeBackground\nattr actionModeCloseButtonStyle\nattr actionModeCloseDrawable\nattr actionModeCopyDrawable\nattr actionModeCutDrawable\nattr actionModeFindDrawable\nattr actionModePasteDrawable\nattr actionModeSelectAllDrawable\nattr actionModeShareDrawable\nattr actionModeSplitBackground\nattr actionModeStyle\nattr actionModeWebSearchDrawable\nattr actionOverflowButtonStyle\nattr actionOverflowMenuStyle\nattr actionProviderClass\nattr actionViewClass\nattr alertDialogStyle\nattr alertDialogTheme\nattr arrowHeadLength\nattr arrowShaftLength\nattr autoCompleteTextViewStyle\nattr background\nattr backgroundSplit\nattr backgroundStacked\nattr backgroundTint\nattr backgroundTintMode\nattr barLength\nattr borderlessButtonStyle\nattr buttonBarButtonStyle\nattr buttonBarNegativeButtonStyle\nattr buttonBarNeutralButtonStyle\nattr buttonBarPositiveButtonStyle\nattr buttonBarStyle\nattr buttonStyle\nattr buttonStyleSmall\nattr buttonTint\nattr buttonTintMode\nattr checkboxStyle\nattr checkedTextViewStyle\nattr closeIcon\nattr closeItemLayout\nattr collapseContentDescription\nattr collapseIcon\nattr color\nattr colorAccent\nattr colorButtonNormal\nattr colorControlActivated\nattr colorControlHighlight\nattr colorControlNormal\nattr colorPrimary\nattr colorPrimaryDark\nattr colorSwitchThumbNormal\nattr commitIcon\nattr contentInsetEnd\nattr contentInsetLeft\nattr contentInsetRight\nattr contentInsetStart\nattr customNavigationLayout\nattr dialogPreferredPadding\nattr dialogTheme\nattr displayOptions\nattr divider\nattr dividerHorizontal\nattr dividerPadding\nattr dividerVertical\nattr drawableSize\nattr drawerArrowStyle\nattr dropDownListViewStyle\nattr dropdownListPreferredItemHeight\nattr editTextBackground\nattr editTextColor\nattr editTextStyle\nattr elevation\nattr gapBetweenBars\nattr goIcon\nattr height\nattr hideOnContentScroll\nattr homeAsUpIndicator\nattr homeLayout\nattr icon\nattr iconifiedByDefault\nattr indeterminateProgressStyle\nattr isLightTheme\nattr itemPadding\nattr layout\nattr listChoiceBackgroundIndicator\nattr listDividerAlertDialog\nattr listPopupWindowStyle\nattr listPreferredItemHeight\nattr listPreferredItemHeightLarge\nattr listPreferredItemHeightSmall\nattr listPreferredItemPaddingLeft\nattr listPreferredItemPaddingRight\nattr logo\nattr logoDescription\nattr measureWithLargestChild\nattr middleBarArrowSize\nattr navigationContentDescription\nattr navigationIcon\nattr navigationMode\nattr overlapAnchor\nattr paddingEnd\nattr paddingStart\nattr panelBackground\nattr popupMenuStyle\nattr popupTheme\nattr popupWindowStyle\nattr preserveIconSpacing\nattr progressBarPadding\nattr progressBarStyle\nattr queryBackground\nattr queryHint\nattr radioButtonStyle\nattr ratingBarStyle\nattr searchHintIcon\nattr searchIcon\nattr searchViewStyle\nattr selectableItemBackground\nattr selectableItemBackgroundBorderless\nattr showAsAction\nattr showDividers\nattr showText\nattr spinBars\nattr spinnerDropDownItemStyle\nattr spinnerStyle\nattr splitTrack\nattr submitBackground\nattr subtitle\nattr subtitleTextAppearance\nattr subtitleTextColor\nattr subtitleTextStyle\nattr suggestionRowLayout\nlayout support_simple_spinner_dropdown_item\nattr switchMinWidth\nattr switchPadding\nattr switchStyle\nattr switchTextAppearance\nattr textAllCaps\nattr textAppearanceLargePopupMenu\nattr textAppearanceListItem\nattr textAppearanceListItemSmall\nattr textAppearanceSearchResultSubtitle\nattr textAppearanceSearchResultTitle\nattr textAppearanceSmallPopupMenu\nattr textColorAlertDialogListItem\nattr theme\nattr thickness\nattr thumbTextPadding\nattr title\nattr titleMarginBottom\nattr titleMarginEnd\nattr titleMarginStart\nattr titleMarginTop\nattr titleMargins\nattr titleTextAppearance\nattr titleTextColor\nattr titleTextStyle\nattr toolbarNavigationButtonStyle\nattr toolbarStyle\nattr track\nattr voiceIcon\nattr windowActionBar\nattr windowActionBarOverlay\nattr windowActionModeOverlay\nattr windowNoTitle\n"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/anim/abc_fade_in.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2013 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<alpha xmlns:android=\"http://schemas.android.com/apk/res/android\"\n       android:interpolator=\"@android:anim/decelerate_interpolator\"\n       android:fromAlpha=\"0.0\" android:toAlpha=\"1.0\"\n       android:duration=\"@android:integer/config_mediumAnimTime\" /><!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/anim/abc_fade_in.xml -->"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/anim/abc_fade_out.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2013 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<alpha xmlns:android=\"http://schemas.android.com/apk/res/android\"\n       android:interpolator=\"@android:anim/decelerate_interpolator\"\n       android:fromAlpha=\"1.0\" android:toAlpha=\"0.0\"\n       android:duration=\"@android:integer/config_mediumAnimTime\" /><!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/anim/abc_fade_out.xml -->"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/anim/abc_grow_fade_in_from_bottom.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!--\n/* //device/apps/common/res/anim/fade_in.xml\n**\n** Copyright 2014, The Android Open Source Project\n**\n** Licensed under the Apache License, Version 2.0 (the \"License\"); \n** you may not use this file except in compliance with the License. \n** You may obtain a copy of the License at \n**\n**     http://www.apache.org/licenses/LICENSE-2.0 \n**\n** Unless required by applicable law or agreed to in writing, software \n** distributed under the License is distributed on an \"AS IS\" BASIS, \n** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. \n** See the License for the specific language governing permissions and \n** limitations under the License.\n*/\n-->\n\n<set xmlns:android=\"http://schemas.android.com/apk/res/android\" android:shareInterpolator=\"false\">\n    <scale \tandroid:interpolator=\"@android:anim/decelerate_interpolator\"\n              android:fromXScale=\"0.9\" android:toXScale=\"1.0\"\n              android:fromYScale=\"0.9\" android:toYScale=\"1.0\"\n              android:pivotX=\"50%\" android:pivotY=\"100%\"\n              android:duration=\"@integer/abc_config_activityDefaultDur\" />\n    <alpha \tandroid:interpolator=\"@android:anim/decelerate_interpolator\"\n              android:fromAlpha=\"0.0\" android:toAlpha=\"1.0\"\n              android:duration=\"@integer/abc_config_activityShortDur\" />\n</set><!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/anim/abc_grow_fade_in_from_bottom.xml -->"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/anim/abc_popup_enter.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2014 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n<set xmlns:android=\"http://schemas.android.com/apk/res/android\"\n     android:shareInterpolator=\"false\" >\n    <alpha android:fromAlpha=\"0.0\" android:toAlpha=\"1.0\"\n           android:interpolator=\"@android:anim/decelerate_interpolator\"\n           android:duration=\"@integer/abc_config_activityShortDur\" />\n</set><!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/anim/abc_popup_enter.xml -->"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/anim/abc_popup_exit.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2013 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n<set xmlns:android=\"http://schemas.android.com/apk/res/android\"\n     android:shareInterpolator=\"false\" >\n    <alpha android:fromAlpha=\"1.0\" android:toAlpha=\"0.0\"\n           android:interpolator=\"@android:anim/decelerate_interpolator\"\n           android:duration=\"@integer/abc_config_activityShortDur\" />\n</set><!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/anim/abc_popup_exit.xml -->"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/anim/abc_shrink_fade_out_from_bottom.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!--\n  ~ Copyright (C) 2014 The Android Open Source Project\n  ~\n  ~ Licensed under the Apache License, Version 2.0 (the \"License\");\n  ~ you may not use this file except in compliance with the License.\n  ~ You may obtain a copy of the License at\n  ~\n  ~      http://www.apache.org/licenses/LICENSE-2.0\n  ~\n  ~ Unless required by applicable law or agreed to in writing, software\n  ~ distributed under the License is distributed on an \"AS IS\" BASIS,\n  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n  ~ See the License for the specific language governing permissions and\n  ~ limitations under the License.\n  -->\n\n<set xmlns:android=\"http://schemas.android.com/apk/res/android\" android:shareInterpolator=\"false\">\n    <scale \tandroid:interpolator=\"@android:anim/decelerate_interpolator\"\n              android:fromXScale=\"1.0\" android:toXScale=\"0.9\"\n              android:fromYScale=\"1.0\" android:toYScale=\"0.9\"\n              android:pivotX=\"50%\" android:pivotY=\"100%\"\n              android:duration=\"@integer/abc_config_activityDefaultDur\" />\n    <alpha \tandroid:interpolator=\"@android:anim/decelerate_interpolator\"\n              android:fromAlpha=\"1.0\" android:toAlpha=\"0.0\"\n              android:duration=\"@integer/abc_config_activityShortDur\" />\n</set><!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/anim/abc_shrink_fade_out_from_bottom.xml -->"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/anim/abc_slide_in_bottom.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2013 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n<translate xmlns:android=\"http://schemas.android.com/apk/res/android\"\n           android:interpolator=\"@android:anim/decelerate_interpolator\"\n           android:fromYDelta=\"50%p\" android:toYDelta=\"0\"\n           android:duration=\"@android:integer/config_mediumAnimTime\"/>\n<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/anim/abc_slide_in_bottom.xml -->"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/anim/abc_slide_in_top.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2013 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n<translate xmlns:android=\"http://schemas.android.com/apk/res/android\"\n           android:interpolator=\"@android:anim/decelerate_interpolator\"\n           android:fromYDelta=\"-50%p\" android:toYDelta=\"0\"\n           android:duration=\"@android:integer/config_mediumAnimTime\"/><!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/anim/abc_slide_in_top.xml -->"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/anim/abc_slide_out_bottom.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2013 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n<translate xmlns:android=\"http://schemas.android.com/apk/res/android\"\n           android:interpolator=\"@android:anim/accelerate_interpolator\"\n           android:fromYDelta=\"0\" android:toYDelta=\"50%p\"\n           android:duration=\"@android:integer/config_mediumAnimTime\"/><!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/anim/abc_slide_out_bottom.xml -->"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/anim/abc_slide_out_top.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2013 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n<translate xmlns:android=\"http://schemas.android.com/apk/res/android\"\n           android:interpolator=\"@android:anim/accelerate_interpolator\"\n           android:fromYDelta=\"0\" android:toYDelta=\"-50%p\"\n           android:duration=\"@android:integer/config_mediumAnimTime\"/><!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/anim/abc_slide_out_top.xml -->"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color/abc_background_cache_hint_selector_material_dark.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2014 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<selector xmlns:android=\"http://schemas.android.com/apk/res/android\">\n    <item android:color=\"@color/background_material_dark\" />\n</selector>\n<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/color/abc_background_cache_hint_selector_material_dark.xml -->"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color/abc_background_cache_hint_selector_material_light.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2014 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<selector xmlns:android=\"http://schemas.android.com/apk/res/android\">\n    <item android:color=\"@color/background_material_light\" />\n</selector>\n<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/color/abc_background_cache_hint_selector_material_light.xml -->"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color/abc_primary_text_disable_only_material_dark.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2014 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<selector xmlns:android=\"http://schemas.android.com/apk/res/android\">\n    <item android:state_enabled=\"false\" android:color=\"@color/bright_foreground_disabled_material_dark\"/>\n    <item android:color=\"@color/bright_foreground_material_dark\"/>\n</selector>\n<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/color/abc_primary_text_disable_only_material_dark.xml -->"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color/abc_primary_text_disable_only_material_light.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2014 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<selector xmlns:android=\"http://schemas.android.com/apk/res/android\">\n    <item android:state_enabled=\"false\" android:color=\"@color/bright_foreground_disabled_material_light\"/>\n    <item android:color=\"@color/bright_foreground_material_light\"/>\n</selector>\n<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/color/abc_primary_text_disable_only_material_light.xml -->"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color/abc_primary_text_material_dark.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2008 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n  \n          http://www.apache.org/licenses/LICENSE-2.0\n  \n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<selector xmlns:android=\"http://schemas.android.com/apk/res/android\">\n    <item android:state_enabled=\"false\" android:color=\"@color/primary_text_disabled_material_dark\"/>\n    <item android:color=\"@color/primary_text_default_material_dark\"/>\n</selector>\n<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/color/abc_primary_text_material_dark.xml -->"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color/abc_primary_text_material_light.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2014 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n  \n          http://www.apache.org/licenses/LICENSE-2.0\n  \n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<selector xmlns:android=\"http://schemas.android.com/apk/res/android\">\n    <item android:state_enabled=\"false\" android:color=\"@color/primary_text_disabled_material_light\"/>\n    <item android:color=\"@color/primary_text_default_material_light\"/>\n</selector>\n<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/color/abc_primary_text_material_light.xml -->"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color/abc_search_url_text.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2014 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n  \n          http://www.apache.org/licenses/LICENSE-2.0\n  \n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<selector xmlns:android=\"http://schemas.android.com/apk/res/android\">\n    <item android:state_pressed=\"true\" android:color=\"@color/abc_search_url_text_pressed\"/>\n    <item android:state_selected=\"true\" android:color=\"@color/abc_search_url_text_selected\"/>\n    <item android:color=\"@color/abc_search_url_text_normal\"/>\n</selector><!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/color/abc_search_url_text.xml -->"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color/abc_secondary_text_material_dark.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2014 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n  \n          http://www.apache.org/licenses/LICENSE-2.0\n  \n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<selector xmlns:android=\"http://schemas.android.com/apk/res/android\">\n    <item android:state_enabled=\"false\" android:color=\"@color/secondary_text_disabled_material_dark\"/>\n    <item android:color=\"@color/secondary_text_default_material_dark\"/>\n</selector>\n<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/color/abc_secondary_text_material_dark.xml -->"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color/abc_secondary_text_material_light.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2014 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n  \n          http://www.apache.org/licenses/LICENSE-2.0\n  \n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<selector xmlns:android=\"http://schemas.android.com/apk/res/android\">\n    <item android:state_enabled=\"false\" android:color=\"@color/secondary_text_disabled_material_light\"/>\n    <item android:color=\"@color/secondary_text_default_material_light\"/>\n</selector>\n<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/color/abc_secondary_text_material_light.xml -->"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color/switch_thumb_material_dark.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2014 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<selector xmlns:android=\"http://schemas.android.com/apk/res/android\">\n    <item android:state_enabled=\"false\" android:color=\"@color/switch_thumb_disabled_material_dark\"/>\n    <item android:color=\"@color/switch_thumb_normal_material_dark\"/>\n</selector><!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/color/switch_thumb_material_dark.xml -->"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color/switch_thumb_material_light.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2014 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<selector xmlns:android=\"http://schemas.android.com/apk/res/android\">\n    <item android:state_enabled=\"false\" android:color=\"@color/switch_thumb_disabled_material_light\"/>\n    <item android:color=\"@color/switch_thumb_normal_material_light\"/>\n</selector><!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/color/switch_thumb_material_light.xml -->"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color-v11/abc_background_cache_hint_selector_material_dark.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2014 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<selector xmlns:android=\"http://schemas.android.com/apk/res/android\">\n    <item android:state_accelerated=\"false\" android:color=\"@color/background_material_dark\" />\n    <item android:color=\"@android:color/transparent\" />\n</selector>\n<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/color-v11/abc_background_cache_hint_selector_material_dark.xml -->"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color-v11/abc_background_cache_hint_selector_material_light.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2014 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<selector xmlns:android=\"http://schemas.android.com/apk/res/android\">\n    <item android:state_accelerated=\"false\" android:color=\"@color/background_material_light\" />\n    <item android:color=\"@android:color/transparent\" />\n</selector>\n<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/color-v11/abc_background_cache_hint_selector_material_light.xml -->"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color-v23/abc_color_highlight_material.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2015 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<selector xmlns:android=\"http://schemas.android.com/apk/res/android\">\n    <item android:state_checked=\"true\"\n          android:state_enabled=\"true\"\n          android:alpha=\"@dimen/highlight_alpha_material_colored\"\n          android:color=\"?android:attr/colorControlActivated\" />\n    <item android:color=\"?android:attr/colorControlHighlight\" />\n</selector><!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/color-v23/abc_color_highlight_material.xml -->"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_btn_borderless_material.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2014 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<selector xmlns:android=\"http://schemas.android.com/apk/res/android\">\n    <item android:state_focused=\"true\" android:drawable=\"@drawable/abc_btn_default_mtrl_shape\"/>\n    <item android:state_pressed=\"true\" android:drawable=\"@drawable/abc_btn_default_mtrl_shape\"/>\n    <item android:drawable=\"@android:color/transparent\"/>\n</selector>\n\n<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/drawable/abc_btn_borderless_material.xml -->"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_btn_check_material.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2014 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<selector xmlns:android=\"http://schemas.android.com/apk/res/android\">\n    <item android:state_checked=\"true\" android:drawable=\"@drawable/abc_btn_check_to_on_mtrl_015\" />\n    <item android:drawable=\"@drawable/abc_btn_check_to_on_mtrl_000\" />\n</selector><!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/drawable/abc_btn_check_material.xml -->"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_btn_colored_material.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2014 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<!-- Used as the canonical button shape. -->\n\n<layer-list xmlns:android=\"http://schemas.android.com/apk/res/android\">\n    <item android:drawable=\"@drawable/abc_btn_default_mtrl_shape\" />\n</layer-list>\n<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/drawable/abc_btn_colored_material.xml -->"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_btn_default_mtrl_shape.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2014 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<!-- Used as the canonical button shape. -->\n\n<inset xmlns:android=\"http://schemas.android.com/apk/res/android\"\n       android:insetLeft=\"@dimen/abc_button_inset_horizontal_material\"\n       android:insetTop=\"@dimen/abc_button_inset_vertical_material\"\n       android:insetRight=\"@dimen/abc_button_inset_horizontal_material\"\n       android:insetBottom=\"@dimen/abc_button_inset_vertical_material\">\n    <shape android:shape=\"rectangle\">\n        <corners android:radius=\"@dimen/abc_control_corner_material\" />\n        <solid android:color=\"@android:color/white\" />\n        <padding android:left=\"@dimen/abc_button_padding_horizontal_material\"\n                 android:top=\"@dimen/abc_button_padding_vertical_material\"\n                 android:right=\"@dimen/abc_button_padding_horizontal_material\"\n                 android:bottom=\"@dimen/abc_button_padding_vertical_material\" />\n    </shape>\n</inset>\n<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/drawable/abc_btn_default_mtrl_shape.xml -->"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_btn_radio_material.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2014 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<selector xmlns:android=\"http://schemas.android.com/apk/res/android\">\n    <item android:state_checked=\"true\" android:drawable=\"@drawable/abc_btn_radio_to_on_mtrl_015\" />\n    <item android:drawable=\"@drawable/abc_btn_radio_to_on_mtrl_000\" />\n</selector><!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/drawable/abc_btn_radio_material.xml -->"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_cab_background_internal_bg.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2014 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<!--\n    A solid rectangle so that we can use a PorterDuff multiply color filter to tint this\n-->\n<shape xmlns:android=\"http://schemas.android.com/apk/res/android\"\n       android:shape=\"rectangle\">\n    <solid android:color=\"@android:color/white\" />\n</shape><!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/drawable/abc_cab_background_internal_bg.xml -->"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_cab_background_top_material.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2014 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<!-- This is a dummy drawable so that we can refer to the drawable ID -->\n<shape xmlns:android=\"http://schemas.android.com/apk/res/android\">\n    <solid android:color=\"@android:color/white\"/>\n</shape>\n<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/drawable/abc_cab_background_top_material.xml -->"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_dialog_material_background_dark.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2014 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<inset xmlns:android=\"http://schemas.android.com/apk/res/android\"\n       android:insetLeft=\"16dp\"\n       android:insetTop=\"16dp\"\n       android:insetRight=\"16dp\"\n       android:insetBottom=\"16dp\">\n    <shape android:shape=\"rectangle\">\n        <corners android:radius=\"2dp\" />\n        <solid android:color=\"@color/background_floating_material_dark\" />\n    </shape>\n</inset><!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/drawable/abc_dialog_material_background_dark.xml -->"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_dialog_material_background_light.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2014 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<inset xmlns:android=\"http://schemas.android.com/apk/res/android\"\n       android:insetLeft=\"16dp\"\n       android:insetTop=\"16dp\"\n       android:insetRight=\"16dp\"\n       android:insetBottom=\"16dp\">\n    <shape android:shape=\"rectangle\">\n        <corners android:radius=\"2dp\" />\n        <solid android:color=\"@color/background_floating_material_light\" />\n    </shape>\n</inset><!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/drawable/abc_dialog_material_background_light.xml -->"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_edit_text_material.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2014 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<inset xmlns:android=\"http://schemas.android.com/apk/res/android\"\n       android:insetLeft=\"@dimen/abc_edit_text_inset_horizontal_material\"\n       android:insetRight=\"@dimen/abc_edit_text_inset_horizontal_material\"\n       android:insetTop=\"@dimen/abc_edit_text_inset_top_material\"\n       android:insetBottom=\"@dimen/abc_edit_text_inset_bottom_material\">\n\n    <selector>\n        <item android:state_enabled=\"false\" android:drawable=\"@drawable/abc_textfield_default_mtrl_alpha\"/>\n        <item android:state_pressed=\"false\" android:state_focused=\"false\" android:drawable=\"@drawable/abc_textfield_default_mtrl_alpha\"/>\n        <item android:drawable=\"@drawable/abc_textfield_activated_mtrl_alpha\"/>\n    </selector>\n\n</inset>\n<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/drawable/abc_edit_text_material.xml -->"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_item_background_holo_dark.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2010 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<selector xmlns:android=\"http://schemas.android.com/apk/res/android\">\n\n    <!-- Even though these two point to the same resource, have two states so the drawable will invalidate itself when coming out of pressed state. -->\n    <item android:state_focused=\"true\"  android:state_enabled=\"false\" android:state_pressed=\"true\" android:drawable=\"@drawable/abc_list_selector_disabled_holo_dark\" />\n    <item android:state_focused=\"true\"  android:state_enabled=\"false\"                              android:drawable=\"@drawable/abc_list_selector_disabled_holo_dark\" />\n    <item android:state_focused=\"true\"                                android:state_pressed=\"true\" android:drawable=\"@drawable/abc_list_selector_background_transition_holo_dark\" />\n    <item android:state_focused=\"false\"                               android:state_pressed=\"true\" android:drawable=\"@drawable/abc_list_selector_background_transition_holo_dark\" />\n    <item android:state_focused=\"true\"                                                             android:drawable=\"@drawable/abc_list_focused_holo\" />\n    <item                                                                                          android:drawable=\"@android:color/transparent\" />\n</selector>\n<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/drawable/abc_item_background_holo_dark.xml -->"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_item_background_holo_light.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2010 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<selector xmlns:android=\"http://schemas.android.com/apk/res/android\">\n\n    <!-- Even though these two point to the same resource, have two states so the drawable will invalidate itself when coming out of pressed state. -->\n    <item android:state_focused=\"true\"  android:state_enabled=\"false\" android:state_pressed=\"true\" android:drawable=\"@drawable/abc_list_selector_disabled_holo_light\" />\n    <item android:state_focused=\"true\"  android:state_enabled=\"false\"                              android:drawable=\"@drawable/abc_list_selector_disabled_holo_light\" />\n    <item android:state_focused=\"true\"                                android:state_pressed=\"true\" android:drawable=\"@drawable/abc_list_selector_background_transition_holo_light\" />\n    <item android:state_focused=\"false\"                               android:state_pressed=\"true\" android:drawable=\"@drawable/abc_list_selector_background_transition_holo_light\" />\n    <item android:state_focused=\"true\"                                                             android:drawable=\"@drawable/abc_list_focused_holo\" />\n    <item                                                                                          android:drawable=\"@android:color/transparent\" />\n</selector>\n<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/drawable/abc_item_background_holo_light.xml -->"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_list_selector_background_transition_holo_dark.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2010 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<transition xmlns:android=\"http://schemas.android.com/apk/res/android\">\n    <item android:drawable=\"@drawable/abc_list_pressed_holo_dark\"  />\n    <item android:drawable=\"@drawable/abc_list_longpressed_holo\"  />\n</transition>\n<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/drawable/abc_list_selector_background_transition_holo_dark.xml -->"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_list_selector_background_transition_holo_light.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2010 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<transition xmlns:android=\"http://schemas.android.com/apk/res/android\">\n    <item android:drawable=\"@drawable/abc_list_pressed_holo_light\"  />\n    <item android:drawable=\"@drawable/abc_list_longpressed_holo\"  />\n</transition>\n<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/drawable/abc_list_selector_background_transition_holo_light.xml -->"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_list_selector_holo_dark.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2010 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<selector xmlns:android=\"http://schemas.android.com/apk/res/android\">\n\n    <item android:state_window_focused=\"false\" android:drawable=\"@android:color/transparent\" />\n\n    <!-- Even though these two point to the same resource, have two states so the drawable will invalidate itself when coming out of pressed state. -->\n    <item android:state_focused=\"true\"  android:state_enabled=\"false\" android:state_pressed=\"true\" android:drawable=\"@drawable/abc_list_selector_disabled_holo_dark\" />\n    <item android:state_focused=\"true\"  android:state_enabled=\"false\"                              android:drawable=\"@drawable/abc_list_selector_disabled_holo_dark\" />\n    <item android:state_focused=\"true\"                                android:state_pressed=\"true\" android:drawable=\"@drawable/abc_list_selector_background_transition_holo_dark\" />\n    <item android:state_focused=\"false\"                               android:state_pressed=\"true\" android:drawable=\"@drawable/abc_list_selector_background_transition_holo_dark\" />\n    <item android:state_focused=\"true\"                                                             android:drawable=\"@drawable/abc_list_focused_holo\" />\n</selector>\n<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/drawable/abc_list_selector_holo_dark.xml -->"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_list_selector_holo_light.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2010 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<selector xmlns:android=\"http://schemas.android.com/apk/res/android\">\n\n    <item android:state_window_focused=\"false\" android:drawable=\"@android:color/transparent\" />\n\n    <!-- Even though these two point to the same resource, have two states so the drawable will invalidate itself when coming out of pressed state. -->\n    <item android:state_focused=\"true\"  android:state_enabled=\"false\" android:state_pressed=\"true\" android:drawable=\"@drawable/abc_list_selector_disabled_holo_light\" />\n    <item android:state_focused=\"true\"  android:state_enabled=\"false\"                              android:drawable=\"@drawable/abc_list_selector_disabled_holo_light\" />\n    <item android:state_focused=\"true\"                                android:state_pressed=\"true\" android:drawable=\"@drawable/abc_list_selector_background_transition_holo_light\" />\n    <item android:state_focused=\"false\"                               android:state_pressed=\"true\" android:drawable=\"@drawable/abc_list_selector_background_transition_holo_light\" />\n    <item android:state_focused=\"true\"                                                             android:drawable=\"@drawable/abc_list_focused_holo\" />\n\n</selector>\n<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/drawable/abc_list_selector_holo_light.xml -->"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_ratingbar_full_material.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2014 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<layer-list xmlns:android=\"http://schemas.android.com/apk/res/android\">\n    <item android:id=\"@android:id/background\"\n        android:drawable=\"@drawable/abc_btn_rating_star_off_mtrl_alpha\" />\n    <item android:id=\"@android:id/secondaryProgress\"\n        android:drawable=\"@drawable/abc_btn_rating_star_off_mtrl_alpha\" />\n    <item android:id=\"@android:id/progress\"\n        android:drawable=\"@drawable/abc_btn_rating_star_on_mtrl_alpha\" />\n</layer-list>\n<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/drawable/abc_ratingbar_full_material.xml -->"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_spinner_textfield_background_material.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2014 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<inset xmlns:android=\"http://schemas.android.com/apk/res/android\"\n       android:insetLeft=\"@dimen/abc_control_inset_material\"\n       android:insetTop=\"@dimen/abc_control_inset_material\"\n       android:insetBottom=\"@dimen/abc_control_inset_material\"\n       android:insetRight=\"@dimen/abc_control_inset_material\">\n    <selector>\n        <item android:state_checked=\"false\" android:state_pressed=\"false\">\n            <layer-list>\n                <item android:drawable=\"@drawable/abc_textfield_default_mtrl_alpha\" />\n                <item android:drawable=\"@drawable/abc_spinner_mtrl_am_alpha\" />\n            </layer-list>\n        </item>\n        <item>\n            <layer-list>\n                <item android:drawable=\"@drawable/abc_textfield_activated_mtrl_alpha\" />\n                <item android:drawable=\"@drawable/abc_spinner_mtrl_am_alpha\" />\n            </layer-list>\n        </item>\n    </selector>\n</inset><!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/drawable/abc_spinner_textfield_background_material.xml -->"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_switch_thumb_material.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2014 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<selector xmlns:android=\"http://schemas.android.com/apk/res/android\">\n    <item android:state_checked=\"true\" android:drawable=\"@drawable/abc_btn_switch_to_on_mtrl_00012\" />\n    <item android:drawable=\"@drawable/abc_btn_switch_to_on_mtrl_00001\" />\n</selector><!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/drawable/abc_switch_thumb_material.xml -->"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_tab_indicator_material.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2014 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<selector xmlns:android=\"http://schemas.android.com/apk/res/android\">\n    <item android:state_selected=\"true\" android:drawable=\"@drawable/abc_tab_indicator_mtrl_alpha\" />\n    <item android:drawable=\"@android:color/transparent\" />\n</selector>\n<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/drawable/abc_tab_indicator_material.xml -->"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_text_cursor_material.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!--\n  ~ Copyright (C) 2015 The Android Open Source Project\n  ~\n  ~ Licensed under the Apache License, Version 2.0 (the \"License\");\n  ~ you may not use this file except in compliance with the License.\n  ~ You may obtain a copy of the License at\n  ~\n  ~      http://www.apache.org/licenses/LICENSE-2.0\n  ~\n  ~ Unless required by applicable law or agreed to in writing, software\n  ~ distributed under the License is distributed on an \"AS IS\" BASIS,\n  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n  ~ See the License for the specific language governing permissions and\n  ~ limitations under the License.\n-->\n\n<shape xmlns:android=\"http://schemas.android.com/apk/res/android\"\n       android:shape=\"rectangle\">\n    <size android:height=\"2dp\"\n          android:width=\"2dp\"/>\n    <solid android:color=\"@android:color/white\"/>\n</shape><!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/drawable/abc_text_cursor_material.xml -->"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_textfield_search_material.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2014 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<selector xmlns:android=\"http://schemas.android.com/apk/res/android\">\n    <item android:state_enabled=\"true\" android:state_focused=\"true\" android:drawable=\"@drawable/abc_textfield_search_activated_mtrl_alpha\"/>\n    <item android:state_enabled=\"true\" android:state_activated=\"true\" android:drawable=\"@drawable/abc_textfield_search_activated_mtrl_alpha\"/>\n    <item android:state_enabled=\"true\" android:drawable=\"@drawable/abc_textfield_search_default_mtrl_alpha\"/>\n    <item android:drawable=\"@drawable/abc_textfield_search_default_mtrl_alpha\"/>\n</selector>\n<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/drawable/abc_textfield_search_material.xml -->"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-v21/abc_action_bar_item_background_material.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2015 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<ripple xmlns:android=\"http://schemas.android.com/apk/res/android\"\n        android:color=\"?android:attr/colorControlHighlight\"/><!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/drawable-v21/abc_action_bar_item_background_material.xml -->"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-v21/abc_btn_colored_material.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2015 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<inset xmlns:android=\"http://schemas.android.com/apk/res/android\"\n       android:insetLeft=\"@dimen/abc_button_inset_horizontal_material\"\n       android:insetTop=\"@dimen/abc_button_inset_vertical_material\"\n       android:insetRight=\"@dimen/abc_button_inset_horizontal_material\"\n       android:insetBottom=\"@dimen/abc_button_inset_vertical_material\">\n    <ripple android:color=\"?android:attr/colorControlHighlight\">\n        <item>\n            <!-- As we can't use themed ColorStateLists in L, we'll use a Drawable selector which\n                 changes the shape's fill color. -->\n            <selector>\n                <item android:state_enabled=\"false\">\n                    <shape android:shape=\"rectangle\">\n                        <corners android:radius=\"@dimen/abc_control_corner_material\"/>\n                        <solid android:color=\"?android:attr/colorButtonNormal\"/>\n                        <padding android:left=\"@dimen/abc_button_padding_horizontal_material\"\n                                 android:top=\"@dimen/abc_button_padding_vertical_material\"\n                                 android:right=\"@dimen/abc_button_padding_horizontal_material\"\n                                 android:bottom=\"@dimen/abc_button_padding_vertical_material\"/>\n                    </shape>\n                </item>\n                <item>\n                    <shape android:shape=\"rectangle\">\n                        <corners android:radius=\"@dimen/abc_control_corner_material\"/>\n                        <solid android:color=\"?android:attr/colorAccent\"/>\n                        <padding android:left=\"@dimen/abc_button_padding_horizontal_material\"\n                                 android:top=\"@dimen/abc_button_padding_vertical_material\"\n                                 android:right=\"@dimen/abc_button_padding_horizontal_material\"\n                                 android:bottom=\"@dimen/abc_button_padding_vertical_material\"/>\n                    </shape>\n                </item>\n            </selector>\n        </item>\n    </ripple>\n</inset><!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/drawable-v21/abc_btn_colored_material.xml -->"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-v23/abc_control_background_material.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2015 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<ripple xmlns:android=\"http://schemas.android.com/apk/res/android\"\n        android:color=\"@color/abc_color_highlight_material\"\n        android:radius=\"20dp\" /><!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/drawable-v23/abc_control_background_material.xml -->"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_action_bar_title_item.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2010 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n  \n          http://www.apache.org/licenses/LICENSE-2.0\n  \n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<LinearLayout xmlns:android=\"http://schemas.android.com/apk/res/android\"\n              android:layout_width=\"wrap_content\"\n              android:layout_height=\"wrap_content\"\n              android:orientation=\"vertical\"\n              style=\"@style/RtlOverlay.Widget.AppCompat.ActionBar.TitleItem\">\n    <TextView android:id=\"@+id/action_bar_title\"\n              android:layout_width=\"wrap_content\"\n              android:layout_height=\"wrap_content\"\n              android:singleLine=\"true\"\n              android:ellipsize=\"end\" />\n    <TextView android:id=\"@+id/action_bar_subtitle\"\n              android:layout_width=\"wrap_content\"\n              android:layout_height=\"wrap_content\"\n              android:layout_marginTop=\"@dimen/abc_action_bar_subtitle_top_margin_material\"\n              android:singleLine=\"true\"\n              android:ellipsize=\"end\"\n              android:visibility=\"gone\" />\n</LinearLayout>\n<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/layout/abc_action_bar_title_item.xml -->"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_action_bar_up_container.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2014 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<LinearLayout xmlns:android=\"http://schemas.android.com/apk/res/android\"\n              android:layout_width=\"wrap_content\"\n              android:layout_height=\"match_parent\"\n              android:background=\"?attr/actionBarItemBackground\"\n              android:gravity=\"center_vertical\"\n              android:enabled=\"false\">\n</LinearLayout>\n<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/layout/abc_action_bar_up_container.xml -->"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_action_bar_view_list_nav_layout.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2012 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n                                                          dd\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<!-- Styled linear layout, compensating for the lack of a defStyle parameter\n     in pre-Honeycomb LinearLayout's constructor. -->\n<LinearLayout xmlns:android=\"http://schemas.android.com/apk/res/android\"\n              android:layout_width=\"fill_parent\"\n              android:layout_height=\"fill_parent\"\n              style=\"?attr/actionBarTabBarStyle\">\n</LinearLayout><!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/layout/abc_action_bar_view_list_nav_layout.xml -->"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_action_menu_item_layout.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2010 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n                                                          dd\n          http://www.apache.org/licenses/LICENSE-2.0\n  \n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<android.support.v7.internal.view.menu.ActionMenuItemView\n        xmlns:android=\"http://schemas.android.com/apk/res/android\"\n        android:layout_width=\"wrap_content\"\n        android:layout_height=\"wrap_content\"\n        android:layout_gravity=\"center\"\n        android:gravity=\"center\"\n        android:focusable=\"true\"\n        android:paddingTop=\"4dip\"\n        android:paddingBottom=\"4dip\"\n        android:paddingLeft=\"8dip\"\n        android:paddingRight=\"8dip\"\n        android:textAppearance=\"?attr/actionMenuTextAppearance\"\n        android:textColor=\"?attr/actionMenuTextColor\"\n        style=\"?attr/actionButtonStyle\"/>\n<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/layout/abc_action_menu_item_layout.xml -->"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_action_menu_layout.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2010 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<android.support.v7.widget.ActionMenuView\n        xmlns:android=\"http://schemas.android.com/apk/res/android\"\n        xmlns:app=\"http://schemas.android.com/apk/res-auto\"\n        android:layout_width=\"wrap_content\"\n        android:layout_height=\"wrap_content\"\n        app:divider=\"?attr/actionBarDivider\"\n        app:dividerPadding=\"12dip\"\n        android:gravity=\"center_vertical\"/>\n<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/layout/abc_action_menu_layout.xml -->"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_action_mode_bar.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!--\n/*\n** Copyright 2012, The Android Open Source Project\n**\n** Licensed under the Apache License, Version 2.0 (the \"License\");\n** you may not use this file except in compliance with the License.\n** You may obtain a copy of the License at\n**\n**     http://www.apache.org/licenses/LICENSE-2.0\n**\n** Unless required by applicable law or agreed to in writing, software\n** distributed under the License is distributed on an \"AS IS\" BASIS,\n** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n** See the License for the specific language governing permissions and\n** limitations under the License.\n*/\n-->\n<android.support.v7.internal.widget.ActionBarContextView\n        xmlns:android=\"http://schemas.android.com/apk/res/android\"\n        android:layout_width=\"match_parent\"\n        android:layout_height=\"wrap_content\"\n        android:visibility=\"gone\"\n        android:theme=\"?attr/actionBarTheme\"\n        style=\"?attr/actionModeStyle\"/>\n<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/layout/abc_action_mode_bar.xml -->"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_action_mode_close_item_material.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2014 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<android.support.v7.internal.widget.TintImageView\n             xmlns:android=\"http://schemas.android.com/apk/res/android\"\n             android:id=\"@+id/action_mode_close_button\"\n             android:contentDescription=\"@string/abc_action_mode_done\"\n             android:focusable=\"true\"\n             android:clickable=\"true\"\n             android:src=\"?attr/actionModeCloseDrawable\"\n             style=\"?attr/actionModeCloseButtonStyle\"\n             android:layout_width=\"wrap_content\"\n             android:layout_height=\"match_parent\" /><!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/layout/abc_action_mode_close_item_material.xml -->"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_activity_chooser_view.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!--\n**\n** Copyright 2013, The Android Open Source Project\n**\n** Licensed under the Apache License, Version 2.0 (the \"License\");\n** you may not use this file except in compliance with the License.\n** You may obtain a copy of the License at\n**\n**     http://www.apache.org/licenses/LICENSE-2.0\n**\n** Unless required by applicable law or agreed to in writing, software\n** distributed under the License is distributed on an \"AS IS\" BASIS,\n** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n** See the License for the specific language governing permissions and\n** limitations under the License.\n*/\n-->\n<view xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    class=\"android.support.v7.internal.widget.ActivityChooserView$InnerLayout\"\n    android:id=\"@+id/activity_chooser_view_content\"\n    android:layout_width=\"wrap_content\"\n    android:layout_height=\"match_parent\"\n    android:layout_gravity=\"center\"\n    style=\"?attr/activityChooserViewStyle\">\n\n    <FrameLayout\n        android:id=\"@+id/expand_activities_button\"\n        android:layout_width=\"wrap_content\"\n        android:layout_height=\"match_parent\"\n        android:layout_gravity=\"center\"\n        android:focusable=\"true\"\n        android:addStatesFromChildren=\"true\"\n        android:background=\"?attr/actionBarItemBackground\">\n\n        <ImageView android:id=\"@+id/image\"\n            android:layout_width=\"32dip\"\n            android:layout_height=\"32dip\"\n            android:layout_gravity=\"center\"\n            android:layout_marginTop=\"2dip\"\n            android:layout_marginBottom=\"2dip\"\n            android:layout_marginLeft=\"12dip\"\n            android:layout_marginRight=\"12dip\"\n            android:scaleType=\"fitCenter\"\n            android:adjustViewBounds=\"true\" />\n\n    </FrameLayout>\n\n    <FrameLayout\n        android:id=\"@+id/default_activity_button\"\n        android:layout_width=\"wrap_content\"\n        android:layout_height=\"match_parent\"\n        android:layout_gravity=\"center\"\n        android:focusable=\"true\"\n        android:addStatesFromChildren=\"true\"\n        android:background=\"?attr/actionBarItemBackground\">\n\n        <ImageView android:id=\"@+id/image\"\n            android:layout_width=\"32dip\"\n            android:layout_height=\"32dip\"\n            android:layout_gravity=\"center\"\n            android:layout_marginTop=\"2dip\"\n            android:layout_marginBottom=\"2dip\"\n            android:layout_marginLeft=\"12dip\"\n            android:layout_marginRight=\"12dip\"\n            android:scaleType=\"fitCenter\"\n            android:adjustViewBounds=\"true\" />\n\n    </FrameLayout>\n\n</view>\n<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/layout/abc_activity_chooser_view.xml -->"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_activity_chooser_view_list_item.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2013 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<LinearLayout xmlns:android=\"http://schemas.android.com/apk/res/android\"\n              android:id=\"@+id/list_item\"\n              android:layout_width=\"match_parent\"\n              android:layout_height=\"?attr/dropdownListPreferredItemHeight\"\n              android:paddingLeft=\"16dip\"\n              android:paddingRight=\"16dip\"\n              android:minWidth=\"196dip\"\n              android:orientation=\"vertical\">\n\n    <LinearLayout\n            android:layout_width=\"wrap_content\"\n            android:layout_height=\"match_parent\"\n            android:duplicateParentState=\"true\" >\n\n        <ImageView\n                android:id=\"@+id/icon\"\n                android:layout_width=\"32dip\"\n                android:layout_height=\"32dip\"\n                android:layout_gravity=\"center_vertical\"\n                android:layout_marginRight=\"8dip\"\n                android:duplicateParentState=\"true\"/>\n\n        <TextView\n                android:id=\"@+id/title\"\n                android:layout_width=\"wrap_content\"\n                android:layout_height=\"wrap_content\"\n                android:layout_gravity=\"center_vertical\"\n                android:textAppearance=\"?attr/textAppearanceLargePopupMenu\"\n                android:duplicateParentState=\"true\"\n                android:singleLine=\"true\"\n                android:ellipsize=\"marquee\"\n                android:fadingEdge=\"horizontal\"/>\n\n    </LinearLayout>\n\n</LinearLayout><!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/layout/abc_activity_chooser_view_list_item.xml -->"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_alert_dialog_material.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!--\n     Copyright (C) 2015 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<LinearLayout xmlns:android=\"http://schemas.android.com/apk/res/android\"\n        android:id=\"@+id/parentPanel\"\n        android:layout_width=\"match_parent\"\n        android:layout_height=\"wrap_content\"\n        android:orientation=\"vertical\">\n\n    <LinearLayout\n            android:id=\"@+id/topPanel\"\n            android:layout_width=\"match_parent\"\n            android:layout_height=\"wrap_content\"\n            android:orientation=\"vertical\">\n\n        <LinearLayout\n                android:id=\"@+id/title_template\"\n                android:layout_width=\"match_parent\"\n                android:layout_height=\"wrap_content\"\n                android:orientation=\"horizontal\"\n                android:gravity=\"center_vertical\"\n                android:paddingLeft=\"?attr/dialogPreferredPadding\"\n                android:paddingRight=\"?attr/dialogPreferredPadding\"\n                android:paddingTop=\"@dimen/abc_dialog_padding_top_material\">\n\n            <ImageView\n                    android:id=\"@android:id/icon\"\n                    android:layout_width=\"32dip\"\n                    android:layout_height=\"32dip\"\n                    android:scaleType=\"fitCenter\"\n                    android:src=\"@null\"\n                    style=\"@style/RtlOverlay.Widget.AppCompat.DialogTitle.Icon\"/>\n\n            <android.support.v7.internal.widget.DialogTitle\n                    android:id=\"@+id/alertTitle\"\n                    style=\"?attr/android:windowTitleStyle\"\n                    android:singleLine=\"true\"\n                    android:ellipsize=\"end\"\n                    android:layout_width=\"match_parent\"\n                    android:layout_height=\"wrap_content\"\n                    android:textAlignment=\"viewStart\" />\n\n        </LinearLayout>\n        <!-- If the client uses a customTitle, it will be added here. -->\n    </LinearLayout>\n\n    <FrameLayout\n            android:id=\"@+id/contentPanel\"\n            android:layout_width=\"match_parent\"\n            android:layout_height=\"wrap_content\"\n            android:layout_weight=\"1\"\n            android:minHeight=\"48dp\">\n\n        <ScrollView\n                android:id=\"@+id/scrollView\"\n                android:layout_width=\"match_parent\"\n                android:layout_height=\"wrap_content\"\n                android:clipToPadding=\"false\">\n\n            <LinearLayout\n                    android:layout_width=\"match_parent\"\n                    android:layout_height=\"wrap_content\"\n                    android:orientation=\"vertical\">\n\n                <TextView\n                        android:id=\"@android:id/message\"\n                        style=\"@style/TextAppearance.AppCompat.Subhead\"\n                        android:layout_width=\"match_parent\"\n                        android:layout_height=\"wrap_content\"\n                        android:paddingLeft=\"?attr/dialogPreferredPadding\"\n                        android:paddingTop=\"@dimen/abc_dialog_padding_top_material\"\n                        android:paddingRight=\"?attr/dialogPreferredPadding\"/>\n\n                <View\n                        android:id=\"@+id/textSpacerNoButtons\"\n                        android:visibility=\"gone\"\n                        android:layout_width=\"0dp\"\n                        android:layout_height=\"@dimen/abc_dialog_padding_top_material\"/>\n            </LinearLayout>\n        </ScrollView>\n\n    </FrameLayout>\n\n    <FrameLayout\n            android:id=\"@+id/customPanel\"\n            android:layout_width=\"match_parent\"\n            android:layout_height=\"wrap_content\"\n            android:layout_weight=\"1\"\n            android:minHeight=\"48dp\">\n\n        <FrameLayout\n                android:id=\"@+id/custom\"\n                android:layout_width=\"match_parent\"\n                android:layout_height=\"wrap_content\"/>\n    </FrameLayout>\n\n    <LinearLayout\n            android:id=\"@+id/buttonPanel\"\n            style=\"?attr/buttonBarStyle\"\n            android:layout_width=\"match_parent\"\n            android:layout_height=\"wrap_content\"\n            android:layoutDirection=\"locale\"\n            android:orientation=\"horizontal\"\n            android:paddingLeft=\"12dp\"\n            android:paddingRight=\"12dp\"\n            android:paddingTop=\"8dp\"\n            android:paddingBottom=\"8dp\"\n            android:gravity=\"bottom\">\n\n        <Button\n                android:id=\"@android:id/button3\"\n                style=\"?attr/buttonBarNeutralButtonStyle\"\n                android:layout_width=\"wrap_content\"\n                android:layout_height=\"wrap_content\"/>\n\n        <android.support.v4.widget.Space\n                android:layout_width=\"0dp\"\n                android:layout_height=\"0dp\"\n                android:layout_weight=\"1\"\n                android:visibility=\"invisible\"/>\n\n        <Button\n                android:id=\"@android:id/button2\"\n                style=\"?attr/buttonBarNegativeButtonStyle\"\n                android:layout_width=\"wrap_content\"\n                android:layout_height=\"wrap_content\"/>\n\n        <Button\n                android:id=\"@android:id/button1\"\n                style=\"?attr/buttonBarPositiveButtonStyle\"\n                android:layout_width=\"wrap_content\"\n                android:layout_height=\"wrap_content\"/>\n    </LinearLayout>\n</LinearLayout><!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/layout/abc_alert_dialog_material.xml -->"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_dialog_title_material.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2014 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<!--\nThis is an optimized layout for a screen, with the minimum set of features\nenabled.\n-->\n\n<android.support.v7.internal.widget.FitWindowsLinearLayout\n        xmlns:android=\"http://schemas.android.com/apk/res/android\"\n        android:layout_height=\"match_parent\"\n        android:layout_width=\"match_parent\"\n        android:orientation=\"vertical\"\n        android:fitsSystemWindows=\"true\">\n\n    <TextView\n            android:id=\"@+id/title\"\n            style=\"?android:attr/windowTitleStyle\"\n            android:singleLine=\"true\"\n            android:ellipsize=\"end\"\n            android:layout_width=\"match_parent\"\n            android:layout_height=\"wrap_content\"\n            android:textAlignment=\"viewStart\"\n            android:paddingLeft=\"?attr/dialogPreferredPadding\"\n            android:paddingRight=\"?attr/dialogPreferredPadding\"\n            android:paddingTop=\"@dimen/abc_dialog_padding_top_material\"/>\n\n    <include\n            layout=\"@layout/abc_screen_content_include\"\n            android:layout_width=\"match_parent\"\n            android:layout_height=\"wrap_content\"\n            android:layout_weight=\"1\"/>\n\n</android.support.v7.internal.widget.FitWindowsLinearLayout><!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/layout/abc_dialog_title_material.xml -->"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_expanded_menu_layout.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2013 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<android.support.v7.internal.view.menu.ExpandedMenuView\n        xmlns:android=\"http://schemas.android.com/apk/res/android\"\n        android:id=\"@+id/expanded_menu\"\n        android:layout_width=\"?attr/panelMenuListWidth\"\n        android:layout_height=\"wrap_content\" />\n<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/layout/abc_expanded_menu_layout.xml -->"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_list_menu_item_checkbox.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2007 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n  \n          http://www.apache.org/licenses/LICENSE-2.0\n  \n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<CheckBox xmlns:android=\"http://schemas.android.com/apk/res/android\"\n          android:id=\"@+id/checkbox\"\n          android:layout_width=\"wrap_content\"\n          android:layout_height=\"wrap_content\"\n          android:layout_gravity=\"center_vertical\"\n          android:focusable=\"false\"\n          android:clickable=\"false\"\n          android:duplicateParentState=\"true\"/>\n\n\n<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/layout/abc_list_menu_item_checkbox.xml -->"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_list_menu_item_icon.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2007 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n  \n          http://www.apache.org/licenses/LICENSE-2.0\n  \n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<ImageView xmlns:android=\"http://schemas.android.com/apk/res/android\"\n           android:id=\"@+id/icon\"\n           android:layout_width=\"wrap_content\"\n           android:layout_height=\"wrap_content\"\n           android:layout_gravity=\"center_vertical\"\n           android:layout_marginLeft=\"8dip\"\n           android:layout_marginRight=\"-8dip\"\n           android:layout_marginTop=\"8dip\"\n           android:layout_marginBottom=\"8dip\"\n           android:scaleType=\"centerInside\"\n           android:duplicateParentState=\"true\"/>\n\n<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/layout/abc_list_menu_item_icon.xml -->"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_list_menu_item_layout.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2013 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<android.support.v7.internal.view.menu.ListMenuItemView\n        xmlns:android=\"http://schemas.android.com/apk/res/android\"\n        android:layout_width=\"match_parent\"\n        android:layout_height=\"?attr/listPreferredItemHeightSmall\">\n\n    <!-- Icon will be inserted here. -->\n\n    <!-- The title and summary have some gap between them, and this 'group' should be centered vertically. -->\n    <RelativeLayout\n            android:layout_width=\"0dip\"\n            android:layout_weight=\"1\"\n            android:layout_height=\"wrap_content\"\n            android:layout_gravity=\"center_vertical\"\n            android:layout_marginLeft=\"?attr/listPreferredItemPaddingLeft\"\n            android:layout_marginRight=\"?attr/listPreferredItemPaddingRight\"\n            android:duplicateParentState=\"true\">\n\n        <TextView\n            android:id=\"@+id/title\"\n            android:layout_width=\"match_parent\"\n            android:layout_height=\"wrap_content\"\n            android:layout_alignParentTop=\"true\"\n            android:layout_alignParentLeft=\"true\"\n            android:textAppearance=\"?attr/textAppearanceListItemSmall\"\n            android:singleLine=\"true\"\n            android:duplicateParentState=\"true\"\n            android:ellipsize=\"marquee\"\n            android:fadingEdge=\"horizontal\" />\n\n        <TextView\n            android:id=\"@+id/shortcut\"\n            android:layout_width=\"wrap_content\"\n            android:layout_height=\"wrap_content\"\n            android:layout_below=\"@id/title\"\n            android:layout_alignParentLeft=\"true\"\n            android:textAppearance=\"?android:attr/textAppearanceSmall\"\n            android:singleLine=\"true\"\n            android:duplicateParentState=\"true\" />\n\n    </RelativeLayout>\n\n    <!-- Checkbox, and/or radio button will be inserted here. -->\n\n</android.support.v7.internal.view.menu.ListMenuItemView>\n<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/layout/abc_list_menu_item_layout.xml -->"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_list_menu_item_radio.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2007 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n  \n          http://www.apache.org/licenses/LICENSE-2.0\n  \n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<RadioButton xmlns:android=\"http://schemas.android.com/apk/res/android\"\n             android:id=\"@+id/radio\"\n             android:layout_width=\"wrap_content\"\n             android:layout_height=\"wrap_content\"\n             android:layout_gravity=\"center_vertical\"\n             android:focusable=\"false\"\n             android:clickable=\"false\"\n             android:duplicateParentState=\"true\"/>\n<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/layout/abc_list_menu_item_radio.xml -->"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_popup_menu_item_layout.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2010 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<android.support.v7.internal.view.menu.ListMenuItemView\n        xmlns:android=\"http://schemas.android.com/apk/res/android\"\n        android:layout_width=\"match_parent\"\n        android:layout_height=\"?attr/dropdownListPreferredItemHeight\"\n        android:minWidth=\"196dip\"\n        style=\"@style/RtlOverlay.Widget.AppCompat.PopupMenuItem\">\n\n    <!-- Icon will be inserted here. -->\n\n    <!-- The title and summary have some gap between them, and this 'group' should be centered vertically. -->\n    <RelativeLayout\n            android:layout_width=\"0dip\"\n            android:layout_weight=\"1\"\n            android:layout_height=\"wrap_content\"\n            android:layout_gravity=\"center_vertical\"\n            android:duplicateParentState=\"true\"\n            style=\"@style/RtlOverlay.Widget.AppCompat.PopupMenuItem.InternalGroup\">\n\n        <TextView\n                android:id=\"@+id/title\"\n                android:layout_width=\"match_parent\"\n                android:layout_height=\"wrap_content\"\n                android:layout_alignParentTop=\"true\"\n                android:textAppearance=\"?attr/textAppearanceLargePopupMenu\"\n                android:singleLine=\"true\"\n                android:duplicateParentState=\"true\"\n                android:ellipsize=\"marquee\"\n                android:fadingEdge=\"horizontal\"\n                style=\"@style/RtlOverlay.Widget.AppCompat.PopupMenuItem.Text\" />\n\n        <TextView\n                android:id=\"@+id/shortcut\"\n                android:layout_width=\"wrap_content\"\n                android:layout_height=\"wrap_content\"\n                android:layout_below=\"@id/title\"\n                android:textAppearance=\"?attr/textAppearanceSmallPopupMenu\"\n                android:singleLine=\"true\"\n                android:duplicateParentState=\"true\"\n                style=\"@style/RtlOverlay.Widget.AppCompat.PopupMenuItem.Text\" />\n\n    </RelativeLayout>\n\n    <!-- Checkbox, and/or radio button will be inserted here. -->\n\n</android.support.v7.internal.view.menu.ListMenuItemView>\n<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/layout/abc_popup_menu_item_layout.xml -->"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_screen_content_include.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2014 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<merge xmlns:android=\"http://schemas.android.com/apk/res/android\">\n\n    <android.support.v7.internal.widget.ContentFrameLayout\n            android:id=\"@id/action_bar_activity_content\"\n            android:layout_width=\"match_parent\"\n            android:layout_height=\"match_parent\"\n            android:foregroundGravity=\"fill_horizontal|top\"\n            android:foreground=\"?android:attr/windowContentOverlay\" />\n\n</merge>\n<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/layout/abc_screen_content_include.xml -->"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_screen_simple.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2013 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<android.support.v7.internal.widget.FitWindowsLinearLayout\n    xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:id=\"@+id/action_bar_root\"\n    android:layout_width=\"match_parent\"\n    android:layout_height=\"match_parent\"\n    android:orientation=\"vertical\"\n    android:fitsSystemWindows=\"true\">\n\n    <android.support.v7.internal.widget.ViewStubCompat\n        android:id=\"@+id/action_mode_bar_stub\"\n        android:inflatedId=\"@+id/action_mode_bar\"\n        android:layout=\"@layout/abc_action_mode_bar\"\n        android:layout_width=\"match_parent\"\n        android:layout_height=\"wrap_content\" />\n\n    <include layout=\"@layout/abc_screen_content_include\" />\n\n</android.support.v7.internal.widget.FitWindowsLinearLayout>\n<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/layout/abc_screen_simple.xml -->"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_screen_simple_overlay_action_mode.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!--\n/*\n** Copyright 2014, The Android Open Source Project\n**\n** Licensed under the Apache License, Version 2.0 (the \"License\");\n** you may not use this file except in compliance with the License.\n** You may obtain a copy of the License at\n**\n**     http://www.apache.org/licenses/LICENSE-2.0\n**\n** Unless required by applicable law or agreed to in writing, software\n** distributed under the License is distributed on an \"AS IS\" BASIS,\n** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n** See the License for the specific language governing permissions and\n** limitations under the License.\n*/\n\nThis is an optimized layout for a screen, with the minimum set of features\nenabled.\n-->\n\n<android.support.v7.internal.widget.FitWindowsFrameLayout\n        xmlns:android=\"http://schemas.android.com/apk/res/android\"\n        android:id=\"@+id/action_bar_root\"\n        android:layout_width=\"match_parent\"\n        android:layout_height=\"match_parent\"\n        android:fitsSystemWindows=\"true\">\n\n    <include layout=\"@layout/abc_screen_content_include\" />\n\n    <android.support.v7.internal.widget.ViewStubCompat\n            android:id=\"@+id/action_mode_bar_stub\"\n            android:inflatedId=\"@+id/action_mode_bar\"\n            android:layout=\"@layout/abc_action_mode_bar\"\n            android:layout_width=\"match_parent\"\n            android:layout_height=\"wrap_content\" />\n\n</android.support.v7.internal.widget.FitWindowsFrameLayout><!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/layout/abc_screen_simple_overlay_action_mode.xml -->"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_screen_toolbar.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2014 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<android.support.v7.internal.widget.ActionBarOverlayLayout\n        xmlns:android=\"http://schemas.android.com/apk/res/android\"\n        xmlns:app=\"http://schemas.android.com/apk/res-auto\"\n        android:id=\"@+id/decor_content_parent\"\n        android:layout_width=\"match_parent\"\n        android:layout_height=\"match_parent\"\n        android:fitsSystemWindows=\"true\">\n\n    <include layout=\"@layout/abc_screen_content_include\"/>\n\n    <android.support.v7.internal.widget.ActionBarContainer\n            android:id=\"@+id/action_bar_container\"\n            android:layout_width=\"match_parent\"\n            android:layout_height=\"wrap_content\"\n            android:layout_alignParentTop=\"true\"\n            style=\"?attr/actionBarStyle\"\n            android:touchscreenBlocksFocus=\"true\"\n            android:gravity=\"top\">\n\n        <android.support.v7.widget.Toolbar\n                android:id=\"@+id/action_bar\"\n                android:layout_width=\"match_parent\"\n                android:layout_height=\"wrap_content\"\n                app:navigationContentDescription=\"@string/abc_action_bar_up_description\"\n                style=\"?attr/toolbarStyle\"/>\n\n        <android.support.v7.internal.widget.ActionBarContextView\n                android:id=\"@+id/action_context_bar\"\n                android:layout_width=\"match_parent\"\n                android:layout_height=\"wrap_content\"\n                android:visibility=\"gone\"\n                android:theme=\"?attr/actionBarTheme\"\n                style=\"?attr/actionModeStyle\"/>\n\n    </android.support.v7.internal.widget.ActionBarContainer>\n\n</android.support.v7.internal.widget.ActionBarOverlayLayout>\n<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/layout/abc_screen_toolbar.xml -->"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_search_dropdown_item_icons_2line.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!--\n/*\n * Copyright (C) 2014 The Android Open Source Project\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *      http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n-->\n\n<RelativeLayout xmlns:android=\"http://schemas.android.com/apk/res/android\"\n                android:layout_width=\"match_parent\"\n                android:layout_height=\"58dip\"\n                style=\"@style/RtlOverlay.Widget.AppCompat.Search.DropDown\">\n\n    <!-- Icons come first in the layout, since their placement doesn't depend on\n         the placement of the text views. -->\n    <android.support.v7.internal.widget.TintImageView\n               android:id=\"@android:id/icon1\"\n               android:layout_width=\"@dimen/abc_dropdownitem_icon_width\"\n               android:layout_height=\"48dip\"\n               android:scaleType=\"centerInside\"\n               android:layout_alignParentTop=\"true\"\n               android:layout_alignParentBottom=\"true\"\n               android:visibility=\"invisible\"\n               style=\"@style/RtlOverlay.Widget.AppCompat.Search.DropDown.Icon1\" />\n\n    <android.support.v7.internal.widget.TintImageView\n               android:id=\"@+id/edit_query\"\n               android:layout_width=\"48dip\"\n               android:layout_height=\"48dip\"\n               android:scaleType=\"centerInside\"\n               android:layout_alignParentTop=\"true\"\n               android:layout_alignParentBottom=\"true\"\n               android:background=\"?attr/selectableItemBackground\"\n               android:visibility=\"gone\"\n               style=\"@style/RtlOverlay.Widget.AppCompat.Search.DropDown.Query\" />\n\n    <android.support.v7.internal.widget.TintImageView\n               android:id=\"@id/android:icon2\"\n               android:layout_width=\"48dip\"\n               android:layout_height=\"48dip\"\n               android:scaleType=\"centerInside\"\n               android:layout_alignWithParentIfMissing=\"true\"\n               android:layout_alignParentTop=\"true\"\n               android:layout_alignParentBottom=\"true\"\n               android:visibility=\"gone\"\n               style=\"@style/RtlOverlay.Widget.AppCompat.Search.DropDown.Icon2\" />\n\n\n    <!-- The subtitle comes before the title, since the height of the title depends on whether the\n         subtitle is visible or gone. -->\n    <TextView android:id=\"@android:id/text2\"\n              style=\"?android:attr/dropDownItemStyle\"\n              android:textAppearance=\"?attr/textAppearanceSearchResultSubtitle\"\n              android:singleLine=\"true\"\n              android:layout_width=\"match_parent\"\n              android:layout_height=\"29dip\"\n              android:paddingBottom=\"4dip\"\n              android:gravity=\"top\"\n              android:layout_alignWithParentIfMissing=\"true\"\n              android:layout_alignParentBottom=\"true\"\n              android:visibility=\"gone\" />\n\n    <!-- The title is placed above the subtitle, if there is one. If there is no\n         subtitle, it fills the parent. -->\n    <TextView android:id=\"@android:id/text1\"\n              style=\"?android:attr/dropDownItemStyle\"\n              android:textAppearance=\"?attr/textAppearanceSearchResultTitle\"\n              android:singleLine=\"true\"\n              android:layout_width=\"match_parent\"\n              android:layout_height=\"wrap_content\"\n              android:layout_centerVertical=\"true\"\n              android:layout_above=\"@android:id/text2\" />\n\n</RelativeLayout>\n<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/layout/abc_search_dropdown_item_icons_2line.xml -->"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_search_view.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!--\n/*\n * Copyright (C) 2014 The Android Open Source Project\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *      http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n-->\n<LinearLayout xmlns:android=\"http://schemas.android.com/apk/res/android\"\n        android:id=\"@+id/search_bar\"\n        android:layout_width=\"match_parent\"\n        android:layout_height=\"match_parent\"\n        android:orientation=\"horizontal\">\n\n    <!-- This is actually used for the badge icon *or* the badge label (or neither) -->\n    <TextView\n            android:id=\"@+id/search_badge\"\n            android:layout_width=\"wrap_content\"\n            android:layout_height=\"match_parent\"\n            android:gravity=\"center_vertical\"\n            android:layout_marginBottom=\"2dip\"\n            android:drawablePadding=\"0dip\"\n            android:textAppearance=\"?android:attr/textAppearanceMedium\"\n            android:textColor=\"?android:attr/textColorPrimary\"\n            android:visibility=\"gone\" />\n\n    <android.support.v7.internal.widget.TintImageView\n            android:id=\"@+id/search_button\"\n            style=\"?attr/actionButtonStyle\"\n            android:layout_width=\"wrap_content\"\n            android:layout_height=\"match_parent\"\n            android:layout_gravity=\"center_vertical\"\n            android:focusable=\"true\"\n            android:contentDescription=\"@string/abc_searchview_description_search\" />\n\n    <LinearLayout\n            android:id=\"@+id/search_edit_frame\"\n            android:layout_width=\"wrap_content\"\n            android:layout_height=\"wrap_content\"\n            android:layout_weight=\"1\"\n            android:layout_gravity=\"center_vertical\"\n            android:layout_marginTop=\"4dip\"\n            android:layout_marginBottom=\"4dip\"\n            android:layout_marginLeft=\"8dip\"\n            android:layout_marginRight=\"8dip\"\n            android:orientation=\"horizontal\"\n            android:layoutDirection=\"locale\">\n\n        <android.support.v7.internal.widget.TintImageView\n                android:id=\"@+id/search_mag_icon\"\n                android:layout_width=\"@dimen/abc_dropdownitem_icon_width\"\n                android:layout_height=\"wrap_content\"\n                android:scaleType=\"centerInside\"\n                android:layout_gravity=\"center_vertical\"\n                android:visibility=\"gone\"\n                style=\"@style/RtlOverlay.Widget.AppCompat.SearchView.MagIcon\" />\n\n        <!-- Inner layout contains the app icon, button(s) and EditText -->\n        <LinearLayout\n                android:id=\"@+id/search_plate\"\n                android:layout_width=\"wrap_content\"\n                android:layout_height=\"wrap_content\"\n                android:layout_weight=\"1\"\n                android:layout_gravity=\"center_vertical\"\n                android:orientation=\"horizontal\">\n\n            <view class=\"android.support.v7.widget.SearchView$SearchAutoComplete\"\n                  android:id=\"@+id/search_src_text\"\n                  android:layout_height=\"36dip\"\n                  android:layout_width=\"0dp\"\n                  android:layout_weight=\"1\"\n                  android:minWidth=\"@dimen/abc_search_view_text_min_width\"\n                  android:layout_gravity=\"bottom\"\n                  android:paddingLeft=\"@dimen/abc_dropdownitem_text_padding_left\"\n                  android:paddingRight=\"@dimen/abc_dropdownitem_text_padding_right\"\n                  android:singleLine=\"true\"\n                  android:ellipsize=\"end\"\n                  android:background=\"@null\"\n                  android:inputType=\"text|textAutoComplete|textNoSuggestions\"\n                  android:imeOptions=\"actionSearch\"\n                  android:dropDownHeight=\"wrap_content\"\n                  android:dropDownAnchor=\"@id/search_edit_frame\"\n                  android:dropDownVerticalOffset=\"0dip\"\n                  android:dropDownHorizontalOffset=\"0dip\" />\n\n            <android.support.v7.internal.widget.TintImageView\n                    android:id=\"@+id/search_close_btn\"\n                    android:layout_width=\"wrap_content\"\n                    android:layout_height=\"match_parent\"\n                    android:paddingLeft=\"8dip\"\n                    android:paddingRight=\"8dip\"\n                    android:layout_gravity=\"center_vertical\"\n                    android:background=\"?attr/selectableItemBackgroundBorderless\"\n                    android:focusable=\"true\"\n                    android:contentDescription=\"@string/abc_searchview_description_clear\" />\n\n        </LinearLayout>\n\n        <LinearLayout\n                android:id=\"@+id/submit_area\"\n                android:orientation=\"horizontal\"\n                android:layout_width=\"wrap_content\"\n                android:layout_height=\"match_parent\">\n\n            <android.support.v7.internal.widget.TintImageView\n                    android:id=\"@+id/search_go_btn\"\n                    android:layout_width=\"wrap_content\"\n                    android:layout_height=\"match_parent\"\n                    android:layout_gravity=\"center_vertical\"\n                    android:paddingLeft=\"16dip\"\n                    android:paddingRight=\"16dip\"\n                    android:background=\"?attr/selectableItemBackgroundBorderless\"\n                    android:visibility=\"gone\"\n                    android:focusable=\"true\"\n                    android:contentDescription=\"@string/abc_searchview_description_submit\" />\n\n            <android.support.v7.internal.widget.TintImageView\n                    android:id=\"@+id/search_voice_btn\"\n                    android:layout_width=\"wrap_content\"\n                    android:layout_height=\"match_parent\"\n                    android:layout_gravity=\"center_vertical\"\n                    android:paddingLeft=\"16dip\"\n                    android:paddingRight=\"16dip\"\n                    android:background=\"?attr/selectableItemBackgroundBorderless\"\n                    android:visibility=\"gone\"\n                    android:focusable=\"true\"\n                    android:contentDescription=\"@string/abc_searchview_description_voice\" />\n        </LinearLayout>\n    </LinearLayout>\n</LinearLayout>\n<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/layout/abc_search_view.xml -->"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_select_dialog_material.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!--\n     Copyright (C) 2015 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<!--\n    This layout file is used by the AlertDialog when displaying a list of items.\n    This layout file is inflated and used as the ListView to display the items.\n    Assign an ID so its state will be saved/restored.\n-->\n<ListView xmlns:android=\"http://schemas.android.com/apk/res/android\"\n      android:id=\"@+id/select_dialog_listview\"\n      android:layout_width=\"match_parent\"\n      android:layout_height=\"match_parent\"\n      android:cacheColorHint=\"@null\"\n      android:divider=\"?attr/listDividerAlertDialog\"\n      android:scrollbars=\"vertical\"\n      android:overScrollMode=\"ifContentScrolls\"\n      android:fadingEdge=\"none\"\n      android:paddingTop=\"@dimen/abc_dialog_list_padding_vertical_material\"\n      android:paddingBottom=\"@dimen/abc_dialog_list_padding_vertical_material\"\n      android:clipToPadding=\"false\"\n      style=\"@style/Widget.AppCompat.ListView\" /><!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/layout/abc_select_dialog_material.xml -->"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/notification_media_action.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2012 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<ImageButton xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    style=\"?android:attr/borderlessButtonStyle\"\n    android:id=\"@+id/action0\"\n    android:layout_width=\"48dp\"\n    android:layout_height=\"match_parent\"\n    android:layout_marginLeft=\"2dp\"\n    android:layout_marginRight=\"2dp\"\n    android:layout_weight=\"1\"\n    android:gravity=\"center\"/><!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/layout/notification_media_action.xml -->"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/notification_media_cancel_action.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!--\n  ~ Copyright (C) 2015 The Android Open Source Project\n  ~\n  ~ Licensed under the Apache License, Version 2.0 (the \"License\");\n  ~ you may not use this file except in compliance with the License.\n  ~ You may obtain a copy of the License at\n  ~\n  ~      http://www.apache.org/licenses/LICENSE-2.0\n  ~\n  ~ Unless required by applicable law or agreed to in writing, software\n  ~ distributed under the License is distributed on an \"AS IS\" BASIS,\n  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n  ~ See the License for the specific language governing permissions and\n  ~ limitations under the License\n  -->\n\n<ImageButton xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    style=\"?android:attr/borderlessButtonStyle\"\n    android:id=\"@+id/cancel_action\"\n    android:layout_width=\"48dp\"\n    android:layout_height=\"match_parent\"\n    android:layout_marginLeft=\"2dp\"\n    android:layout_marginRight=\"2dp\"\n    android:layout_weight=\"1\"\n    android:src=\"@drawable/abc_ic_clear_mtrl_alpha\"\n    android:gravity=\"center\"\n    android:visibility=\"gone\"/><!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/layout/notification_media_cancel_action.xml -->"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/notification_template_big_media.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!--\n  ~ Copyright (C) 2015 The Android Open Source Project\n  ~\n  ~ Licensed under the Apache License, Version 2.0 (the \"License\");\n  ~ you may not use this file except in compliance with the License.\n  ~ You may obtain a copy of the License at\n  ~\n  ~      http://www.apache.org/licenses/LICENSE-2.0\n  ~\n  ~ Unless required by applicable law or agreed to in writing, software\n  ~ distributed under the License is distributed on an \"AS IS\" BASIS,\n  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n  ~ See the License for the specific language governing permissions and\n  ~ limitations under the License\n  -->\n\n<RelativeLayout xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:id=\"@+id/status_bar_latest_event_content\"\n    android:layout_width=\"match_parent\"\n    android:layout_height=\"128dp\"\n    >\n    <ImageView android:id=\"@+id/icon\"\n        android:layout_width=\"@dimen/notification_large_icon_width\"\n        android:layout_height=\"@dimen/notification_large_icon_height\"\n        android:scaleType=\"centerCrop\"\n        />\n    <include layout=\"@layout/notification_media_cancel_action\"\n        android:layout_width=\"48dp\"\n        android:layout_height=\"48dp\"\n        android:layout_marginLeft=\"2dp\"\n        android:layout_marginRight=\"2dp\"\n        android:layout_alignParentRight=\"true\"/>\n    <include layout=\"@layout/notification_template_lines\"\n        android:layout_width=\"fill_parent\"\n        android:layout_height=\"wrap_content\"\n        android:layout_gravity=\"fill_vertical\"\n        android:layout_marginLeft=\"@dimen/notification_large_icon_width\"\n        android:layout_marginStart=\"@dimen/notification_large_icon_width\"\n        android:layout_toLeftOf=\"@id/cancel_action\"\n        android:layout_toStartOf=\"@id/cancel_action\"/>\n    <LinearLayout\n        android:id=\"@+id/media_actions\"\n        android:layout_width=\"match_parent\"\n        android:layout_height=\"48dp\"\n        android:layout_alignParentBottom=\"true\"\n        android:layout_marginLeft=\"12dp\"\n        android:layout_marginRight=\"12dp\"\n        android:orientation=\"horizontal\"\n        android:layoutDirection=\"ltr\"\n        >\n        <!-- media buttons will be added here -->\n    </LinearLayout>\n    <ImageView\n        android:layout_width=\"match_parent\"\n        android:layout_height=\"1dp\"\n        android:layout_above=\"@id/media_actions\"\n        android:id=\"@+id/action_divider\"\n        android:background=\"?android:attr/dividerHorizontal\" />\n</RelativeLayout>\n<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/layout/notification_template_big_media.xml -->"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/notification_template_big_media_narrow.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!--\n  ~ Copyright (C) 2015 The Android Open Source Project\n  ~\n  ~ Licensed under the Apache License, Version 2.0 (the \"License\");\n  ~ you may not use this file except in compliance with the License.\n  ~ You may obtain a copy of the License at\n  ~\n  ~      http://www.apache.org/licenses/LICENSE-2.0\n  ~\n  ~ Unless required by applicable law or agreed to in writing, software\n  ~ distributed under the License is distributed on an \"AS IS\" BASIS,\n  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n  ~ See the License for the specific language governing permissions and\n  ~ limitations under the License\n  -->\n\n<!-- Layout to be used with only max 3 actions. It has a much larger picture at the left side-->\n<RelativeLayout xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:id=\"@+id/status_bar_latest_event_content\"\n    android:layout_width=\"match_parent\"\n    android:layout_height=\"128dp\"\n    >\n    <ImageView android:id=\"@+id/icon\"\n        android:layout_width=\"128dp\"\n        android:layout_height=\"128dp\"\n        android:scaleType=\"centerCrop\"\n        />\n\n    <include layout=\"@layout/notification_media_cancel_action\"\n        android:layout_width=\"48dp\"\n        android:layout_height=\"48dp\"\n        android:layout_marginLeft=\"2dp\"\n        android:layout_marginRight=\"2dp\"\n        android:layout_alignParentRight=\"true\"\n        android:layout_alignParentEnd=\"true\"/>\n\n    <include layout=\"@layout/notification_template_lines\"\n        android:layout_width=\"fill_parent\"\n        android:layout_height=\"wrap_content\"\n        android:layout_marginLeft=\"128dp\"\n        android:layout_marginStart=\"128dp\"\n        android:layout_toLeftOf=\"@id/cancel_action\"\n        android:layout_toStartOf=\"@id/cancel_action\"/>\n\n    <LinearLayout\n        android:id=\"@+id/media_actions\"\n        android:layout_width=\"match_parent\"\n        android:layout_height=\"48dp\"\n        android:layout_toRightOf=\"@id/icon\"\n        android:layout_toEndOf=\"@id/icon\"\n        android:layout_alignParentBottom=\"true\"\n        android:layout_marginLeft=\"12dp\"\n        android:layout_marginRight=\"12dp\"\n        android:orientation=\"horizontal\"\n        android:layoutDirection=\"ltr\"\n        >\n        <!-- media buttons will be added here -->\n    </LinearLayout>\n    <ImageView\n        android:layout_width=\"match_parent\"\n        android:layout_height=\"1dp\"\n        android:layout_toRightOf=\"@id/icon\"\n        android:layout_toEndOf=\"@id/icon\"\n        android:layout_above=\"@id/media_actions\"\n        android:id=\"@+id/action_divider\"\n        android:background=\"?android:attr/dividerHorizontal\" />\n</RelativeLayout>\n<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/layout/notification_template_big_media_narrow.xml -->"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/notification_template_lines.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!--\n  ~ Copyright (C) 2015 The Android Open Source Project\n  ~\n  ~ Licensed under the Apache License, Version 2.0 (the \"License\");\n  ~ you may not use this file except in compliance with the License.\n  ~ You may obtain a copy of the License at\n  ~\n  ~      http://www.apache.org/licenses/LICENSE-2.0\n  ~\n  ~ Unless required by applicable law or agreed to in writing, software\n  ~ distributed under the License is distributed on an \"AS IS\" BASIS,\n  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n  ~ See the License for the specific language governing permissions and\n  ~ limitations under the License\n  -->\n\n<LinearLayout xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:layout_width=\"wrap_content\"\n    android:layout_height=\"wrap_content\"\n    android:orientation=\"vertical\"\n    android:paddingRight=\"8dp\"\n    android:paddingEnd=\"8dp\"\n    android:paddingTop=\"2dp\"\n    android:paddingBottom=\"2dp\"\n    >\n    <LinearLayout\n        android:id=\"@+id/line1\"\n        android:layout_width=\"fill_parent\"\n        android:layout_height=\"wrap_content\"\n        android:paddingTop=\"6dp\"\n        android:layout_marginLeft=\"8dp\"\n        android:layout_marginStart=\"8dp\"\n        android:orientation=\"horizontal\"\n        >\n        <TextView android:id=\"@+id/title\"\n            android:textAppearance=\"@style/TextAppearance.StatusBar.EventContent.Title\"\n            android:layout_width=\"fill_parent\"\n            android:layout_height=\"wrap_content\"\n            android:singleLine=\"true\"\n            android:ellipsize=\"marquee\"\n            android:fadingEdge=\"horizontal\"\n            android:layout_weight=\"1\"\n            />\n        <include\n            layout=\"@layout/notification_template_part_time\"\n            android:id=\"@+id/time\"\n            android:layout_width=\"wrap_content\"\n            android:layout_height=\"wrap_content\"\n            android:layout_gravity=\"center\"\n            android:layout_weight=\"0\"\n            android:visibility=\"gone\"\n            />\n        <include\n            layout=\"@layout/notification_template_part_chronometer\"\n            android:id=\"@+id/chronometer\"\n            android:layout_width=\"wrap_content\"\n            android:layout_height=\"wrap_content\"\n            android:layout_gravity=\"center\"\n            android:layout_weight=\"0\"\n            android:visibility=\"gone\"\n            />\n    </LinearLayout>\n    <TextView android:id=\"@+id/text2\"\n        android:textAppearance=\"@style/TextAppearance.StatusBar.EventContent.Line2\"\n        android:layout_width=\"fill_parent\"\n        android:layout_height=\"wrap_content\"\n        android:layout_marginTop=\"-2dp\"\n        android:layout_marginBottom=\"-2dp\"\n        android:layout_marginLeft=\"8dp\"\n        android:layout_marginStart=\"8dp\"\n        android:singleLine=\"true\"\n        android:fadingEdge=\"horizontal\"\n        android:ellipsize=\"marquee\"\n        android:visibility=\"gone\"\n        />\n    <LinearLayout\n        android:id=\"@+id/line3\"\n        android:layout_width=\"fill_parent\"\n        android:layout_height=\"wrap_content\"\n        android:orientation=\"horizontal\"\n        android:gravity=\"center_vertical\"\n        android:layout_marginLeft=\"8dp\"\n        android:layout_marginStart=\"8dp\"\n        >\n        <TextView android:id=\"@+id/text\"\n            android:textAppearance=\"@style/TextAppearance.StatusBar.EventContent\"\n            android:layout_width=\"0dp\"\n            android:layout_height=\"wrap_content\"\n            android:layout_weight=\"1\"\n            android:layout_gravity=\"center\"\n            android:singleLine=\"true\"\n            android:ellipsize=\"marquee\"\n            android:fadingEdge=\"horizontal\"\n            />\n        <TextView android:id=\"@+id/info\"\n            android:textAppearance=\"@style/TextAppearance.StatusBar.EventContent.Info\"\n            android:layout_width=\"wrap_content\"\n            android:layout_height=\"wrap_content\"\n            android:layout_gravity=\"center\"\n            android:layout_weight=\"0\"\n            android:singleLine=\"true\"\n            android:gravity=\"center\"\n            android:paddingLeft=\"8dp\"\n            android:paddingStart=\"8dp\"\n            />\n    </LinearLayout>\n</LinearLayout><!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/layout/notification_template_lines.xml -->"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/notification_template_media.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!--\n  ~ Copyright (C) 2015 The Android Open Source Project\n  ~\n  ~ Licensed under the Apache License, Version 2.0 (the \"License\");\n  ~ you may not use this file except in compliance with the License.\n  ~ You may obtain a copy of the License at\n  ~\n  ~      http://www.apache.org/licenses/LICENSE-2.0\n  ~\n  ~ Unless required by applicable law or agreed to in writing, software\n  ~ distributed under the License is distributed on an \"AS IS\" BASIS,\n  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n  ~ See the License for the specific language governing permissions and\n  ~ limitations under the License\n  -->\n\n<LinearLayout xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:id=\"@+id/status_bar_latest_event_content\"\n    android:layout_width=\"match_parent\"\n    android:layout_height=\"64dp\"\n    android:orientation=\"horizontal\"\n    >\n    <ImageView android:id=\"@+id/icon\"\n        android:layout_width=\"@dimen/notification_large_icon_width\"\n        android:layout_height=\"@dimen/notification_large_icon_width\"\n        android:scaleType=\"centerCrop\"\n        />\n    <include layout=\"@layout/notification_template_lines\"\n        android:layout_width=\"0dp\"\n        android:layout_height=\"wrap_content\"\n        android:layout_weight=\"1\"/>\n    <LinearLayout\n        android:id=\"@+id/media_actions\"\n        android:layout_width=\"wrap_content\"\n        android:layout_height=\"match_parent\"\n        android:layout_gravity=\"center_vertical|end\"\n        android:orientation=\"horizontal\"\n        android:layoutDirection=\"ltr\"\n        >\n        <!-- media buttons will be added here -->\n    </LinearLayout>\n    <include layout=\"@layout/notification_media_cancel_action\"\n        android:layout_width=\"48dp\"\n        android:layout_height=\"match_parent\"\n        android:layout_marginRight=\"6dp\"\n        android:layout_marginEnd=\"6dp\"/>\n    <ImageView android:id=\"@+id/end_padder\"\n        android:layout_width=\"6dp\"\n        android:layout_height=\"match_parent\"\n        />\n</LinearLayout>\n<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/layout/notification_template_media.xml -->"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/notification_template_part_chronometer.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!--\n  ~ Copyright (C) 2015 The Android Open Source Project\n  ~\n  ~ Licensed under the Apache License, Version 2.0 (the \"License\");\n  ~ you may not use this file except in compliance with the License.\n  ~ You may obtain a copy of the License at\n  ~\n  ~      http://www.apache.org/licenses/LICENSE-2.0\n  ~\n  ~ Unless required by applicable law or agreed to in writing, software\n  ~ distributed under the License is distributed on an \"AS IS\" BASIS,\n  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n  ~ See the License for the specific language governing permissions and\n  ~ limitations under the License\n  -->\n\n<Chronometer android:id=\"@+id/chronometer\" xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:textAppearance=\"@style/TextAppearance.StatusBar.EventContent.Time\"\n    android:layout_width=\"wrap_content\"\n    android:layout_height=\"wrap_content\"\n    android:layout_gravity=\"center\"\n    android:layout_weight=\"0\"\n    android:singleLine=\"true\"\n    android:gravity=\"center\"\n    android:paddingLeft=\"8dp\"\n    android:paddingStart=\"8dp\"\n    />\n<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/layout/notification_template_part_chronometer.xml -->"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/notification_template_part_time.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!--\n  ~ Copyright (C) 2015 The Android Open Source Project\n  ~\n  ~ Licensed under the Apache License, Version 2.0 (the \"License\");\n  ~ you may not use this file except in compliance with the License.\n  ~ You may obtain a copy of the License at\n  ~\n  ~      http://www.apache.org/licenses/LICENSE-2.0\n  ~\n  ~ Unless required by applicable law or agreed to in writing, software\n  ~ distributed under the License is distributed on an \"AS IS\" BASIS,\n  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n  ~ See the License for the specific language governing permissions and\n  ~ limitations under the License\n  -->\n\n<DateTimeView android:id=\"@+id/time\" xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:textAppearance=\"@style/TextAppearance.StatusBar.EventContent.Time\"\n    android:layout_width=\"wrap_content\"\n    android:layout_height=\"wrap_content\"\n    android:layout_gravity=\"center\"\n    android:layout_weight=\"0\"\n    android:singleLine=\"true\"\n    android:gravity=\"center\"\n    android:paddingLeft=\"8dp\"\n    android:paddingStart=\"8dp\"\n    />\n<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/layout/notification_template_part_time.xml -->"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/select_dialog_item_material.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!--\n     Copyright (C) 2014 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<!--\n    This layout file is used by the AlertDialog when displaying a list of items.\n    This layout file is inflated and used as the TextView to display individual\n    items.\n-->\n<TextView xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:id=\"@android:id/text1\"\n    android:layout_width=\"match_parent\"\n    android:layout_height=\"wrap_content\"\n    android:minHeight=\"?attr/listPreferredItemHeightSmall\"\n    android:textAppearance=\"?attr/textAppearanceListItemSmall\"\n    android:textColor=\"?attr/textColorAlertDialogListItem\"\n    android:gravity=\"center_vertical\"\n    android:paddingLeft=\"?attr/listPreferredItemPaddingLeft\"\n    android:paddingRight=\"?attr/listPreferredItemPaddingRight\"\n    android:ellipsize=\"marquee\" />\n<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/layout/select_dialog_item_material.xml -->"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/select_dialog_multichoice_material.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!--\n     Copyright (C) 2014 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<CheckedTextView xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:id=\"@android:id/text1\"\n    android:layout_width=\"match_parent\"\n    android:layout_height=\"wrap_content\"\n    android:minHeight=\"?attr/listPreferredItemHeightSmall\"\n    android:textAppearance=\"?android:attr/textAppearanceMedium\"\n    android:textColor=\"?attr/textColorAlertDialogListItem\"\n    android:gravity=\"center_vertical\"\n    android:paddingLeft=\"?attr/dialogPreferredPadding\"\n    android:paddingRight=\"?attr/dialogPreferredPadding\"\n    android:checkMark=\"?android:attr/listChoiceIndicatorMultiple\"\n    android:ellipsize=\"marquee\" />\n<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/layout/select_dialog_multichoice_material.xml -->"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/select_dialog_singlechoice_material.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!--\n     Copyright (C) 2014 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<CheckedTextView xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:id=\"@android:id/text1\"\n    android:layout_width=\"match_parent\"\n    android:layout_height=\"wrap_content\"\n    android:minHeight=\"?attr/listPreferredItemHeightSmall\"\n    android:textAppearance=\"?android:attr/textAppearanceMedium\"\n    android:textColor=\"?attr/textColorAlertDialogListItem\"\n    android:gravity=\"center_vertical\"\n    android:paddingLeft=\"?attr/dialogPreferredPadding\"\n    android:paddingRight=\"?attr/dialogPreferredPadding\"\n    android:checkMark=\"?android:attr/listChoiceIndicatorSingle\"\n    android:ellipsize=\"marquee\" />\n<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/layout/select_dialog_singlechoice_material.xml -->"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/support_simple_spinner_dropdown_item.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!--\n**\n** Copyright 2008, The Android Open Source Project\n**\n** Licensed under the Apache License, Version 2.0 (the \"License\"); \n** you may not use this file except in compliance with the License. \n** You may obtain a copy of the License at \n**\n**     http://www.apache.org/licenses/LICENSE-2.0 \n**\n** Unless required by applicable law or agreed to in writing, software \n** distributed under the License is distributed on an \"AS IS\" BASIS, \n** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. \n** See the License for the specific language governing permissions and \n** limitations under the License.\n*/\n-->\n<TextView xmlns:android=\"http://schemas.android.com/apk/res/android\"\n          android:id=\"@android:id/text1\"\n          style=\"?attr/spinnerDropDownItemStyle\"\n          android:singleLine=\"true\"\n          android:layout_width=\"match_parent\"\n          android:layout_height=\"?attr/dropdownListPreferredItemHeight\"\n          android:ellipsize=\"marquee\"/><!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/layout/support_simple_spinner_dropdown_item.xml -->"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values/attrs.xml -->\n    <eat-comment/>\n    <attr format=\"reference\" name=\"drawerArrowStyle\"/>\n    <attr format=\"dimension\" name=\"height\"/>\n    <attr format=\"boolean\" name=\"isLightTheme\"/>\n    <attr format=\"string\" name=\"title\"/>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values/bools.xml -->\n    <eat-comment/>\n    <bool name=\"abc_action_bar_embed_tabs\">true</bool>\n    <bool name=\"abc_action_bar_embed_tabs_pre_jb\">false</bool>\n    <bool name=\"abc_action_bar_expanded_action_views_exclusive\">true</bool>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values/config.xml -->\n    <eat-comment/>\n    <bool name=\"abc_config_actionMenuItemAllCaps\">true</bool>\n    <bool name=\"abc_config_allowActionMenuItemTextWithIcon\">false</bool>\n    <bool name=\"abc_config_closeDialogWhenTouchOutside\">true</bool>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values/bools.xml -->\n    <eat-comment/>\n    <bool name=\"abc_config_showMenuShortcutsWhenKeyboardPresent\">false</bool>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values/colors.xml -->\n    <eat-comment/>\n    <color name=\"abc_input_method_navigation_guard\">@android:color/black</color>\n    <color name=\"abc_search_url_text_normal\">#7fa87f</color>\n    <color name=\"abc_search_url_text_pressed\">@android:color/black</color>\n    <color name=\"abc_search_url_text_selected\">@android:color/black</color>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values/colors_material.xml -->\n    <eat-comment/>\n    <color name=\"accent_material_dark\">@color/material_deep_teal_200</color>\n    <color name=\"accent_material_light\">@color/material_deep_teal_500</color>\n    <color name=\"background_floating_material_dark\">@color/material_grey_800</color>\n    <color name=\"background_floating_material_light\">@android:color/white</color>\n    <color name=\"background_material_dark\">@color/material_grey_850</color>\n    <color name=\"background_material_light\">@color/material_grey_50</color>\n    <color name=\"bright_foreground_disabled_material_dark\">#80ffffff</color>\n    <color name=\"bright_foreground_disabled_material_light\">#80000000</color>\n    <color name=\"bright_foreground_inverse_material_dark\">@color/bright_foreground_material_light</color>\n    <color name=\"bright_foreground_inverse_material_light\">@color/bright_foreground_material_dark</color>\n    <color name=\"bright_foreground_material_dark\">@android:color/white</color>\n    <color name=\"bright_foreground_material_light\">@android:color/black</color>\n    <color name=\"button_material_dark\">#ff5a595b</color>\n    <color name=\"button_material_light\">#ffd6d7d7</color>\n    <color name=\"dim_foreground_disabled_material_dark\">#80bebebe</color>\n    <color name=\"dim_foreground_disabled_material_light\">#80323232</color>\n    <color name=\"dim_foreground_material_dark\">#ffbebebe</color>\n    <color name=\"dim_foreground_material_light\">#ff323232</color>\n    <color name=\"foreground_material_dark\">@android:color/white</color>\n    <color name=\"foreground_material_light\">@android:color/black</color>\n    <color name=\"highlighted_text_material_dark\">#6680cbc4</color>\n    <color name=\"highlighted_text_material_light\">#66009688</color>\n    <color name=\"hint_foreground_material_dark\">@color/bright_foreground_disabled_material_dark</color>\n    <color name=\"hint_foreground_material_light\">@color/bright_foreground_disabled_material_light</color>\n    <color name=\"material_blue_grey_800\">#ff37474f</color>\n    <color name=\"material_blue_grey_900\">#ff263238</color>\n    <color name=\"material_blue_grey_950\">#ff21272b</color>\n    <color name=\"material_deep_teal_200\">#ff80cbc4</color>\n    <color name=\"material_deep_teal_500\">#ff009688</color>\n    <color name=\"material_grey_100\">#fff5f5f5</color>\n    <color name=\"material_grey_300\">#ffe0e0e0</color>\n    <color name=\"material_grey_50\">#fffafafa</color>\n    <color name=\"material_grey_600\">#ff757575</color>\n    <color name=\"material_grey_800\">#ff424242</color>\n    <color name=\"material_grey_850\">#ff303030</color>\n    <color name=\"material_grey_900\">#ff212121</color>\n    <color name=\"primary_dark_material_dark\">@android:color/black</color>\n    <color name=\"primary_dark_material_light\">@color/material_grey_600</color>\n    <color name=\"primary_material_dark\">@color/material_grey_900</color>\n    <color name=\"primary_material_light\">@color/material_grey_100</color>\n    <color name=\"primary_text_default_material_dark\">#ffffffff</color>\n    <color name=\"primary_text_default_material_light\">#de000000</color>\n    <color name=\"primary_text_disabled_material_dark\">#4Dffffff</color>\n    <color name=\"primary_text_disabled_material_light\">#39000000</color>\n    <color name=\"ripple_material_dark\">#42ffffff</color>\n    <color name=\"ripple_material_light\">#1f000000</color>\n    <color name=\"secondary_text_default_material_dark\">#b3ffffff</color>\n    <color name=\"secondary_text_default_material_light\">#8a000000</color>\n    <color name=\"secondary_text_disabled_material_dark\">#36ffffff</color>\n    <color name=\"secondary_text_disabled_material_light\">#24000000</color>\n    <color name=\"switch_thumb_disabled_material_dark\">#ff616161</color>\n    <color name=\"switch_thumb_disabled_material_light\">#ffbdbdbd</color>\n    <color name=\"switch_thumb_normal_material_dark\">#ffbdbdbd</color>\n    <color name=\"switch_thumb_normal_material_light\">#fff1f1f1</color>\n    <declare-styleable name=\"ActionBar\"><attr name=\"navigationMode\"><enum name=\"normal\" value=\"0\"/><enum name=\"listMode\" value=\"1\"/><enum name=\"tabMode\" value=\"2\"/></attr><attr name=\"displayOptions\"><flag name=\"none\" value=\"0\"/><flag name=\"useLogo\" value=\"0x1\"/><flag name=\"showHome\" value=\"0x2\"/><flag name=\"homeAsUp\" value=\"0x4\"/><flag name=\"showTitle\" value=\"0x8\"/><flag name=\"showCustom\" value=\"0x10\"/><flag name=\"disableHome\" value=\"0x20\"/></attr><attr name=\"title\"/><attr format=\"string\" name=\"subtitle\"/><attr format=\"reference\" name=\"titleTextStyle\"/><attr format=\"reference\" name=\"subtitleTextStyle\"/><attr format=\"reference\" name=\"icon\"/><attr format=\"reference\" name=\"logo\"/><attr format=\"reference\" name=\"divider\"/><attr format=\"reference\" name=\"background\"/><attr format=\"reference|color\" name=\"backgroundStacked\"/><attr format=\"reference|color\" name=\"backgroundSplit\"/><attr format=\"reference\" name=\"customNavigationLayout\"/><attr name=\"height\"/><attr format=\"reference\" name=\"homeLayout\"/><attr format=\"reference\" name=\"progressBarStyle\"/><attr format=\"reference\" name=\"indeterminateProgressStyle\"/><attr format=\"dimension\" name=\"progressBarPadding\"/><attr name=\"homeAsUpIndicator\"/><attr format=\"dimension\" name=\"itemPadding\"/><attr format=\"boolean\" name=\"hideOnContentScroll\"/><attr format=\"dimension\" name=\"contentInsetStart\"/><attr format=\"dimension\" name=\"contentInsetEnd\"/><attr format=\"dimension\" name=\"contentInsetLeft\"/><attr format=\"dimension\" name=\"contentInsetRight\"/><attr format=\"dimension\" name=\"elevation\"/><attr format=\"reference\" name=\"popupTheme\"/></declare-styleable>\n    <declare-styleable name=\"ActionBarLayout\"><attr name=\"android:layout_gravity\"/></declare-styleable>\n    <declare-styleable name=\"ActionMenuItemView\"><attr name=\"android:minWidth\"/></declare-styleable>\n    <declare-styleable name=\"ActionMenuView\"/>\n    <declare-styleable name=\"ActionMode\"><attr name=\"titleTextStyle\"/><attr name=\"subtitleTextStyle\"/><attr name=\"background\"/><attr name=\"backgroundSplit\"/><attr name=\"height\"/><attr format=\"reference\" name=\"closeItemLayout\"/></declare-styleable>\n    <declare-styleable name=\"ActivityChooserView\"><attr format=\"string\" name=\"initialActivityCount\"/><attr format=\"reference\" name=\"expandActivityOverflowButtonDrawable\"/></declare-styleable>\n    <declare-styleable name=\"AlertDialog\"><attr name=\"android:layout\"/><attr format=\"reference\" name=\"buttonPanelSideLayout\"/><attr format=\"reference\" name=\"listLayout\"/><attr format=\"reference\" name=\"multiChoiceItemLayout\"/><attr format=\"reference\" name=\"singleChoiceItemLayout\"/><attr format=\"reference\" name=\"listItemLayout\"/></declare-styleable>\n    <declare-styleable name=\"AppCompatTextView\"><attr format=\"reference|boolean\" name=\"textAllCaps\"/><attr name=\"android:textAppearance\"/></declare-styleable>\n    <declare-styleable name=\"CompoundButton\"><attr name=\"android:button\"/><attr format=\"color\" name=\"buttonTint\"/><attr name=\"buttonTintMode\"><enum name=\"src_over\" value=\"3\"/><enum name=\"src_in\" value=\"5\"/><enum name=\"src_atop\" value=\"9\"/><enum name=\"multiply\" value=\"14\"/><enum name=\"screen\" value=\"15\"/></attr></declare-styleable>\n    <declare-styleable name=\"DrawerArrowToggle\"><attr format=\"color\" name=\"color\"/><attr format=\"boolean\" name=\"spinBars\"/><attr format=\"dimension\" name=\"drawableSize\"/><attr format=\"dimension\" name=\"gapBetweenBars\"/><attr format=\"dimension\" name=\"arrowHeadLength\"/><attr format=\"dimension\" name=\"arrowShaftLength\"/><attr format=\"dimension\" name=\"barLength\"/><attr format=\"dimension\" name=\"thickness\"/></declare-styleable>\n    <declare-styleable name=\"LinearLayoutCompat\"><attr name=\"android:orientation\"/><attr name=\"android:gravity\"/><attr name=\"android:baselineAligned\"/><attr name=\"android:baselineAlignedChildIndex\"/><attr name=\"android:weightSum\"/><attr format=\"boolean\" name=\"measureWithLargestChild\"/><attr name=\"divider\"/><attr name=\"showDividers\"><flag name=\"none\" value=\"0\"/><flag name=\"beginning\" value=\"1\"/><flag name=\"middle\" value=\"2\"/><flag name=\"end\" value=\"4\"/></attr><attr format=\"dimension\" name=\"dividerPadding\"/></declare-styleable>\n    <declare-styleable name=\"LinearLayoutCompat_Layout\"><attr name=\"android:layout_width\"/><attr name=\"android:layout_height\"/><attr name=\"android:layout_weight\"/><attr name=\"android:layout_gravity\"/></declare-styleable>\n    <declare-styleable name=\"ListPopupWindow\"><attr name=\"android:dropDownVerticalOffset\"/><attr name=\"android:dropDownHorizontalOffset\"/></declare-styleable>\n    <declare-styleable name=\"MenuGroup\"><attr name=\"android:id\"/><attr name=\"android:menuCategory\"/><attr name=\"android:orderInCategory\"/><attr name=\"android:checkableBehavior\"/><attr name=\"android:visible\"/><attr name=\"android:enabled\"/></declare-styleable>\n    <declare-styleable name=\"MenuItem\"><attr name=\"android:id\"/><attr name=\"android:menuCategory\"/><attr name=\"android:orderInCategory\"/><attr name=\"android:title\"/><attr name=\"android:titleCondensed\"/><attr name=\"android:icon\"/><attr name=\"android:alphabeticShortcut\"/><attr name=\"android:numericShortcut\"/><attr name=\"android:checkable\"/><attr name=\"android:checked\"/><attr name=\"android:visible\"/><attr name=\"android:enabled\"/><attr name=\"android:onClick\"/><attr name=\"showAsAction\"><flag name=\"never\" value=\"0\"/><flag name=\"ifRoom\" value=\"1\"/><flag name=\"always\" value=\"2\"/><flag name=\"withText\" value=\"4\"/><flag name=\"collapseActionView\" value=\"8\"/></attr><attr format=\"reference\" name=\"actionLayout\"/><attr format=\"string\" name=\"actionViewClass\"/><attr format=\"string\" name=\"actionProviderClass\"/></declare-styleable>\n    <declare-styleable name=\"MenuView\"><attr name=\"android:itemTextAppearance\"/><attr name=\"android:horizontalDivider\"/><attr name=\"android:verticalDivider\"/><attr name=\"android:headerBackground\"/><attr name=\"android:itemBackground\"/><attr name=\"android:windowAnimationStyle\"/><attr name=\"android:itemIconDisabledAlpha\"/><attr format=\"boolean\" name=\"preserveIconSpacing\"/></declare-styleable>\n    <declare-styleable name=\"PopupWindow\"><attr format=\"boolean\" name=\"overlapAnchor\"/><attr name=\"android:popupBackground\"/></declare-styleable>\n    <declare-styleable name=\"PopupWindowBackgroundState\"><attr format=\"boolean\" name=\"state_above_anchor\"/></declare-styleable>\n    <declare-styleable name=\"SearchView\"><attr format=\"reference\" name=\"layout\"/><attr format=\"boolean\" name=\"iconifiedByDefault\"/><attr name=\"android:maxWidth\"/><attr format=\"string\" name=\"queryHint\"/><attr format=\"string\" name=\"defaultQueryHint\"/><attr name=\"android:imeOptions\"/><attr name=\"android:inputType\"/><attr format=\"reference\" name=\"closeIcon\"/><attr format=\"reference\" name=\"goIcon\"/><attr format=\"reference\" name=\"searchIcon\"/><attr format=\"reference\" name=\"searchHintIcon\"/><attr format=\"reference\" name=\"voiceIcon\"/><attr format=\"reference\" name=\"commitIcon\"/><attr format=\"reference\" name=\"suggestionRowLayout\"/><attr format=\"reference\" name=\"queryBackground\"/><attr format=\"reference\" name=\"submitBackground\"/><attr name=\"android:focusable\"/></declare-styleable>\n    <declare-styleable name=\"Spinner\"><attr name=\"android:prompt\"/><attr name=\"popupTheme\"/><attr name=\"android:popupBackground\"/><attr name=\"android:dropDownWidth\"/></declare-styleable>\n    <declare-styleable name=\"SwitchCompat\"><attr name=\"android:thumb\"/><attr format=\"reference\" name=\"track\"/><attr name=\"android:textOn\"/><attr name=\"android:textOff\"/><attr format=\"dimension\" name=\"thumbTextPadding\"/><attr format=\"reference\" name=\"switchTextAppearance\"/><attr format=\"dimension\" name=\"switchMinWidth\"/><attr format=\"dimension\" name=\"switchPadding\"/><attr format=\"boolean\" name=\"splitTrack\"/><attr format=\"boolean\" name=\"showText\"/></declare-styleable>\n    <declare-styleable name=\"TextAppearance\"><attr name=\"android:textSize\"/><attr name=\"android:textColor\"/><attr name=\"android:textStyle\"/><attr name=\"android:typeface\"/><attr name=\"textAllCaps\"/></declare-styleable>\n    <declare-styleable name=\"Theme\"><attr format=\"boolean\" name=\"windowActionBar\"/><attr format=\"boolean\" name=\"windowNoTitle\"/><attr format=\"boolean\" name=\"windowActionBarOverlay\"/><attr format=\"boolean\" name=\"windowActionModeOverlay\"/><attr format=\"dimension|fraction\" name=\"windowFixedWidthMajor\"/><attr format=\"dimension|fraction\" name=\"windowFixedHeightMinor\"/><attr format=\"dimension|fraction\" name=\"windowFixedWidthMinor\"/><attr format=\"dimension|fraction\" name=\"windowFixedHeightMajor\"/><attr format=\"dimension|fraction\" name=\"windowMinWidthMajor\"/><attr format=\"dimension|fraction\" name=\"windowMinWidthMinor\"/><attr name=\"android:windowIsFloating\"/><attr name=\"android:windowAnimationStyle\"/><attr format=\"reference\" name=\"actionBarTabStyle\"/><attr format=\"reference\" name=\"actionBarTabBarStyle\"/><attr format=\"reference\" name=\"actionBarTabTextStyle\"/><attr format=\"reference\" name=\"actionOverflowButtonStyle\"/><attr format=\"reference\" name=\"actionOverflowMenuStyle\"/><attr format=\"reference\" name=\"actionBarPopupTheme\"/><attr format=\"reference\" name=\"actionBarStyle\"/><attr format=\"reference\" name=\"actionBarSplitStyle\"/><attr format=\"reference\" name=\"actionBarTheme\"/><attr format=\"reference\" name=\"actionBarWidgetTheme\"/><attr format=\"dimension\" name=\"actionBarSize\"><enum name=\"wrap_content\" value=\"0\"/></attr><attr format=\"reference\" name=\"actionBarDivider\"/><attr format=\"reference\" name=\"actionBarItemBackground\"/><attr format=\"reference\" name=\"actionMenuTextAppearance\"/><attr format=\"color|reference\" name=\"actionMenuTextColor\"/><attr format=\"reference\" name=\"actionModeStyle\"/><attr format=\"reference\" name=\"actionModeCloseButtonStyle\"/><attr format=\"reference\" name=\"actionModeBackground\"/><attr format=\"reference\" name=\"actionModeSplitBackground\"/><attr format=\"reference\" name=\"actionModeCloseDrawable\"/><attr format=\"reference\" name=\"actionModeCutDrawable\"/><attr format=\"reference\" name=\"actionModeCopyDrawable\"/><attr format=\"reference\" name=\"actionModePasteDrawable\"/><attr format=\"reference\" name=\"actionModeSelectAllDrawable\"/><attr format=\"reference\" name=\"actionModeShareDrawable\"/><attr format=\"reference\" name=\"actionModeFindDrawable\"/><attr format=\"reference\" name=\"actionModeWebSearchDrawable\"/><attr format=\"reference\" name=\"actionModePopupWindowStyle\"/><attr format=\"reference\" name=\"textAppearanceLargePopupMenu\"/><attr format=\"reference\" name=\"textAppearanceSmallPopupMenu\"/><attr format=\"reference\" name=\"dialogTheme\"/><attr format=\"dimension\" name=\"dialogPreferredPadding\"/><attr format=\"reference\" name=\"listDividerAlertDialog\"/><attr format=\"reference\" name=\"actionDropDownStyle\"/><attr format=\"dimension\" name=\"dropdownListPreferredItemHeight\"/><attr format=\"reference\" name=\"spinnerDropDownItemStyle\"/><attr format=\"reference\" name=\"homeAsUpIndicator\"/><attr format=\"reference\" name=\"actionButtonStyle\"/><attr format=\"reference\" name=\"buttonBarStyle\"/><attr format=\"reference\" name=\"buttonBarButtonStyle\"/><attr format=\"reference\" name=\"selectableItemBackground\"/><attr format=\"reference\" name=\"selectableItemBackgroundBorderless\"/><attr format=\"reference\" name=\"borderlessButtonStyle\"/><attr format=\"reference\" name=\"dividerVertical\"/><attr format=\"reference\" name=\"dividerHorizontal\"/><attr format=\"reference\" name=\"activityChooserViewStyle\"/><attr format=\"reference\" name=\"toolbarStyle\"/><attr format=\"reference\" name=\"toolbarNavigationButtonStyle\"/><attr format=\"reference\" name=\"popupMenuStyle\"/><attr format=\"reference\" name=\"popupWindowStyle\"/><attr format=\"reference|color\" name=\"editTextColor\"/><attr format=\"reference\" name=\"editTextBackground\"/><attr format=\"reference\" name=\"textAppearanceSearchResultTitle\"/><attr format=\"reference\" name=\"textAppearanceSearchResultSubtitle\"/><attr format=\"reference|color\" name=\"textColorSearchUrl\"/><attr format=\"reference\" name=\"searchViewStyle\"/><attr format=\"dimension\" name=\"listPreferredItemHeight\"/><attr format=\"dimension\" name=\"listPreferredItemHeightSmall\"/><attr format=\"dimension\" name=\"listPreferredItemHeightLarge\"/><attr format=\"dimension\" name=\"listPreferredItemPaddingLeft\"/><attr format=\"dimension\" name=\"listPreferredItemPaddingRight\"/><attr format=\"reference\" name=\"dropDownListViewStyle\"/><attr format=\"reference\" name=\"listPopupWindowStyle\"/><attr format=\"reference\" name=\"textAppearanceListItem\"/><attr format=\"reference\" name=\"textAppearanceListItemSmall\"/><attr format=\"reference\" name=\"panelBackground\"/><attr format=\"dimension\" name=\"panelMenuListWidth\"/><attr format=\"reference\" name=\"panelMenuListTheme\"/><attr format=\"reference\" name=\"listChoiceBackgroundIndicator\"/><attr format=\"color\" name=\"colorPrimary\"/><attr format=\"color\" name=\"colorPrimaryDark\"/><attr format=\"color\" name=\"colorAccent\"/><attr format=\"color\" name=\"colorControlNormal\"/><attr format=\"color\" name=\"colorControlActivated\"/><attr format=\"color\" name=\"colorControlHighlight\"/><attr format=\"color\" name=\"colorButtonNormal\"/><attr format=\"color\" name=\"colorSwitchThumbNormal\"/><attr format=\"reference\" name=\"controlBackground\"/><attr format=\"reference\" name=\"alertDialogStyle\"/><attr format=\"reference\" name=\"alertDialogButtonGroupStyle\"/><attr format=\"boolean\" name=\"alertDialogCenterButtons\"/><attr format=\"reference\" name=\"alertDialogTheme\"/><attr format=\"reference|color\" name=\"textColorAlertDialogListItem\"/><attr format=\"reference\" name=\"buttonBarPositiveButtonStyle\"/><attr format=\"reference\" name=\"buttonBarNegativeButtonStyle\"/><attr format=\"reference\" name=\"buttonBarNeutralButtonStyle\"/><attr format=\"reference\" name=\"autoCompleteTextViewStyle\"/><attr format=\"reference\" name=\"buttonStyle\"/><attr format=\"reference\" name=\"buttonStyleSmall\"/><attr format=\"reference\" name=\"checkboxStyle\"/><attr format=\"reference\" name=\"checkedTextViewStyle\"/><attr format=\"reference\" name=\"editTextStyle\"/><attr format=\"reference\" name=\"radioButtonStyle\"/><attr format=\"reference\" name=\"ratingBarStyle\"/><attr format=\"reference\" name=\"spinnerStyle\"/><attr format=\"reference\" name=\"switchStyle\"/></declare-styleable>\n    <declare-styleable name=\"Toolbar\"><attr format=\"reference\" name=\"titleTextAppearance\"/><attr format=\"reference\" name=\"subtitleTextAppearance\"/><attr name=\"title\"/><attr name=\"subtitle\"/><attr name=\"android:gravity\"/><attr format=\"dimension\" name=\"titleMargins\"/><attr format=\"dimension\" name=\"titleMarginStart\"/><attr format=\"dimension\" name=\"titleMarginEnd\"/><attr format=\"dimension\" name=\"titleMarginTop\"/><attr format=\"dimension\" name=\"titleMarginBottom\"/><attr name=\"contentInsetStart\"/><attr name=\"contentInsetEnd\"/><attr name=\"contentInsetLeft\"/><attr name=\"contentInsetRight\"/><attr format=\"dimension\" name=\"maxButtonHeight\"/><attr format=\"reference\" name=\"collapseIcon\"/><attr format=\"string\" name=\"collapseContentDescription\"/><attr name=\"popupTheme\"/><attr format=\"reference\" name=\"navigationIcon\"/><attr format=\"string\" name=\"navigationContentDescription\"/><attr name=\"android:minHeight\"/><attr name=\"logo\"/><attr format=\"string\" name=\"logoDescription\"/><attr format=\"color\" name=\"titleTextColor\"/><attr format=\"color\" name=\"subtitleTextColor\"/></declare-styleable>\n    <declare-styleable name=\"View\"><attr format=\"dimension\" name=\"paddingStart\"/><attr format=\"dimension\" name=\"paddingEnd\"/><attr name=\"android:focusable\"/><attr format=\"reference\" name=\"theme\"/><attr name=\"android:theme\"/></declare-styleable>\n    <declare-styleable name=\"ViewBackgroundHelper\"><attr name=\"android:background\"/><attr format=\"color\" name=\"backgroundTint\"/><attr name=\"backgroundTintMode\"><enum name=\"src_over\" value=\"3\"/><enum name=\"src_in\" value=\"5\"/><enum name=\"src_atop\" value=\"9\"/><enum name=\"multiply\" value=\"14\"/><enum name=\"screen\" value=\"15\"/></attr></declare-styleable>\n    <declare-styleable name=\"ViewStubCompat\"><attr name=\"android:layout\"/><attr name=\"android:inflatedId\"/><attr name=\"android:id\"/></declare-styleable>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values/dimens_material.xml -->\n    <eat-comment/>\n    <dimen name=\"abc_action_bar_content_inset_material\">16dp</dimen>\n    <dimen name=\"abc_action_bar_default_height_material\">56dp</dimen>\n    <dimen name=\"abc_action_bar_default_padding_end_material\">0dp</dimen>\n    <dimen name=\"abc_action_bar_default_padding_start_material\">0dp</dimen>\n    <dimen name=\"abc_action_bar_icon_vertical_padding_material\">16dp</dimen>\n    <dimen name=\"abc_action_bar_overflow_padding_end_material\">10dp</dimen>\n    <dimen name=\"abc_action_bar_overflow_padding_start_material\">6dp</dimen>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values/dimens.xml -->\n    <eat-comment/>\n    <dimen name=\"abc_action_bar_progress_bar_size\">40dp</dimen>\n    <dimen name=\"abc_action_bar_stacked_max_height\">48dp</dimen>\n    <dimen name=\"abc_action_bar_stacked_tab_max_width\">180dp</dimen>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values/dimens_material.xml -->\n    <eat-comment/>\n    <dimen name=\"abc_action_bar_subtitle_bottom_margin_material\">5dp</dimen>\n    <dimen name=\"abc_action_bar_subtitle_top_margin_material\">-3dp</dimen>\n    <dimen name=\"abc_action_button_min_height_material\">48dp</dimen>\n    <dimen name=\"abc_action_button_min_width_material\">48dp</dimen>\n    <dimen name=\"abc_action_button_min_width_overflow_material\">36dp</dimen>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values/dimens.xml -->\n    <eat-comment/>\n    <dimen name=\"abc_alert_dialog_button_bar_height\">48dp</dimen>\n    <dimen name=\"abc_button_inset_horizontal_material\">@dimen/abc_control_inset_material</dimen>\n    <dimen name=\"abc_button_inset_vertical_material\">6dp</dimen>\n    <dimen name=\"abc_button_padding_horizontal_material\">8dp</dimen>\n    <dimen name=\"abc_button_padding_vertical_material\">@dimen/abc_control_padding_material</dimen>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values/config.xml -->\n    <eat-comment/>\n    <dimen name=\"abc_config_prefDialogWidth\">320dp</dimen>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values/dimens.xml -->\n    <eat-comment/>\n    <dimen name=\"abc_control_corner_material\">2dp</dimen>\n    <dimen name=\"abc_control_inset_material\">4dp</dimen>\n    <dimen name=\"abc_control_padding_material\">4dp</dimen>\n    <dimen name=\"abc_dialog_list_padding_vertical_material\">8dp</dimen>\n    <item name=\"abc_dialog_min_width_major\" type=\"dimen\">65%</item>\n    <item name=\"abc_dialog_min_width_minor\" type=\"dimen\">95%</item>\n    <dimen name=\"abc_dialog_padding_material\">24dp</dimen>\n    <dimen name=\"abc_dialog_padding_top_material\">18dp</dimen>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values/dimens_material.xml -->\n    <eat-comment/>\n    <item format=\"float\" name=\"abc_disabled_alpha_material_dark\" type=\"dimen\">0.30</item>\n    <item format=\"float\" name=\"abc_disabled_alpha_material_light\" type=\"dimen\">0.26</item>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values/dimens.xml -->\n    <eat-comment/>\n    <dimen name=\"abc_dropdownitem_icon_width\">32dip</dimen>\n    <dimen name=\"abc_dropdownitem_text_padding_left\">8dip</dimen>\n    <dimen name=\"abc_dropdownitem_text_padding_right\">8dip</dimen>\n    <dimen name=\"abc_edit_text_inset_bottom_material\">7dp</dimen>\n    <dimen name=\"abc_edit_text_inset_horizontal_material\">4dp</dimen>\n    <dimen name=\"abc_edit_text_inset_top_material\">10dp</dimen>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values/dimens_material.xml -->\n    <eat-comment/>\n    <dimen name=\"abc_floating_window_z\">16dp</dimen>\n    <dimen name=\"abc_list_item_padding_horizontal_material\">@dimen/abc_action_bar_content_inset_material</dimen>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values/dimens.xml -->\n    <eat-comment/>\n    <dimen name=\"abc_panel_menu_list_width\">296dp</dimen>\n    <dimen name=\"abc_search_view_preferred_width\">320dip</dimen>\n    <dimen name=\"abc_search_view_text_min_width\">160dip</dimen>\n    <dimen name=\"abc_switch_padding\">3dp</dimen>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values/dimens_material.xml -->\n    <eat-comment/>\n    <dimen name=\"abc_text_size_body_1_material\">14sp</dimen>\n    <dimen name=\"abc_text_size_body_2_material\">14sp</dimen>\n    <dimen name=\"abc_text_size_button_material\">14sp</dimen>\n    <dimen name=\"abc_text_size_caption_material\">12sp</dimen>\n    <dimen name=\"abc_text_size_display_1_material\">34sp</dimen>\n    <dimen name=\"abc_text_size_display_2_material\">45sp</dimen>\n    <dimen name=\"abc_text_size_display_3_material\">56sp</dimen>\n    <dimen name=\"abc_text_size_display_4_material\">112sp</dimen>\n    <dimen name=\"abc_text_size_headline_material\">24sp</dimen>\n    <dimen name=\"abc_text_size_large_material\">22sp</dimen>\n    <dimen name=\"abc_text_size_medium_material\">18sp</dimen>\n    <dimen name=\"abc_text_size_menu_material\">16sp</dimen>\n    <dimen name=\"abc_text_size_small_material\">14sp</dimen>\n    <dimen name=\"abc_text_size_subhead_material\">16sp</dimen>\n    <dimen name=\"abc_text_size_subtitle_material_toolbar\">16dp</dimen>\n    <dimen name=\"abc_text_size_title_material\">20sp</dimen>\n    <dimen name=\"abc_text_size_title_material_toolbar\">20dp</dimen>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values/dimens.xml -->\n    <eat-comment/>\n    <item name=\"dialog_fixed_height_major\" type=\"dimen\">80%</item>\n    <item name=\"dialog_fixed_height_minor\" type=\"dimen\">100%</item>\n    <item name=\"dialog_fixed_width_major\" type=\"dimen\">320dp</item>\n    <item name=\"dialog_fixed_width_minor\" type=\"dimen\">320dp</item>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values/colors_material.xml -->\n    <eat-comment/>\n    <item format=\"float\" name=\"disabled_alpha_material_dark\" type=\"dimen\">0.30</item>\n    <item format=\"float\" name=\"disabled_alpha_material_light\" type=\"dimen\">0.26</item>\n    <item format=\"float\" name=\"highlight_alpha_material_colored\" type=\"dimen\">0.26</item>\n    <item format=\"float\" name=\"highlight_alpha_material_dark\" type=\"dimen\">0.20</item>\n    <item format=\"float\" name=\"highlight_alpha_material_light\" type=\"dimen\">0.12</item>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values/dimens.xml -->\n    <eat-comment/>\n    <dimen name=\"notification_large_icon_height\">64dp</dimen>\n    <dimen name=\"notification_large_icon_width\">64dp</dimen>\n    <dimen name=\"notification_subtext_size\">12dp</dimen>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values/colors.xml -->\n    <eat-comment/>\n    <drawable name=\"notification_template_icon_bg\">#3333B5E5</drawable>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values/ids.xml -->\n    <eat-comment/>\n    <item name=\"action_bar_activity_content\" type=\"id\"/>\n    <item name=\"action_bar_spinner\" type=\"id\"/>\n    <item name=\"action_menu_divider\" type=\"id\"/>\n    <item name=\"action_menu_presenter\" type=\"id\"/>\n    <item name=\"home\" type=\"id\"/>\n    <item name=\"progress_circular\" type=\"id\"/>\n    <item name=\"progress_horizontal\" type=\"id\"/>\n    <item name=\"split_action_bar\" type=\"id\"/>\n    <item name=\"up\" type=\"id\"/>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values/config.xml -->\n    <eat-comment/>\n    <integer name=\"abc_config_activityDefaultDur\">220</integer>\n    <integer name=\"abc_config_activityShortDur\">150</integer>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values/dimens.xml -->\n    <eat-comment/>\n    <integer name=\"abc_max_action_buttons\">2</integer>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values/config.xml -->\n    <eat-comment/>\n    <integer name=\"cancel_button_image_alpha\">127</integer>\n    <integer name=\"status_bar_notification_info_maxnum\">999</integer>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values/strings.xml -->\n    <eat-comment/>\n    <string name=\"abc_action_bar_home_description\">Navigate home</string>\n    <string name=\"abc_action_bar_home_description_format\">%1$s, %2$s</string>\n    <string name=\"abc_action_bar_home_subtitle_description_format\">%1$s, %2$s, %3$s</string>\n    <string name=\"abc_action_bar_up_description\">Navigate up</string>\n    <string name=\"abc_action_menu_overflow_description\">More options</string>\n    <string name=\"abc_action_mode_done\">Done</string>\n    <string name=\"abc_activity_chooser_view_see_all\">See all</string>\n    <string name=\"abc_activitychooserview_choose_application\">Choose an app</string>\n    <string name=\"abc_search_hint\">Search…</string>\n    <string name=\"abc_searchview_description_clear\">Clear query</string>\n    <string name=\"abc_searchview_description_query\">Search query</string>\n    <string name=\"abc_searchview_description_search\">Search</string>\n    <string name=\"abc_searchview_description_submit\">Submit query</string>\n    <string name=\"abc_searchview_description_voice\">Voice search</string>\n    <string name=\"abc_shareactionprovider_share_with\">Share with</string>\n    <string name=\"abc_shareactionprovider_share_with_application\">Share with %s</string>\n    <string name=\"abc_toolbar_collapse_description\">Collapse</string>\n    <string name=\"status_bar_notification_info_overflow\">999+</string>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values/styles.xml -->\n    <eat-comment/>\n    <style name=\"AlertDialog.AppCompat\" parent=\"Base.AlertDialog.AppCompat\"/>\n    <style name=\"AlertDialog.AppCompat.Light\" parent=\"Base.AlertDialog.AppCompat.Light\"/>\n    <style name=\"Animation.AppCompat.Dialog\" parent=\"Base.Animation.AppCompat.Dialog\"/>\n    <style name=\"Animation.AppCompat.DropDownUp\" parent=\"Base.Animation.AppCompat.DropDownUp\"/>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values/styles_base.xml -->\n    <eat-comment/>\n    <style name=\"Base.AlertDialog.AppCompat\" parent=\"android:Widget\">\n        <item name=\"android:layout\">@layout/abc_alert_dialog_material</item>\n        <item name=\"listLayout\">@layout/abc_select_dialog_material</item>\n        <item name=\"listItemLayout\">@layout/select_dialog_item_material</item>\n        <item name=\"multiChoiceItemLayout\">@layout/select_dialog_multichoice_material</item>\n        <item name=\"singleChoiceItemLayout\">@layout/select_dialog_singlechoice_material</item>\n    </style>\n    <style name=\"Base.AlertDialog.AppCompat.Light\" parent=\"Base.AlertDialog.AppCompat\"/>\n    <style name=\"Base.Animation.AppCompat.Dialog\" parent=\"android:Animation\">\n        <item name=\"android:windowEnterAnimation\">@anim/abc_popup_enter</item>\n        <item name=\"android:windowExitAnimation\">@anim/abc_popup_exit</item>\n    </style>\n    <style name=\"Base.Animation.AppCompat.DropDownUp\" parent=\"android:Animation\">\n        <item name=\"android:windowEnterAnimation\">@anim/abc_grow_fade_in_from_bottom</item>\n        <item name=\"android:windowExitAnimation\">@anim/abc_shrink_fade_out_from_bottom</item>\n    </style>\n    <style name=\"Base.DialogWindowTitle.AppCompat\" parent=\"android:Widget\">\n        <item name=\"android:maxLines\">1</item>\n        <item name=\"android:scrollHorizontally\">true</item>\n        <item name=\"android:textAppearance\">@style/TextAppearance.AppCompat.Title</item>\n    </style>\n    <style name=\"Base.DialogWindowTitleBackground.AppCompat\" parent=\"android:Widget\">\n        <item name=\"android:background\">@null</item>\n        <item name=\"android:paddingLeft\">?attr/dialogPreferredPadding</item>\n        <item name=\"android:paddingRight\">?attr/dialogPreferredPadding</item>\n        <item name=\"android:paddingTop\">@dimen/abc_dialog_padding_top_material</item>\n    </style>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values/styles_base_text.xml -->\n    <eat-comment/>\n    <style name=\"Base.TextAppearance.AppCompat\" parent=\"android:TextAppearance\">\n        <item name=\"android:textColor\">?android:textColorPrimary</item>\n        <item name=\"android:textColorHint\">?android:textColorHint</item>\n        <item name=\"android:textColorHighlight\">?android:textColorHighlight</item>\n        <item name=\"android:textColorLink\">?android:textColorLink</item>\n        <item name=\"android:textSize\">@dimen/abc_text_size_body_1_material</item>\n    </style>\n    <style name=\"Base.TextAppearance.AppCompat.Body1\">\n        <item name=\"android:textSize\">@dimen/abc_text_size_body_1_material</item>\n        <item name=\"android:textColor\">?android:textColorPrimary</item>\n    </style>\n    <style name=\"Base.TextAppearance.AppCompat.Body2\">\n        <item name=\"android:textSize\">@dimen/abc_text_size_body_2_material</item>\n        <item name=\"android:textColor\">?android:textColorPrimary</item>\n    </style>\n    <style name=\"Base.TextAppearance.AppCompat.Button\">\n        <item name=\"android:textSize\">@dimen/abc_text_size_button_material</item>\n        <item name=\"textAllCaps\">true</item>\n        <item name=\"android:textColor\">?android:textColorPrimary</item>\n    </style>\n    <style name=\"Base.TextAppearance.AppCompat.Caption\">\n        <item name=\"android:textSize\">@dimen/abc_text_size_caption_material</item>\n        <item name=\"android:textColor\">?android:textColorSecondary</item>\n    </style>\n    <style name=\"Base.TextAppearance.AppCompat.Display1\">\n        <item name=\"android:textSize\">@dimen/abc_text_size_display_1_material</item>\n        <item name=\"android:textColor\">?android:textColorSecondary</item>\n    </style>\n    <style name=\"Base.TextAppearance.AppCompat.Display2\">\n        <item name=\"android:textSize\">@dimen/abc_text_size_display_2_material</item>\n        <item name=\"android:textColor\">?android:textColorSecondary</item>\n    </style>\n    <style name=\"Base.TextAppearance.AppCompat.Display3\">\n        <item name=\"android:textSize\">@dimen/abc_text_size_display_3_material</item>\n        <item name=\"android:textColor\">?android:textColorSecondary</item>\n    </style>\n    <style name=\"Base.TextAppearance.AppCompat.Display4\">\n        <item name=\"android:textSize\">@dimen/abc_text_size_display_4_material</item>\n        <item name=\"android:textColor\">?android:textColorSecondary</item>\n    </style>\n    <style name=\"Base.TextAppearance.AppCompat.Headline\">\n        <item name=\"android:textSize\">@dimen/abc_text_size_headline_material</item>\n        <item name=\"android:textColor\">?android:textColorPrimary</item>\n    </style>\n    <style name=\"Base.TextAppearance.AppCompat.Inverse\">\n        <item name=\"android:textColor\">?android:attr/textColorPrimaryInverse</item>\n        <item name=\"android:textColorHint\">?android:attr/textColorHintInverse</item>\n    </style>\n    <style name=\"Base.TextAppearance.AppCompat.Large\">\n        <item name=\"android:textSize\">@dimen/abc_text_size_large_material</item>\n        <item name=\"android:textColor\">?android:attr/textColorPrimary</item>\n    </style>\n    <style name=\"Base.TextAppearance.AppCompat.Large.Inverse\">\n        <item name=\"android:textColor\">?android:attr/textColorPrimaryInverse</item>\n        <item name=\"android:textColorHint\">?android:attr/textColorHintInverse</item>\n    </style>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values/styles_base.xml -->\n    <eat-comment/>\n    <style name=\"Base.TextAppearance.AppCompat.Light.Widget.PopupMenu.Large\" parent=\"TextAppearance.AppCompat.Menu\">\n    </style>\n    <style name=\"Base.TextAppearance.AppCompat.Light.Widget.PopupMenu.Small\" parent=\"TextAppearance.AppCompat.Menu\">\n    </style>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values/styles_base_text.xml -->\n    <eat-comment/>\n    <style name=\"Base.TextAppearance.AppCompat.Medium\">\n        <item name=\"android:textSize\">@dimen/abc_text_size_medium_material</item>\n        <item name=\"android:textColor\">?android:attr/textColorSecondary</item>\n    </style>\n    <style name=\"Base.TextAppearance.AppCompat.Medium.Inverse\">\n        <item name=\"android:textColor\">?android:attr/textColorSecondaryInverse</item>\n        <item name=\"android:textColorHint\">?android:attr/textColorHintInverse</item>\n    </style>\n    <style name=\"Base.TextAppearance.AppCompat.Menu\">\n        <item name=\"android:textSize\">@dimen/abc_text_size_menu_material</item>\n        <item name=\"android:textColor\">?android:textColorPrimary</item>\n    </style>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values/styles_base.xml -->\n    <eat-comment/>\n    <style name=\"Base.TextAppearance.AppCompat.SearchResult\" parent=\"\">\n        <item name=\"android:textStyle\">normal</item>\n        <item name=\"android:textColor\">?android:textColorPrimary</item>\n        <item name=\"android:textColorHint\">?android:textColorHint</item>\n    </style>\n    <style name=\"Base.TextAppearance.AppCompat.SearchResult.Subtitle\">\n        <item name=\"android:textSize\">14sp</item>\n        <item name=\"android:textColor\">?android:textColorSecondary</item>\n    </style>\n    <style name=\"Base.TextAppearance.AppCompat.SearchResult.Title\">\n        <item name=\"android:textSize\">18sp</item>\n    </style>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values/styles_base_text.xml -->\n    <eat-comment/>\n    <style name=\"Base.TextAppearance.AppCompat.Small\">\n        <item name=\"android:textSize\">@dimen/abc_text_size_small_material</item>\n        <item name=\"android:textColor\">?android:attr/textColorTertiary</item>\n    </style>\n    <style name=\"Base.TextAppearance.AppCompat.Small.Inverse\">\n        <item name=\"android:textColor\">?android:attr/textColorTertiaryInverse</item>\n        <item name=\"android:textColorHint\">?android:attr/textColorHintInverse</item>\n    </style>\n    <style name=\"Base.TextAppearance.AppCompat.Subhead\">\n        <item name=\"android:textSize\">@dimen/abc_text_size_subhead_material</item>\n        <item name=\"android:textColor\">?android:textColorPrimary</item>\n    </style>\n    <style name=\"Base.TextAppearance.AppCompat.Subhead.Inverse\">\n        <item name=\"android:textColor\">?android:attr/textColorPrimaryInverse</item>\n        <item name=\"android:textColorHint\">?android:attr/textColorHintInverse</item>\n    </style>\n    <style name=\"Base.TextAppearance.AppCompat.Title\">\n        <item name=\"android:textSize\">@dimen/abc_text_size_title_material</item>\n        <item name=\"android:textColor\">?android:textColorPrimary</item>\n    </style>\n    <style name=\"Base.TextAppearance.AppCompat.Title.Inverse\">\n        <item name=\"android:textColor\">?android:attr/textColorPrimaryInverse</item>\n        <item name=\"android:textColorHint\">?android:attr/textColorHintInverse</item>\n    </style>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values/styles_base.xml -->\n    <eat-comment/>\n    <style name=\"Base.TextAppearance.AppCompat.Widget.ActionBar.Menu\" parent=\"TextAppearance.AppCompat.Menu\">\n        <item name=\"android:textColor\">?attr/actionMenuTextColor</item>\n        <item name=\"textAllCaps\">@bool/abc_config_actionMenuItemAllCaps</item>\n    </style>\n    <style name=\"Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle\" parent=\"TextAppearance.AppCompat.Subhead\">\n        <item name=\"android:textSize\">@dimen/abc_text_size_subtitle_material_toolbar</item>\n        <item name=\"android:textColor\">?android:attr/textColorSecondary</item>\n    </style>\n    <style name=\"Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle.Inverse\" parent=\"TextAppearance.AppCompat.Subhead.Inverse\">\n        <item name=\"android:textSize\">@dimen/abc_text_size_subtitle_material_toolbar</item>\n        <item name=\"android:textColor\">?android:attr/textColorSecondaryInverse</item>\n    </style>\n    <style name=\"Base.TextAppearance.AppCompat.Widget.ActionBar.Title\" parent=\"TextAppearance.AppCompat.Title\">\n        <item name=\"android:textSize\">@dimen/abc_text_size_title_material_toolbar</item>\n        <item name=\"android:textColor\">?android:attr/textColorPrimary</item>\n    </style>\n    <style name=\"Base.TextAppearance.AppCompat.Widget.ActionBar.Title.Inverse\" parent=\"TextAppearance.AppCompat.Title.Inverse\">\n        <item name=\"android:textSize\">@dimen/abc_text_size_title_material_toolbar</item>\n        <item name=\"android:textColor\">?android:attr/textColorPrimaryInverse</item>\n    </style>\n    <style name=\"Base.TextAppearance.AppCompat.Widget.ActionMode.Subtitle\" parent=\"TextAppearance.AppCompat.Widget.ActionBar.Subtitle\"/>\n    <style name=\"Base.TextAppearance.AppCompat.Widget.ActionMode.Title\" parent=\"TextAppearance.AppCompat.Widget.ActionBar.Title\"/>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values/styles_base_text.xml -->\n    <eat-comment/>\n    <style name=\"Base.TextAppearance.AppCompat.Widget.Button\" parent=\"TextAppearance.AppCompat.Button\"/>\n    <style name=\"Base.TextAppearance.AppCompat.Widget.Button.Inverse\" parent=\"TextAppearance.AppCompat.Button\">\n        <item name=\"android:textColor\">?android:textColorPrimaryInverse</item>\n    </style>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values/styles_base.xml -->\n    <eat-comment/>\n    <style name=\"Base.TextAppearance.AppCompat.Widget.DropDownItem\" parent=\"android:TextAppearance.Small\">\n        <item name=\"android:textColor\">?android:attr/textColorPrimaryDisableOnly</item>\n    </style>\n    <style name=\"Base.TextAppearance.AppCompat.Widget.PopupMenu.Large\" parent=\"TextAppearance.AppCompat.Menu\">\n    </style>\n    <style name=\"Base.TextAppearance.AppCompat.Widget.PopupMenu.Small\" parent=\"TextAppearance.AppCompat.Menu\">\n    </style>\n    <style name=\"Base.TextAppearance.AppCompat.Widget.Switch\" parent=\"TextAppearance.AppCompat.Button\"/>\n    <style name=\"Base.TextAppearance.AppCompat.Widget.TextView.SpinnerItem\" parent=\"TextAppearance.AppCompat.Menu\"/>\n    <style name=\"Base.TextAppearance.Widget.AppCompat.ExpandedMenu.Item\" parent=\"android:TextAppearance.Medium\">\n        <item name=\"android:textColor\">?android:attr/textColorPrimaryDisableOnly</item>\n    </style>\n    <style name=\"Base.TextAppearance.Widget.AppCompat.Toolbar.Subtitle\" parent=\"TextAppearance.AppCompat.Widget.ActionBar.Subtitle\">\n    </style>\n    <style name=\"Base.TextAppearance.Widget.AppCompat.Toolbar.Title\" parent=\"TextAppearance.AppCompat.Widget.ActionBar.Title\">\n    </style>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values/themes_base.xml -->\n    <eat-comment/>\n    <style name=\"Base.Theme.AppCompat\" parent=\"Base.V7.Theme.AppCompat\">\n    </style>\n    <style name=\"Base.Theme.AppCompat.CompactMenu\" parent=\"\">\n        <item name=\"android:itemTextAppearance\">?android:attr/textAppearanceMedium</item>\n        <item name=\"android:listViewStyle\">@style/Widget.AppCompat.ListView.Menu</item>\n        <item name=\"android:windowAnimationStyle\">@style/Animation.AppCompat.DropDownUp</item>\n    </style>\n    <style name=\"Base.Theme.AppCompat.Dialog\" parent=\"Base.V7.Theme.AppCompat.Dialog\"/>\n    <style name=\"Base.Theme.AppCompat.Dialog.Alert\">\n        <item name=\"windowMinWidthMajor\">@dimen/abc_dialog_min_width_major</item>\n        <item name=\"windowMinWidthMinor\">@dimen/abc_dialog_min_width_minor</item>\n    </style>\n    <style name=\"Base.Theme.AppCompat.Dialog.FixedSize\">\n        <item name=\"windowFixedWidthMajor\">@dimen/dialog_fixed_width_major</item>\n        <item name=\"windowFixedWidthMinor\">@dimen/dialog_fixed_width_minor</item>\n        <item name=\"windowFixedHeightMajor\">@dimen/dialog_fixed_height_major</item>\n        <item name=\"windowFixedHeightMinor\">@dimen/dialog_fixed_height_minor</item>\n    </style>\n    <style name=\"Base.Theme.AppCompat.Dialog.MinWidth\">\n        <item name=\"windowMinWidthMajor\">@dimen/abc_dialog_min_width_major</item>\n        <item name=\"windowMinWidthMinor\">@dimen/abc_dialog_min_width_minor</item>\n    </style>\n    <style name=\"Base.Theme.AppCompat.DialogWhenLarge\" parent=\"Theme.AppCompat\"/>\n    <style name=\"Base.Theme.AppCompat.Light\" parent=\"Base.V7.Theme.AppCompat.Light\">\n    </style>\n    <style name=\"Base.Theme.AppCompat.Light.DarkActionBar\" parent=\"Base.Theme.AppCompat.Light\">\n        <item name=\"actionBarPopupTheme\">@style/ThemeOverlay.AppCompat.Light</item>\n        <item name=\"actionBarWidgetTheme\">@null</item>\n        <item name=\"actionBarTheme\">@style/ThemeOverlay.AppCompat.Dark.ActionBar</item>\n\n        <!-- Panel attributes -->\n        <item name=\"listChoiceBackgroundIndicator\">@drawable/abc_list_selector_holo_dark</item>\n\n        <item name=\"colorPrimaryDark\">@color/primary_dark_material_dark</item>\n        <item name=\"colorPrimary\">@color/primary_material_dark</item>\n    </style>\n    <style name=\"Base.Theme.AppCompat.Light.Dialog\" parent=\"Base.V7.Theme.AppCompat.Light.Dialog\"/>\n    <style name=\"Base.Theme.AppCompat.Light.Dialog.Alert\">\n        <item name=\"windowMinWidthMajor\">@dimen/abc_dialog_min_width_major</item>\n        <item name=\"windowMinWidthMinor\">@dimen/abc_dialog_min_width_minor</item>\n    </style>\n    <style name=\"Base.Theme.AppCompat.Light.Dialog.FixedSize\">\n        <item name=\"windowFixedWidthMajor\">@dimen/dialog_fixed_width_major</item>\n        <item name=\"windowFixedWidthMinor\">@dimen/dialog_fixed_width_minor</item>\n        <item name=\"windowFixedHeightMajor\">@dimen/dialog_fixed_height_major</item>\n        <item name=\"windowFixedHeightMinor\">@dimen/dialog_fixed_height_minor</item>\n    </style>\n    <style name=\"Base.Theme.AppCompat.Light.Dialog.MinWidth\">\n        <item name=\"windowMinWidthMajor\">@dimen/abc_dialog_min_width_major</item>\n        <item name=\"windowMinWidthMinor\">@dimen/abc_dialog_min_width_minor</item>\n    </style>\n    <style name=\"Base.Theme.AppCompat.Light.DialogWhenLarge\" parent=\"Theme.AppCompat.Light\"/>\n    <style name=\"Base.ThemeOverlay.AppCompat\" parent=\"Platform.ThemeOverlay.AppCompat\"/>\n    <style name=\"Base.ThemeOverlay.AppCompat.ActionBar\">\n        <item name=\"colorControlNormal\">?android:attr/textColorPrimary</item>\n        <item name=\"searchViewStyle\">@style/Widget.AppCompat.SearchView.ActionBar</item>\n    </style>\n    <style name=\"Base.ThemeOverlay.AppCompat.Dark\" parent=\"Platform.ThemeOverlay.AppCompat.Dark\">\n        <item name=\"android:windowBackground\">@color/background_material_dark</item>\n        <item name=\"android:colorForeground\">@color/foreground_material_dark</item>\n        <item name=\"android:colorForegroundInverse\">@color/foreground_material_light</item>\n        <item name=\"android:colorBackground\">@color/background_material_dark</item>\n        <item name=\"android:colorBackgroundCacheHint\">@color/abc_background_cache_hint_selector_material_dark</item>\n\n        <item name=\"android:textColorPrimary\">@color/abc_primary_text_material_dark</item>\n        <item name=\"android:textColorPrimaryInverse\">@color/abc_primary_text_material_light</item>\n        <item name=\"android:textColorPrimaryDisableOnly\">@color/abc_primary_text_disable_only_material_dark</item>\n        <item name=\"android:textColorSecondary\">@color/abc_secondary_text_material_dark</item>\n        <item name=\"android:textColorSecondaryInverse\">@color/abc_secondary_text_material_light</item>\n        <item name=\"android:textColorTertiary\">@color/abc_secondary_text_material_dark</item>\n        <item name=\"android:textColorTertiaryInverse\">@color/abc_secondary_text_material_light</item>\n        <item name=\"android:textColorHint\">@color/hint_foreground_material_dark</item>\n        <item name=\"android:textColorHintInverse\">@color/hint_foreground_material_light</item>\n        <item name=\"android:textColorHighlight\">@color/highlighted_text_material_dark</item>\n\n        <item name=\"colorControlNormal\">?android:attr/textColorSecondary</item>\n        <item name=\"colorControlHighlight\">@color/ripple_material_dark</item>\n        <item name=\"colorButtonNormal\">@color/button_material_dark</item>\n        <item name=\"colorSwitchThumbNormal\">@color/switch_thumb_material_dark</item>\n\n        <!-- Used by MediaRouter -->\n        <item name=\"isLightTheme\">false</item>\n    </style>\n    <style name=\"Base.ThemeOverlay.AppCompat.Dark.ActionBar\">\n        <item name=\"colorControlNormal\">?android:attr/textColorPrimary</item>\n        <item name=\"searchViewStyle\">@style/Widget.AppCompat.SearchView.ActionBar</item>\n    </style>\n    <style name=\"Base.ThemeOverlay.AppCompat.Light\" parent=\"Platform.ThemeOverlay.AppCompat.Light\">\n        <item name=\"android:windowBackground\">@color/background_material_light</item>\n        <item name=\"android:colorForeground\">@color/foreground_material_light</item>\n        <item name=\"android:colorForegroundInverse\">@color/foreground_material_dark</item>\n        <item name=\"android:colorBackground\">@color/background_material_light</item>\n        <item name=\"android:colorBackgroundCacheHint\">@color/abc_background_cache_hint_selector_material_light</item>\n\n        <item name=\"android:textColorPrimary\">@color/abc_primary_text_material_light</item>\n        <item name=\"android:textColorPrimaryInverse\">@color/abc_primary_text_material_dark</item>\n        <item name=\"android:textColorSecondary\">@color/abc_secondary_text_material_light</item>\n        <item name=\"android:textColorSecondaryInverse\">@color/abc_secondary_text_material_dark</item>\n        <item name=\"android:textColorTertiary\">@color/abc_secondary_text_material_light</item>\n        <item name=\"android:textColorTertiaryInverse\">@color/abc_secondary_text_material_dark</item>\n        <item name=\"android:textColorPrimaryDisableOnly\">@color/abc_primary_text_disable_only_material_light</item>\n        <item name=\"android:textColorPrimaryInverseDisableOnly\">@color/abc_primary_text_disable_only_material_dark</item>\n        <item name=\"android:textColorHint\">@color/hint_foreground_material_light</item>\n        <item name=\"android:textColorHintInverse\">@color/hint_foreground_material_dark</item>\n        <item name=\"android:textColorHighlight\">@color/highlighted_text_material_light</item>\n\n        <item name=\"colorControlNormal\">?android:attr/textColorSecondary</item>\n        <item name=\"colorControlHighlight\">@color/ripple_material_light</item>\n        <item name=\"colorButtonNormal\">@color/button_material_light</item>\n        <item name=\"colorSwitchThumbNormal\">@color/switch_thumb_material_light</item>\n\n        <!-- Used by MediaRouter -->\n        <item name=\"isLightTheme\">true</item>\n    </style>\n    <style name=\"Base.V7.Theme.AppCompat\" parent=\"Platform.AppCompat\">\n        <item name=\"windowActionBar\">true</item>\n        <item name=\"windowActionBarOverlay\">false</item>\n        <item name=\"actionBarPopupTheme\">@null</item>\n\n        <!-- Used by MediaRouter -->\n        <item name=\"isLightTheme\">false</item>\n\n        <item name=\"selectableItemBackground\">@drawable/abc_item_background_holo_dark</item>\n        <item name=\"selectableItemBackgroundBorderless\">?attr/selectableItemBackground</item>\n        <item name=\"borderlessButtonStyle\">@style/Widget.AppCompat.Button.Borderless</item>\n        <item name=\"homeAsUpIndicator\">@drawable/abc_ic_ab_back_mtrl_am_alpha</item>\n\n        <item name=\"dividerVertical\">@drawable/abc_list_divider_mtrl_alpha</item>\n        <item name=\"dividerHorizontal\">@drawable/abc_list_divider_mtrl_alpha</item>\n\n        <!-- Action Bar Styles -->\n        <item name=\"actionBarTabStyle\">@style/Widget.AppCompat.ActionBar.TabView</item>\n        <item name=\"actionBarTabBarStyle\">@style/Widget.AppCompat.ActionBar.TabBar</item>\n        <item name=\"actionBarTabTextStyle\">@style/Widget.AppCompat.ActionBar.TabText</item>\n        <item name=\"actionButtonStyle\">@style/Widget.AppCompat.ActionButton</item>\n        <item name=\"actionOverflowButtonStyle\">@style/Widget.AppCompat.ActionButton.Overflow</item>\n        <item name=\"actionOverflowMenuStyle\">@style/Widget.AppCompat.PopupMenu.Overflow</item>\n        <item name=\"actionBarStyle\">@style/Widget.AppCompat.ActionBar.Solid</item>\n        <item name=\"actionBarSplitStyle\">?attr/actionBarStyle</item>\n        <item name=\"actionBarWidgetTheme\">@null</item>\n        <item name=\"actionBarTheme\">@style/ThemeOverlay.AppCompat.ActionBar</item>\n        <item name=\"actionBarSize\">@dimen/abc_action_bar_default_height_material</item>\n        <item name=\"actionBarDivider\">?attr/dividerVertical</item>\n        <item name=\"actionBarItemBackground\">?attr/selectableItemBackgroundBorderless</item>\n        <item name=\"actionMenuTextAppearance\">@style/TextAppearance.AppCompat.Widget.ActionBar.Menu</item>\n        <item name=\"actionMenuTextColor\">?android:attr/textColorPrimaryDisableOnly</item>\n\n        <!-- Dropdown Spinner Attributes -->\n        <item name=\"actionDropDownStyle\">@style/Widget.AppCompat.Spinner.DropDown.ActionBar</item>\n\n        <!-- Action Mode -->\n        <item name=\"actionModeStyle\">@style/Widget.AppCompat.ActionMode</item>\n        <item name=\"actionModeBackground\">@drawable/abc_cab_background_top_material</item>\n        <item name=\"actionModeSplitBackground\">?attr/colorPrimaryDark</item>\n        <item name=\"actionModeCloseDrawable\">@drawable/abc_ic_ab_back_mtrl_am_alpha</item>\n        <item name=\"actionModeCloseButtonStyle\">@style/Widget.AppCompat.ActionButton.CloseMode</item>\n\n        <item name=\"actionModeCutDrawable\">@drawable/abc_ic_menu_cut_mtrl_alpha</item>\n        <item name=\"actionModeCopyDrawable\">@drawable/abc_ic_menu_copy_mtrl_am_alpha</item>\n        <item name=\"actionModePasteDrawable\">@drawable/abc_ic_menu_paste_mtrl_am_alpha</item>\n        <item name=\"actionModeSelectAllDrawable\">@drawable/abc_ic_menu_selectall_mtrl_alpha</item>\n        <item name=\"actionModeShareDrawable\">@drawable/abc_ic_menu_share_mtrl_alpha</item>\n\n        <!-- Panel attributes -->\n        <item name=\"panelMenuListWidth\">@dimen/abc_panel_menu_list_width</item>\n        <item name=\"panelMenuListTheme\">@style/Theme.AppCompat.CompactMenu</item>\n        <item name=\"panelBackground\">@drawable/abc_menu_hardkey_panel_mtrl_mult</item>\n        <item name=\"android:panelBackground\">@android:color/transparent</item>\n        <item name=\"listChoiceBackgroundIndicator\">@drawable/abc_list_selector_holo_dark</item>\n\n        <!-- List attributes -->\n        <item name=\"textAppearanceListItem\">@style/TextAppearance.AppCompat.Subhead</item>\n        <item name=\"textAppearanceListItemSmall\">@style/TextAppearance.AppCompat.Subhead</item>\n        <item name=\"listPreferredItemHeight\">64dp</item>\n        <item name=\"listPreferredItemHeightSmall\">48dp</item>\n        <item name=\"listPreferredItemHeightLarge\">80dp</item>\n        <item name=\"listPreferredItemPaddingLeft\">@dimen/abc_list_item_padding_horizontal_material</item>\n        <item name=\"listPreferredItemPaddingRight\">@dimen/abc_list_item_padding_horizontal_material</item>\n\n        <!-- Spinner styles -->\n        <item name=\"spinnerStyle\">@style/Widget.AppCompat.Spinner</item>\n        <item name=\"android:spinnerItemStyle\">@style/Widget.AppCompat.TextView.SpinnerItem</item>\n        <item name=\"android:dropDownListViewStyle\">@style/Widget.AppCompat.ListView.DropDown</item>\n\n        <!-- Required for use of support_simple_spinner_dropdown_item.xml -->\n        <item name=\"spinnerDropDownItemStyle\">@style/Widget.AppCompat.DropDownItem.Spinner</item>\n        <item name=\"dropdownListPreferredItemHeight\">?attr/listPreferredItemHeightSmall</item>\n\n        <!-- Popup Menu styles -->\n        <item name=\"popupMenuStyle\">@style/Widget.AppCompat.PopupMenu</item>\n        <item name=\"textAppearanceLargePopupMenu\">@style/TextAppearance.AppCompat.Widget.PopupMenu.Large</item>\n        <item name=\"textAppearanceSmallPopupMenu\">@style/TextAppearance.AppCompat.Widget.PopupMenu.Small</item>\n        <item name=\"listPopupWindowStyle\">@style/Widget.AppCompat.ListPopupWindow</item>\n        <item name=\"dropDownListViewStyle\">@style/Widget.AppCompat.ListView.DropDown</item>\n\n        <!-- SearchView attributes -->\n        <item name=\"searchViewStyle\">@style/Widget.AppCompat.SearchView</item>\n        <item name=\"android:dropDownItemStyle\">@style/Widget.AppCompat.DropDownItem.Spinner</item>\n        <item name=\"textColorSearchUrl\">@color/abc_search_url_text</item>\n        <item name=\"textAppearanceSearchResultTitle\">@style/TextAppearance.AppCompat.SearchResult.Title</item>\n        <item name=\"textAppearanceSearchResultSubtitle\">@style/TextAppearance.AppCompat.SearchResult.Subtitle</item>\n\n        <!-- ShareActionProvider attributes -->\n        <item name=\"activityChooserViewStyle\">@style/Widget.AppCompat.ActivityChooserView</item>\n\n        <!-- Toolbar styles -->\n        <item name=\"toolbarStyle\">@style/Widget.AppCompat.Toolbar</item>\n        <item name=\"toolbarNavigationButtonStyle\">@style/Widget.AppCompat.Toolbar.Button.Navigation</item>\n\n        <item name=\"editTextStyle\">@style/Widget.AppCompat.EditText</item>\n        <item name=\"editTextBackground\">@drawable/abc_edit_text_material</item>\n        <item name=\"editTextColor\">?android:attr/textColorPrimary</item>\n        <item name=\"autoCompleteTextViewStyle\">@style/Widget.AppCompat.AutoCompleteTextView</item>\n\n        <!-- Color palette -->\n        <item name=\"colorPrimaryDark\">@color/primary_dark_material_dark</item>\n        <item name=\"colorPrimary\">@color/primary_material_dark</item>\n        <item name=\"colorAccent\">@color/accent_material_dark</item>\n\n        <item name=\"colorControlNormal\">?android:attr/textColorSecondary</item>\n        <item name=\"colorControlActivated\">?attr/colorAccent</item>\n        <item name=\"colorControlHighlight\">@color/ripple_material_dark</item>\n        <item name=\"colorButtonNormal\">@color/button_material_dark</item>\n        <item name=\"colorSwitchThumbNormal\">@color/switch_thumb_material_dark</item>\n        <item name=\"controlBackground\">?attr/selectableItemBackgroundBorderless</item>\n\n        <item name=\"drawerArrowStyle\">@style/Widget.AppCompat.DrawerArrowToggle</item>\n\n        <item name=\"checkboxStyle\">@style/Widget.AppCompat.CompoundButton.CheckBox</item>\n        <item name=\"radioButtonStyle\">@style/Widget.AppCompat.CompoundButton.RadioButton</item>\n        <item name=\"switchStyle\">@style/Widget.AppCompat.CompoundButton.Switch</item>\n\n        <item name=\"ratingBarStyle\">@style/Widget.AppCompat.RatingBar</item>\n\n        <!-- Button styles -->\n        <item name=\"buttonStyle\">@style/Widget.AppCompat.Button</item>\n        <item name=\"buttonStyleSmall\">@style/Widget.AppCompat.Button.Small</item>\n        <item name=\"android:textAppearanceButton\">@style/TextAppearance.AppCompat.Widget.Button</item>\n\n        <item name=\"buttonBarStyle\">@style/Widget.AppCompat.ButtonBar</item>\n        <item name=\"buttonBarButtonStyle\">@style/Widget.AppCompat.Button.ButtonBar.AlertDialog</item>\n        <item name=\"buttonBarPositiveButtonStyle\">?attr/buttonBarButtonStyle</item>\n        <item name=\"buttonBarNegativeButtonStyle\">?attr/buttonBarButtonStyle</item>\n        <item name=\"buttonBarNeutralButtonStyle\">?attr/buttonBarButtonStyle</item>\n\n        <!-- Dialog attributes -->\n        <item name=\"dialogTheme\">@style/Theme.AppCompat.Dialog</item>\n        <item name=\"dialogPreferredPadding\">@dimen/abc_dialog_padding_material</item>\n\n        <item name=\"alertDialogTheme\">@style/Theme.AppCompat.Dialog.Alert</item>\n        <item name=\"alertDialogStyle\">@style/AlertDialog.AppCompat</item>\n        <item name=\"alertDialogCenterButtons\">false</item>\n        <item name=\"textColorAlertDialogListItem\">@color/abc_primary_text_material_dark</item>\n        <item name=\"listDividerAlertDialog\">@null</item>\n\n        <!-- Define these here; ContextThemeWrappers around themes that define them should\n             always clear these values. -->\n        <item name=\"windowFixedWidthMajor\">0dp</item>\n        <item name=\"windowFixedWidthMinor\">0dp</item>\n        <item name=\"windowFixedHeightMajor\">0dp</item>\n        <item name=\"windowFixedHeightMinor\">0dp</item>\n    </style>\n    <style name=\"Base.V7.Theme.AppCompat.Dialog\" parent=\"Base.Theme.AppCompat\">\n        <item name=\"android:colorBackground\">@color/background_floating_material_dark</item>\n        <item name=\"android:colorBackgroundCacheHint\">@null</item>\n\n        <item name=\"android:windowFrame\">@null</item>\n        <item name=\"android:windowTitleStyle\">@style/RtlOverlay.DialogWindowTitle.AppCompat</item>\n        <item name=\"android:windowTitleBackgroundStyle\">@style/Base.DialogWindowTitleBackground.AppCompat</item>\n        <item name=\"android:windowBackground\">@drawable/abc_dialog_material_background_dark</item>\n        <item name=\"android:windowIsFloating\">true</item>\n        <item name=\"android:backgroundDimEnabled\">true</item>\n        <item name=\"android:windowContentOverlay\">@null</item>\n        <item name=\"android:windowAnimationStyle\">@style/Animation.AppCompat.Dialog</item>\n        <item name=\"android:windowSoftInputMode\">stateUnspecified|adjustPan</item>\n\n        <item name=\"windowActionBar\">false</item>\n        <item name=\"windowActionModeOverlay\">true</item>\n\n        <item name=\"listPreferredItemPaddingLeft\">24dip</item>\n        <item name=\"listPreferredItemPaddingRight\">24dip</item>\n\n        <item name=\"android:listDivider\">@null</item>\n    </style>\n    <style name=\"Base.V7.Theme.AppCompat.Light\" parent=\"Platform.AppCompat.Light\">\n        <item name=\"windowActionBar\">true</item>\n        <item name=\"windowActionBarOverlay\">false</item>\n        <item name=\"actionBarPopupTheme\">@null</item>\n\n        <!-- Used by MediaRouter -->\n        <item name=\"isLightTheme\">true</item>\n\n        <item name=\"selectableItemBackground\">@drawable/abc_item_background_holo_light</item>\n        <item name=\"selectableItemBackgroundBorderless\">?attr/selectableItemBackground</item>\n        <item name=\"borderlessButtonStyle\">@style/Widget.AppCompat.Button.Borderless</item>\n        <item name=\"homeAsUpIndicator\">@drawable/abc_ic_ab_back_mtrl_am_alpha</item>\n\n        <item name=\"dividerVertical\">@drawable/abc_list_divider_mtrl_alpha</item>\n        <item name=\"dividerHorizontal\">@drawable/abc_list_divider_mtrl_alpha</item>\n\n        <!-- Action Bar Styles -->\n        <item name=\"actionBarTabStyle\">@style/Widget.AppCompat.Light.ActionBar.TabView</item>\n        <item name=\"actionBarTabBarStyle\">@style/Widget.AppCompat.Light.ActionBar.TabBar</item>\n        <item name=\"actionBarTabTextStyle\">@style/Widget.AppCompat.Light.ActionBar.TabText</item>\n        <item name=\"actionButtonStyle\">@style/Widget.AppCompat.Light.ActionButton</item>\n        <item name=\"actionOverflowButtonStyle\">@style/Widget.AppCompat.Light.ActionButton.Overflow</item>\n        <item name=\"actionOverflowMenuStyle\">@style/Widget.AppCompat.Light.PopupMenu.Overflow</item>\n        <item name=\"actionBarStyle\">@style/Widget.AppCompat.Light.ActionBar.Solid</item>\n        <item name=\"actionBarSplitStyle\">?attr/actionBarStyle</item>\n        <item name=\"actionBarWidgetTheme\">@null</item>\n        <item name=\"actionBarTheme\">@style/ThemeOverlay.AppCompat.ActionBar</item>\n        <item name=\"actionBarSize\">@dimen/abc_action_bar_default_height_material</item>\n        <item name=\"actionBarDivider\">?attr/dividerVertical</item>\n        <item name=\"actionBarItemBackground\">?attr/selectableItemBackgroundBorderless</item>\n        <item name=\"actionMenuTextAppearance\">@style/TextAppearance.AppCompat.Widget.ActionBar.Menu</item>\n        <item name=\"actionMenuTextColor\">?android:attr/textColorPrimaryDisableOnly</item>\n\n        <!-- Action Mode -->\n        <item name=\"actionModeStyle\">@style/Widget.AppCompat.ActionMode</item>\n        <item name=\"actionModeBackground\">@drawable/abc_cab_background_top_material</item>\n        <item name=\"actionModeSplitBackground\">?attr/colorPrimaryDark</item>\n        <item name=\"actionModeCloseDrawable\">@drawable/abc_ic_ab_back_mtrl_am_alpha</item>\n        <item name=\"actionModeCloseButtonStyle\">@style/Widget.AppCompat.ActionButton.CloseMode</item>\n\n        <item name=\"actionModeCutDrawable\">@drawable/abc_ic_menu_cut_mtrl_alpha</item>\n        <item name=\"actionModeCopyDrawable\">@drawable/abc_ic_menu_copy_mtrl_am_alpha</item>\n        <item name=\"actionModePasteDrawable\">@drawable/abc_ic_menu_paste_mtrl_am_alpha</item>\n        <item name=\"actionModeSelectAllDrawable\">@drawable/abc_ic_menu_selectall_mtrl_alpha</item>\n        <item name=\"actionModeShareDrawable\">@drawable/abc_ic_menu_share_mtrl_alpha</item>\n\n        <!-- Dropdown Spinner Attributes -->\n        <item name=\"actionDropDownStyle\">@style/Widget.AppCompat.Light.Spinner.DropDown.ActionBar</item>\n\n        <!-- Panel attributes -->\n        <item name=\"panelMenuListWidth\">@dimen/abc_panel_menu_list_width</item>\n        <item name=\"panelMenuListTheme\">@style/Theme.AppCompat.CompactMenu</item>\n        <item name=\"panelBackground\">@drawable/abc_menu_hardkey_panel_mtrl_mult</item>\n        <item name=\"android:panelBackground\">@android:color/transparent</item>\n        <item name=\"listChoiceBackgroundIndicator\">@drawable/abc_list_selector_holo_light</item>\n\n        <!-- List attributes -->\n        <item name=\"textAppearanceListItem\">@style/TextAppearance.AppCompat.Subhead</item>\n        <item name=\"textAppearanceListItemSmall\">@style/TextAppearance.AppCompat.Subhead</item>\n        <item name=\"listPreferredItemHeight\">64dp</item>\n        <item name=\"listPreferredItemHeightSmall\">48dp</item>\n        <item name=\"listPreferredItemHeightLarge\">80dp</item>\n        <item name=\"listPreferredItemPaddingLeft\">@dimen/abc_list_item_padding_horizontal_material</item>\n        <item name=\"listPreferredItemPaddingRight\">@dimen/abc_list_item_padding_horizontal_material</item>\n\n        <!-- Spinner styles -->\n        <item name=\"spinnerStyle\">@style/Widget.AppCompat.Spinner</item>\n        <item name=\"android:spinnerItemStyle\">@style/Widget.AppCompat.TextView.SpinnerItem</item>\n        <item name=\"android:dropDownListViewStyle\">@style/Widget.AppCompat.ListView.DropDown</item>\n\n        <!-- Required for use of support_simple_spinner_dropdown_item.xml -->\n        <item name=\"spinnerDropDownItemStyle\">@style/Widget.AppCompat.DropDownItem.Spinner</item>\n        <item name=\"dropdownListPreferredItemHeight\">?attr/listPreferredItemHeightSmall</item>\n\n        <!-- Popup Menu styles -->\n        <item name=\"popupMenuStyle\">@style/Widget.AppCompat.Light.PopupMenu</item>\n        <item name=\"textAppearanceLargePopupMenu\">@style/TextAppearance.AppCompat.Light.Widget.PopupMenu.Large</item>\n        <item name=\"textAppearanceSmallPopupMenu\">@style/TextAppearance.AppCompat.Light.Widget.PopupMenu.Small</item>\n        <item name=\"listPopupWindowStyle\">@style/Widget.AppCompat.ListPopupWindow</item>\n        <item name=\"dropDownListViewStyle\">@style/Widget.AppCompat.ListView.DropDown</item>\n\n        <!-- SearchView attributes -->\n        <item name=\"searchViewStyle\">@style/Widget.AppCompat.Light.SearchView</item>\n        <item name=\"android:dropDownItemStyle\">@style/Widget.AppCompat.DropDownItem.Spinner</item>\n        <item name=\"textColorSearchUrl\">@color/abc_search_url_text</item>\n        <item name=\"textAppearanceSearchResultTitle\">@style/TextAppearance.AppCompat.SearchResult.Title</item>\n        <item name=\"textAppearanceSearchResultSubtitle\">@style/TextAppearance.AppCompat.SearchResult.Subtitle</item>\n\n        <!-- ShareActionProvider attributes -->\n        <item name=\"activityChooserViewStyle\">@style/Widget.AppCompat.ActivityChooserView</item>\n\n        <!-- Toolbar styles -->\n        <item name=\"toolbarStyle\">@style/Widget.AppCompat.Toolbar</item>\n        <item name=\"toolbarNavigationButtonStyle\">@style/Widget.AppCompat.Toolbar.Button.Navigation</item>\n\n        <item name=\"editTextStyle\">@style/Widget.AppCompat.EditText</item>\n        <item name=\"editTextBackground\">@drawable/abc_edit_text_material</item>\n        <item name=\"editTextColor\">?android:attr/textColorPrimary</item>\n        <item name=\"autoCompleteTextViewStyle\">@style/Widget.AppCompat.AutoCompleteTextView</item>\n\n        <!-- Color palette -->\n        <item name=\"colorPrimaryDark\">@color/primary_dark_material_light</item>\n        <item name=\"colorPrimary\">@color/primary_material_light</item>\n        <item name=\"colorAccent\">@color/accent_material_light</item>\n\n        <item name=\"colorControlNormal\">?android:attr/textColorSecondary</item>\n        <item name=\"colorControlActivated\">?attr/colorAccent</item>\n        <item name=\"colorControlHighlight\">@color/ripple_material_light</item>\n        <item name=\"colorButtonNormal\">@color/button_material_light</item>\n        <item name=\"colorSwitchThumbNormal\">@color/switch_thumb_material_light</item>\n        <item name=\"controlBackground\">?attr/selectableItemBackgroundBorderless</item>\n\n        <item name=\"drawerArrowStyle\">@style/Widget.AppCompat.DrawerArrowToggle</item>\n\n        <item name=\"checkboxStyle\">@style/Widget.AppCompat.CompoundButton.CheckBox</item>\n        <item name=\"radioButtonStyle\">@style/Widget.AppCompat.CompoundButton.RadioButton</item>\n        <item name=\"switchStyle\">@style/Widget.AppCompat.CompoundButton.Switch</item>\n\n        <item name=\"ratingBarStyle\">@style/Widget.AppCompat.RatingBar</item>\n\n        <!-- Button styles -->\n        <item name=\"buttonStyle\">@style/Widget.AppCompat.Button</item>\n        <item name=\"buttonStyleSmall\">@style/Widget.AppCompat.Button.Small</item>\n        <item name=\"android:textAppearanceButton\">@style/TextAppearance.AppCompat.Widget.Button</item>\n\n        <item name=\"buttonBarStyle\">@style/Widget.AppCompat.ButtonBar</item>\n        <item name=\"buttonBarButtonStyle\">@style/Widget.AppCompat.Button.ButtonBar.AlertDialog</item>\n        <item name=\"buttonBarPositiveButtonStyle\">?attr/buttonBarButtonStyle</item>\n        <item name=\"buttonBarNegativeButtonStyle\">?attr/buttonBarButtonStyle</item>\n        <item name=\"buttonBarNeutralButtonStyle\">?attr/buttonBarButtonStyle</item>\n\n        <!-- Dialog attributes -->\n        <item name=\"dialogTheme\">@style/Theme.AppCompat.Light.Dialog</item>\n        <item name=\"dialogPreferredPadding\">@dimen/abc_dialog_padding_material</item>\n\n        <item name=\"alertDialogTheme\">@style/Theme.AppCompat.Light.Dialog.Alert</item>\n        <item name=\"alertDialogStyle\">@style/AlertDialog.AppCompat.Light</item>\n        <item name=\"alertDialogCenterButtons\">false</item>\n        <item name=\"textColorAlertDialogListItem\">@color/abc_primary_text_material_light</item>\n        <item name=\"listDividerAlertDialog\">@null</item>\n\n        <!-- Define these here; ContextThemeWrappers around themes that define them should\n             always clear these values. -->\n        <item name=\"windowFixedWidthMajor\">0dp</item>\n        <item name=\"windowFixedWidthMinor\">0dp</item>\n        <item name=\"windowFixedHeightMajor\">0dp</item>\n        <item name=\"windowFixedHeightMinor\">0dp</item>\n    </style>\n    <style name=\"Base.V7.Theme.AppCompat.Light.Dialog\" parent=\"Base.Theme.AppCompat.Light\">\n        <item name=\"android:colorBackground\">@color/background_floating_material_light</item>\n        <item name=\"android:colorBackgroundCacheHint\">@null</item>\n\n        <item name=\"android:windowFrame\">@null</item>\n        <item name=\"android:windowTitleStyle\">@style/RtlOverlay.DialogWindowTitle.AppCompat</item>\n        <item name=\"android:windowTitleBackgroundStyle\">@style/Base.DialogWindowTitleBackground.AppCompat</item>\n        <item name=\"android:windowBackground\">@drawable/abc_dialog_material_background_light</item>\n        <item name=\"android:windowIsFloating\">true</item>\n        <item name=\"android:backgroundDimEnabled\">true</item>\n        <item name=\"android:windowContentOverlay\">@null</item>\n        <item name=\"android:windowAnimationStyle\">@style/Animation.AppCompat.Dialog</item>\n        <item name=\"android:windowSoftInputMode\">stateUnspecified|adjustPan</item>\n\n        <item name=\"windowActionBar\">false</item>\n        <item name=\"windowActionModeOverlay\">true</item>\n\n        <item name=\"listPreferredItemPaddingLeft\">24dip</item>\n        <item name=\"listPreferredItemPaddingRight\">24dip</item>\n\n        <item name=\"android:listDivider\">@null</item>\n    </style>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values/styles_base.xml -->\n    <eat-comment/>\n    <style name=\"Base.V7.Widget.AppCompat.AutoCompleteTextView\" parent=\"android:Widget.AutoCompleteTextView\">\n        <item name=\"android:dropDownSelector\">?attr/listChoiceBackgroundIndicator</item>\n        <item name=\"android:popupBackground\">@drawable/abc_popup_background_mtrl_mult</item>\n        <item name=\"android:background\">?attr/editTextBackground</item>\n        <item name=\"android:textColor\">?attr/editTextColor</item>\n        <item name=\"android:textAppearance\">?android:attr/textAppearanceMediumInverse</item>\n    </style>\n    <style name=\"Base.V7.Widget.AppCompat.EditText\" parent=\"android:Widget.EditText\">\n        <item name=\"android:background\">?attr/editTextBackground</item>\n        <item name=\"android:textColor\">?attr/editTextColor</item>\n        <item name=\"android:textAppearance\">?android:attr/textAppearanceMediumInverse</item>\n    </style>\n    <style name=\"Base.Widget.AppCompat.ActionBar\" parent=\"\">\n        <item name=\"displayOptions\">showTitle</item>\n        <item name=\"divider\">?attr/dividerVertical</item>\n        <item name=\"height\">?attr/actionBarSize</item>\n\n        <item name=\"titleTextStyle\">@style/TextAppearance.AppCompat.Widget.ActionBar.Title</item>\n        <item name=\"subtitleTextStyle\">@style/TextAppearance.AppCompat.Widget.ActionBar.Subtitle</item>\n\n        <item name=\"background\">@null</item>\n        <item name=\"backgroundStacked\">@null</item>\n        <item name=\"backgroundSplit\">@null</item>\n\n        <item name=\"actionButtonStyle\">@style/Widget.AppCompat.ActionButton</item>\n        <item name=\"actionOverflowButtonStyle\">@style/Widget.AppCompat.ActionButton.Overflow</item>\n\n        <item name=\"android:gravity\">center_vertical</item>\n        <item name=\"contentInsetStart\">@dimen/abc_action_bar_content_inset_material</item>\n        <item name=\"contentInsetEnd\">@dimen/abc_action_bar_content_inset_material</item>\n        <item name=\"elevation\">8dp</item>\n        <item name=\"popupTheme\">?attr/actionBarPopupTheme</item>\n    </style>\n    <style name=\"Base.Widget.AppCompat.ActionBar.Solid\">\n        <item name=\"background\">?attr/colorPrimary</item>\n        <item name=\"backgroundStacked\">?attr/colorPrimary</item>\n        <item name=\"backgroundSplit\">?attr/colorPrimary</item>\n    </style>\n    <style name=\"Base.Widget.AppCompat.ActionBar.TabBar\" parent=\"\">\n        <item name=\"divider\">?attr/actionBarDivider</item>\n        <item name=\"showDividers\">middle</item>\n        <item name=\"dividerPadding\">8dip</item>\n    </style>\n    <style name=\"Base.Widget.AppCompat.ActionBar.TabText\" parent=\"\">\n        <item name=\"android:textAppearance\">@style/TextAppearance.AppCompat.Medium</item>\n        <item name=\"android:textColor\">?android:attr/textColorPrimary</item>\n        <item name=\"android:textSize\">12sp</item>\n        <item name=\"android:textStyle\">bold</item>\n        <item name=\"android:ellipsize\">marquee</item>\n        <item name=\"android:maxLines\">2</item>\n        <item name=\"android:maxWidth\">180dp</item>\n        <item name=\"textAllCaps\">true</item>\n    </style>\n    <style name=\"Base.Widget.AppCompat.ActionBar.TabView\" parent=\"\">\n        <item name=\"android:background\">@drawable/abc_tab_indicator_material</item>\n        <item name=\"android:gravity\">center_horizontal</item>\n        <item name=\"android:paddingLeft\">16dip</item>\n        <item name=\"android:paddingRight\">16dip</item>\n        <item name=\"android:layout_width\">0dip</item>\n        <item name=\"android:layout_weight\">1</item>\n        <item name=\"android:minWidth\">80dip</item>\n    </style>\n    <style name=\"Base.Widget.AppCompat.ActionButton\" parent=\"\">\n        <item name=\"android:background\">?attr/actionBarItemBackground</item>\n        <item name=\"android:paddingLeft\">12dip</item>\n        <item name=\"android:paddingRight\">12dip</item>\n        <item name=\"android:minWidth\">@dimen/abc_action_button_min_width_material</item>\n        <item name=\"android:minHeight\">@dimen/abc_action_button_min_height_material</item>\n        <item name=\"android:scaleType\">center</item>\n        <item name=\"android:gravity\">center</item>\n        <item name=\"android:maxLines\">2</item>\n        <item name=\"textAllCaps\">@bool/abc_config_actionMenuItemAllCaps</item>\n    </style>\n    <style name=\"Base.Widget.AppCompat.ActionButton.CloseMode\">\n        <item name=\"android:background\">?attr/controlBackground</item>\n    </style>\n    <style name=\"Base.Widget.AppCompat.ActionButton.Overflow\">\n        <item name=\"android:src\">@drawable/abc_ic_menu_moreoverflow_mtrl_alpha</item>\n        <item name=\"android:background\">?attr/actionBarItemBackground</item>\n        <item name=\"android:contentDescription\">@string/abc_action_menu_overflow_description</item>\n        <item name=\"android:minWidth\">@dimen/abc_action_button_min_width_overflow_material</item>\n        <item name=\"android:minHeight\">@dimen/abc_action_button_min_height_material</item>\n    </style>\n    <style name=\"Base.Widget.AppCompat.ActionMode\" parent=\"\">\n        <item name=\"background\">?attr/actionModeBackground</item>\n        <item name=\"backgroundSplit\">?attr/actionModeSplitBackground</item>\n        <item name=\"height\">?attr/actionBarSize</item>\n        <item name=\"titleTextStyle\">@style/TextAppearance.AppCompat.Widget.ActionMode.Title</item>\n        <item name=\"subtitleTextStyle\">@style/TextAppearance.AppCompat.Widget.ActionMode.Subtitle</item>\n        <item name=\"closeItemLayout\">@layout/abc_action_mode_close_item_material</item>\n    </style>\n    <style name=\"Base.Widget.AppCompat.ActivityChooserView\" parent=\"\">\n        <item name=\"android:gravity\">center</item>\n        <item name=\"android:background\">@drawable/abc_ab_share_pack_mtrl_alpha</item>\n        <item name=\"divider\">?attr/dividerVertical</item>\n        <item name=\"showDividers\">middle</item>\n        <item name=\"dividerPadding\">6dip</item>\n    </style>\n    <style name=\"Base.Widget.AppCompat.AutoCompleteTextView\" parent=\"Base.V7.Widget.AppCompat.AutoCompleteTextView\"/>\n    <style name=\"Base.Widget.AppCompat.Button\" parent=\"android:Widget\">\n        <item name=\"android:background\">@drawable/abc_btn_default_mtrl_shape</item>\n        <item name=\"android:textAppearance\">?android:attr/textAppearanceButton</item>\n        <item name=\"android:minHeight\">48dip</item>\n        <item name=\"android:minWidth\">88dip</item>\n        <item name=\"android:focusable\">true</item>\n        <item name=\"android:clickable\">true</item>\n        <item name=\"android:gravity\">center_vertical|center_horizontal</item>\n    </style>\n    <style name=\"Base.Widget.AppCompat.Button.Borderless\">\n        <item name=\"android:background\">@drawable/abc_btn_borderless_material</item>\n    </style>\n    <style name=\"Base.Widget.AppCompat.Button.Borderless.Colored\">\n        <item name=\"android:textColor\">?attr/colorAccent</item>\n    </style>\n    <style name=\"Base.Widget.AppCompat.Button.ButtonBar.AlertDialog\" parent=\"Widget.AppCompat.Button.Borderless.Colored\">\n        <item name=\"android:minWidth\">64dp</item>\n        <item name=\"android:maxLines\">2</item>\n        <item name=\"android:minHeight\">@dimen/abc_alert_dialog_button_bar_height</item>\n    </style>\n    <style name=\"Base.Widget.AppCompat.Button.Colored\">\n        <item name=\"android:background\">@drawable/abc_btn_colored_material</item>\n        <item name=\"android:textAppearance\">@style/TextAppearance.AppCompat.Widget.Button.Inverse</item>\n    </style>\n    <style name=\"Base.Widget.AppCompat.Button.Small\">\n        <item name=\"android:minHeight\">48dip</item>\n        <item name=\"android:minWidth\">48dip</item>\n    </style>\n    <style name=\"Base.Widget.AppCompat.ButtonBar\" parent=\"android:Widget\">\n        <item name=\"android:background\">@null</item>\n    </style>\n    <style name=\"Base.Widget.AppCompat.ButtonBar.AlertDialog\"/>\n    <style name=\"Base.Widget.AppCompat.CompoundButton.CheckBox\" parent=\"android:Widget.CompoundButton.CheckBox\">\n        <item name=\"android:button\">?android:attr/listChoiceIndicatorMultiple</item>\n        <item name=\"android:background\">?attr/controlBackground</item>\n    </style>\n    <style name=\"Base.Widget.AppCompat.CompoundButton.RadioButton\" parent=\"android:Widget.CompoundButton.RadioButton\">\n        <item name=\"android:button\">?android:attr/listChoiceIndicatorSingle</item>\n        <item name=\"android:background\">?attr/controlBackground</item>\n    </style>\n    <style name=\"Base.Widget.AppCompat.CompoundButton.Switch\" parent=\"android:Widget.CompoundButton\">\n        <item name=\"track\">@drawable/abc_switch_track_mtrl_alpha</item>\n        <item name=\"android:thumb\">@drawable/abc_switch_thumb_material</item>\n        <item name=\"switchTextAppearance\">@style/TextAppearance.AppCompat.Widget.Switch</item>\n        <item name=\"android:background\">?attr/controlBackground</item>\n        <item name=\"showText\">false</item>\n        <item name=\"switchPadding\">@dimen/abc_switch_padding</item>\n    </style>\n    <style name=\"Base.Widget.AppCompat.DrawerArrowToggle\" parent=\"Base.Widget.AppCompat.DrawerArrowToggle.Common\">\n        <item name=\"barLength\">18dp</item>\n        <item name=\"gapBetweenBars\">3dp</item>\n        <item name=\"drawableSize\">24dp</item>\n    </style>\n    <style name=\"Base.Widget.AppCompat.DrawerArrowToggle.Common\" parent=\"\">\n        <item name=\"color\">?android:attr/textColorSecondary</item>\n        <item name=\"spinBars\">true</item>\n        <item name=\"thickness\">2dp</item>\n        <item name=\"arrowShaftLength\">16dp</item>\n        <item name=\"arrowHeadLength\">8dp</item>\n    </style>\n    <style name=\"Base.Widget.AppCompat.DropDownItem.Spinner\" parent=\"\">\n        <item name=\"android:textAppearance\">@style/TextAppearance.AppCompat.Widget.DropDownItem</item>\n        <item name=\"android:paddingLeft\">8dp</item>\n        <item name=\"android:paddingRight\">8dp</item>\n        <item name=\"android:gravity\">center_vertical</item>\n    </style>\n    <style name=\"Base.Widget.AppCompat.EditText\" parent=\"Base.V7.Widget.AppCompat.EditText\"/>\n    <style name=\"Base.Widget.AppCompat.Light.ActionBar\" parent=\"Base.Widget.AppCompat.ActionBar\">\n        <item name=\"actionButtonStyle\">@style/Widget.AppCompat.Light.ActionButton</item>\n        <item name=\"actionOverflowButtonStyle\">@style/Widget.AppCompat.Light.ActionButton.Overflow</item>\n    </style>\n    <style name=\"Base.Widget.AppCompat.Light.ActionBar.Solid\">\n        <item name=\"background\">?attr/colorPrimary</item>\n        <item name=\"backgroundStacked\">?attr/colorPrimary</item>\n        <item name=\"backgroundSplit\">?attr/colorPrimary</item>\n    </style>\n    <style name=\"Base.Widget.AppCompat.Light.ActionBar.TabBar\" parent=\"Base.Widget.AppCompat.ActionBar.TabBar\">\n    </style>\n    <style name=\"Base.Widget.AppCompat.Light.ActionBar.TabText\" parent=\"Base.Widget.AppCompat.ActionBar.TabText\">\n    </style>\n    <style name=\"Base.Widget.AppCompat.Light.ActionBar.TabText.Inverse\" parent=\"Base.Widget.AppCompat.Light.ActionBar.TabText\">\n        <item name=\"android:textAppearance\">@style/TextAppearance.AppCompat.Medium.Inverse</item>\n    </style>\n    <style name=\"Base.Widget.AppCompat.Light.ActionBar.TabView\" parent=\"Base.Widget.AppCompat.ActionBar.TabView\">\n        <item name=\"android:background\">@drawable/abc_tab_indicator_material</item>\n    </style>\n    <style name=\"Base.Widget.AppCompat.Light.PopupMenu\" parent=\"@style/Widget.AppCompat.ListPopupWindow\">\n    </style>\n    <style name=\"Base.Widget.AppCompat.Light.PopupMenu.Overflow\">\n        <item name=\"overlapAnchor\">true</item>\n        <item name=\"android:dropDownHorizontalOffset\">-4dip</item>\n    </style>\n    <style name=\"Base.Widget.AppCompat.ListPopupWindow\" parent=\"\">\n        <item name=\"android:dropDownSelector\">?attr/listChoiceBackgroundIndicator</item>\n        <item name=\"android:popupBackground\">@drawable/abc_popup_background_mtrl_mult</item>\n        <item name=\"android:dropDownVerticalOffset\">0dip</item>\n        <item name=\"android:dropDownHorizontalOffset\">0dip</item>\n        <item name=\"android:dropDownWidth\">wrap_content</item>\n    </style>\n    <style name=\"Base.Widget.AppCompat.ListView\" parent=\"android:Widget.ListView\">\n        <item name=\"android:listSelector\">?attr/listChoiceBackgroundIndicator</item>\n    </style>\n    <style name=\"Base.Widget.AppCompat.ListView.DropDown\">\n        <item name=\"android:divider\">@null</item>\n    </style>\n    <style name=\"Base.Widget.AppCompat.ListView.Menu\" parent=\"android:Widget.ListView.Menu\">\n        <item name=\"android:listSelector\">?attr/listChoiceBackgroundIndicator</item>\n        <item name=\"android:divider\">?attr/dividerHorizontal</item>\n    </style>\n    <style name=\"Base.Widget.AppCompat.PopupMenu\" parent=\"@style/Widget.AppCompat.ListPopupWindow\">\n    </style>\n    <style name=\"Base.Widget.AppCompat.PopupMenu.Overflow\">\n        <item name=\"overlapAnchor\">true</item>\n        <item name=\"android:dropDownHorizontalOffset\">-4dip</item>\n    </style>\n    <style name=\"Base.Widget.AppCompat.PopupWindow\" parent=\"android:Widget.PopupWindow\">\n    </style>\n    <style name=\"Base.Widget.AppCompat.ProgressBar\" parent=\"android:Widget.ProgressBar\">\n        <item name=\"android:minWidth\">@dimen/abc_action_bar_progress_bar_size</item>\n        <item name=\"android:maxWidth\">@dimen/abc_action_bar_progress_bar_size</item>\n        <item name=\"android:minHeight\">@dimen/abc_action_bar_progress_bar_size</item>\n        <item name=\"android:maxHeight\">@dimen/abc_action_bar_progress_bar_size</item>\n    </style>\n    <style name=\"Base.Widget.AppCompat.ProgressBar.Horizontal\" parent=\"android:Widget.ProgressBar.Horizontal\">\n    </style>\n    <style name=\"Base.Widget.AppCompat.RatingBar\" parent=\"android:Widget.RatingBar\">\n        <item name=\"android:progressDrawable\">@drawable/abc_ratingbar_full_material</item>\n        <item name=\"android:indeterminateDrawable\">@drawable/abc_ratingbar_full_material</item>\n    </style>\n    <style name=\"Base.Widget.AppCompat.SearchView\" parent=\"android:Widget\">\n        <item name=\"layout\">@layout/abc_search_view</item>\n        <item name=\"queryBackground\">@drawable/abc_textfield_search_material</item>\n        <item name=\"submitBackground\">@drawable/abc_textfield_search_material</item>\n        <item name=\"closeIcon\">@drawable/abc_ic_clear_mtrl_alpha</item>\n        <item name=\"searchIcon\">@drawable/abc_ic_search_api_mtrl_alpha</item>\n        <item name=\"searchHintIcon\">@drawable/abc_ic_search_api_mtrl_alpha</item>\n        <item name=\"goIcon\">@drawable/abc_ic_go_search_api_mtrl_alpha</item>\n        <item name=\"voiceIcon\">@drawable/abc_ic_voice_search_api_mtrl_alpha</item>\n        <item name=\"commitIcon\">@drawable/abc_ic_commit_search_api_mtrl_alpha</item>\n        <item name=\"suggestionRowLayout\">@layout/abc_search_dropdown_item_icons_2line</item>\n    </style>\n    <style name=\"Base.Widget.AppCompat.SearchView.ActionBar\">\n        <item name=\"queryBackground\">@null</item>\n        <item name=\"submitBackground\">@null</item>\n        <item name=\"searchHintIcon\">@null</item>\n        <item name=\"defaultQueryHint\">@string/abc_search_hint</item>\n    </style>\n    <style name=\"Base.Widget.AppCompat.Spinner\" parent=\"Platform.Widget.AppCompat.Spinner\">\n        <item name=\"android:background\">@drawable/abc_spinner_mtrl_am_alpha</item>\n        <item name=\"android:popupBackground\">@drawable/abc_popup_background_mtrl_mult</item>\n        <item name=\"android:dropDownSelector\">?attr/listChoiceBackgroundIndicator</item>\n        <item name=\"android:dropDownVerticalOffset\">0dip</item>\n        <item name=\"android:dropDownHorizontalOffset\">0dip</item>\n        <item name=\"android:dropDownWidth\">wrap_content</item>\n        <item name=\"android:clickable\">true</item>\n        <item name=\"android:gravity\">left|start|center_vertical</item>\n        <item name=\"overlapAnchor\">true</item>\n    </style>\n    <style name=\"Base.Widget.AppCompat.Spinner.Underlined\">\n        <item name=\"android:background\">@drawable/abc_spinner_textfield_background_material</item>\n    </style>\n    <style name=\"Base.Widget.AppCompat.TextView.SpinnerItem\" parent=\"android:Widget.TextView.SpinnerItem\">\n        <item name=\"android:textAppearance\">@style/TextAppearance.AppCompat.Widget.TextView.SpinnerItem</item>\n        <item name=\"android:paddingLeft\">8dp</item>\n        <item name=\"android:paddingRight\">8dp</item>\n    </style>\n    <style name=\"Base.Widget.AppCompat.Toolbar\" parent=\"android:Widget\">\n        <item name=\"titleTextAppearance\">@style/TextAppearance.Widget.AppCompat.Toolbar.Title</item>\n        <item name=\"subtitleTextAppearance\">@style/TextAppearance.Widget.AppCompat.Toolbar.Subtitle</item>\n        <item name=\"android:minHeight\">?attr/actionBarSize</item>\n        <item name=\"titleMargins\">4dp</item>\n        <item name=\"maxButtonHeight\">56dp</item>\n        <item name=\"collapseIcon\">?attr/homeAsUpIndicator</item>\n        <item name=\"collapseContentDescription\">@string/abc_toolbar_collapse_description</item>\n        <item name=\"contentInsetStart\">16dp</item>\n        <item name=\"android:paddingLeft\">@dimen/abc_action_bar_default_padding_start_material</item>\n        <item name=\"android:paddingRight\">@dimen/abc_action_bar_default_padding_end_material</item>\n    </style>\n    <style name=\"Base.Widget.AppCompat.Toolbar.Button.Navigation\" parent=\"android:Widget\">\n        <item name=\"android:background\">?attr/controlBackground</item>\n        <item name=\"android:minWidth\">56dp</item>\n        <item name=\"android:scaleType\">center</item>\n    </style>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values/themes_base.xml -->\n    <eat-comment/>\n    <style name=\"Platform.AppCompat\" parent=\"android:Theme\">\n        <item name=\"android:windowNoTitle\">true</item>\n\n        <!-- Window colors -->\n        <item name=\"android:colorForeground\">@color/foreground_material_dark</item>\n        <item name=\"android:colorForegroundInverse\">@color/foreground_material_light</item>\n        <item name=\"android:colorBackground\">@color/background_material_dark</item>\n        <item name=\"android:colorBackgroundCacheHint\">@color/abc_background_cache_hint_selector_material_dark</item>\n        <item name=\"android:disabledAlpha\">@dimen/abc_disabled_alpha_material_dark</item>\n        <item name=\"android:backgroundDimAmount\">0.6</item>\n        <item name=\"android:windowBackground\">@color/background_material_dark</item>\n\n        <!-- Text colors -->\n        <item name=\"android:textColorPrimary\">@color/abc_primary_text_material_dark</item>\n        <item name=\"android:textColorPrimaryInverse\">@color/abc_primary_text_material_light</item>\n        <item name=\"android:textColorPrimaryDisableOnly\">@color/abc_primary_text_disable_only_material_dark</item>\n        <item name=\"android:textColorSecondary\">@color/abc_secondary_text_material_dark</item>\n        <item name=\"android:textColorSecondaryInverse\">@color/abc_secondary_text_material_light</item>\n        <item name=\"android:textColorTertiary\">@color/abc_secondary_text_material_dark</item>\n        <item name=\"android:textColorTertiaryInverse\">@color/abc_secondary_text_material_light</item>\n        <item name=\"android:textColorHint\">@color/hint_foreground_material_dark</item>\n        <item name=\"android:textColorHintInverse\">@color/hint_foreground_material_light</item>\n        <item name=\"android:textColorHighlight\">@color/highlighted_text_material_dark</item>\n        <item name=\"android:textColorLink\">?attr/colorAccent</item>\n\n        <!-- Text styles -->\n        <item name=\"android:textAppearance\">@style/TextAppearance.AppCompat</item>\n        <item name=\"android:textAppearanceInverse\">@style/TextAppearance.AppCompat.Inverse</item>\n        <item name=\"android:textAppearanceLarge\">@style/TextAppearance.AppCompat.Large</item>\n        <item name=\"android:textAppearanceLargeInverse\">@style/TextAppearance.AppCompat.Large.Inverse</item>\n        <item name=\"android:textAppearanceMedium\">@style/TextAppearance.AppCompat.Medium</item>\n        <item name=\"android:textAppearanceMediumInverse\">@style/TextAppearance.AppCompat.Medium.Inverse</item>\n        <item name=\"android:textAppearanceSmall\">@style/TextAppearance.AppCompat.Small</item>\n        <item name=\"android:textAppearanceSmallInverse\">@style/TextAppearance.AppCompat.Small.Inverse</item>\n\n        <item name=\"android:listChoiceIndicatorSingle\">@drawable/abc_btn_radio_material</item>\n        <item name=\"android:listChoiceIndicatorMultiple\">@drawable/abc_btn_check_material</item>\n    </style>\n    <style name=\"Platform.AppCompat.Light\" parent=\"android:Theme.Light\">\n        <item name=\"android:windowNoTitle\">true</item>\n\n        <!-- Window colors -->\n        <item name=\"android:colorForeground\">@color/foreground_material_light</item>\n        <item name=\"android:colorForegroundInverse\">@color/foreground_material_dark</item>\n        <item name=\"android:colorBackground\">@color/background_material_light</item>\n        <item name=\"android:colorBackgroundCacheHint\">@color/abc_background_cache_hint_selector_material_light</item>\n        <item name=\"android:disabledAlpha\">@dimen/abc_disabled_alpha_material_light</item>\n        <item name=\"android:backgroundDimAmount\">0.6</item>\n        <item name=\"android:windowBackground\">@color/background_material_light</item>\n\n        <!-- Text colors -->\n        <item name=\"android:textColorPrimary\">@color/abc_primary_text_material_light</item>\n        <item name=\"android:textColorPrimaryInverse\">@color/abc_primary_text_material_dark</item>\n        <item name=\"android:textColorSecondary\">@color/abc_secondary_text_material_light</item>\n        <item name=\"android:textColorSecondaryInverse\">@color/abc_secondary_text_material_dark</item>\n        <item name=\"android:textColorTertiary\">@color/abc_secondary_text_material_light</item>\n        <item name=\"android:textColorTertiaryInverse\">@color/abc_secondary_text_material_dark</item>\n        <item name=\"android:textColorPrimaryDisableOnly\">@color/abc_primary_text_disable_only_material_light</item>\n        <item name=\"android:textColorPrimaryInverseDisableOnly\">@color/abc_primary_text_disable_only_material_dark</item>\n        <item name=\"android:textColorHint\">@color/hint_foreground_material_light</item>\n        <item name=\"android:textColorHintInverse\">@color/hint_foreground_material_dark</item>\n        <item name=\"android:textColorHighlight\">@color/highlighted_text_material_light</item>\n        <item name=\"android:textColorLink\">?attr/colorAccent</item>\n\n        <!-- Text styles -->\n        <item name=\"android:textAppearance\">@style/TextAppearance.AppCompat</item>\n        <item name=\"android:textAppearanceInverse\">@style/TextAppearance.AppCompat.Inverse</item>\n        <item name=\"android:textAppearanceLarge\">@style/TextAppearance.AppCompat.Large</item>\n        <item name=\"android:textAppearanceLargeInverse\">@style/TextAppearance.AppCompat.Large.Inverse</item>\n        <item name=\"android:textAppearanceMedium\">@style/TextAppearance.AppCompat.Medium</item>\n        <item name=\"android:textAppearanceMediumInverse\">@style/TextAppearance.AppCompat.Medium.Inverse</item>\n        <item name=\"android:textAppearanceSmall\">@style/TextAppearance.AppCompat.Small</item>\n        <item name=\"android:textAppearanceSmallInverse\">@style/TextAppearance.AppCompat.Small.Inverse</item>\n\n        <item name=\"android:listChoiceIndicatorSingle\">@drawable/abc_btn_radio_material</item>\n        <item name=\"android:listChoiceIndicatorMultiple\">@drawable/abc_btn_check_material</item>\n    </style>\n    <style name=\"Platform.ThemeOverlay.AppCompat\" parent=\"\"/>\n    <style name=\"Platform.ThemeOverlay.AppCompat.Dark\">\n        <!-- Action Bar styles -->\n        <item name=\"actionBarItemBackground\">@drawable/abc_item_background_holo_dark</item>\n        <item name=\"actionDropDownStyle\">@style/Widget.AppCompat.Spinner.DropDown.ActionBar</item>\n        <item name=\"selectableItemBackground\">@drawable/abc_item_background_holo_dark</item>\n\n        <!-- SearchView styles -->\n        <item name=\"android:autoCompleteTextViewStyle\">@style/Widget.AppCompat.AutoCompleteTextView</item>\n        <item name=\"android:dropDownItemStyle\">@style/Widget.AppCompat.DropDownItem.Spinner</item>\n    </style>\n    <style name=\"Platform.ThemeOverlay.AppCompat.Light\">\n        <item name=\"actionBarItemBackground\">@drawable/abc_item_background_holo_light</item>\n        <item name=\"actionDropDownStyle\">@style/Widget.AppCompat.Light.Spinner.DropDown.ActionBar</item>\n        <item name=\"selectableItemBackground\">@drawable/abc_item_background_holo_light</item>\n\n        <!-- SearchView attributes -->\n        <item name=\"android:autoCompleteTextViewStyle\">@style/Widget.AppCompat.Light.AutoCompleteTextView</item>\n        <item name=\"android:dropDownItemStyle\">@style/Widget.AppCompat.DropDownItem.Spinner</item>\n    </style>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values/styles_base.xml -->\n    <eat-comment/>\n    <style name=\"Platform.Widget.AppCompat.Spinner\" parent=\"android:Widget.Spinner\"/>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values/styles_rtl.xml -->\n    <eat-comment/>\n    <style name=\"RtlOverlay.DialogWindowTitle.AppCompat\" parent=\"Base.DialogWindowTitle.AppCompat\">\n    </style>\n    <style name=\"RtlOverlay.Widget.AppCompat.ActionBar.TitleItem\" parent=\"android:Widget\">\n        <item name=\"android:layout_gravity\">center_vertical|left</item>\n        <item name=\"android:paddingRight\">8dp</item>\n    </style>\n    <style name=\"RtlOverlay.Widget.AppCompat.ActionButton.Overflow\" parent=\"Base.Widget.AppCompat.ActionButton.Overflow\">\n        <item name=\"android:paddingLeft\">@dimen/abc_action_bar_overflow_padding_start_material</item>\n        <item name=\"android:paddingRight\">@dimen/abc_action_bar_overflow_padding_end_material</item>\n    </style>\n    <style name=\"RtlOverlay.Widget.AppCompat.DialogTitle.Icon\" parent=\"android:Widget\">\n        <item name=\"android:layout_marginRight\">8dp</item>\n    </style>\n    <style name=\"RtlOverlay.Widget.AppCompat.PopupMenuItem\" parent=\"android:Widget\">\n        <item name=\"android:paddingRight\">16dp</item>\n    </style>\n    <style name=\"RtlOverlay.Widget.AppCompat.PopupMenuItem.InternalGroup\" parent=\"android:Widget\">\n        <item name=\"android:layout_marginLeft\">16dp</item>\n    </style>\n    <style name=\"RtlOverlay.Widget.AppCompat.PopupMenuItem.Text\" parent=\"android:Widget\">\n        <item name=\"android:layout_alignParentLeft\">true</item>\n    </style>\n    <style name=\"RtlOverlay.Widget.AppCompat.Search.DropDown\" parent=\"android:Widget\">\n        <item name=\"android:paddingLeft\">@dimen/abc_dropdownitem_text_padding_left</item>\n        <item name=\"android:paddingRight\">4dp</item>\n    </style>\n    <style name=\"RtlOverlay.Widget.AppCompat.Search.DropDown.Icon1\" parent=\"android:Widget\">\n        <item name=\"android:layout_alignParentLeft\">true</item>\n    </style>\n    <style name=\"RtlOverlay.Widget.AppCompat.Search.DropDown.Icon2\" parent=\"android:Widget\">\n        <item name=\"android:layout_toLeftOf\">@id/edit_query</item>\n    </style>\n    <style name=\"RtlOverlay.Widget.AppCompat.Search.DropDown.Query\" parent=\"android:Widget\">\n        <item name=\"android:layout_alignParentRight\">true</item>\n    </style>\n    <style name=\"RtlOverlay.Widget.AppCompat.Search.DropDown.Text\" parent=\"Base.Widget.AppCompat.DropDownItem.Spinner\">\n        <item name=\"android:layout_toLeftOf\">@android:id/icon2</item>\n        <item name=\"android:layout_toRightOf\">@android:id/icon1</item>\n    </style>\n    <style name=\"RtlOverlay.Widget.AppCompat.SearchView.MagIcon\" parent=\"android:Widget\">\n        <item name=\"android:layout_marginLeft\">@dimen/abc_dropdownitem_text_padding_left</item>\n    </style>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values/styles.xml -->\n    <eat-comment/>\n    <style name=\"TextAppearance.AppCompat\" parent=\"Base.TextAppearance.AppCompat\"/>\n    <style name=\"TextAppearance.AppCompat.Body1\" parent=\"Base.TextAppearance.AppCompat.Body1\"/>\n    <style name=\"TextAppearance.AppCompat.Body2\" parent=\"Base.TextAppearance.AppCompat.Body2\"/>\n    <style name=\"TextAppearance.AppCompat.Button\" parent=\"Base.TextAppearance.AppCompat.Button\"/>\n    <style name=\"TextAppearance.AppCompat.Caption\" parent=\"Base.TextAppearance.AppCompat.Caption\"/>\n    <style name=\"TextAppearance.AppCompat.Display1\" parent=\"Base.TextAppearance.AppCompat.Display1\"/>\n    <style name=\"TextAppearance.AppCompat.Display2\" parent=\"Base.TextAppearance.AppCompat.Display2\"/>\n    <style name=\"TextAppearance.AppCompat.Display3\" parent=\"Base.TextAppearance.AppCompat.Display3\"/>\n    <style name=\"TextAppearance.AppCompat.Display4\" parent=\"Base.TextAppearance.AppCompat.Display4\"/>\n    <style name=\"TextAppearance.AppCompat.Headline\" parent=\"Base.TextAppearance.AppCompat.Headline\"/>\n    <style name=\"TextAppearance.AppCompat.Inverse\" parent=\"Base.TextAppearance.AppCompat.Inverse\"/>\n    <style name=\"TextAppearance.AppCompat.Large\" parent=\"Base.TextAppearance.AppCompat.Large\"/>\n    <style name=\"TextAppearance.AppCompat.Large.Inverse\" parent=\"Base.TextAppearance.AppCompat.Large.Inverse\"/>\n    <style name=\"TextAppearance.AppCompat.Light.SearchResult.Subtitle\" parent=\"TextAppearance.AppCompat.SearchResult.Subtitle\"/>\n    <style name=\"TextAppearance.AppCompat.Light.SearchResult.Title\" parent=\"TextAppearance.AppCompat.SearchResult.Title\"/>\n    <style name=\"TextAppearance.AppCompat.Light.Widget.PopupMenu.Large\" parent=\"Base.TextAppearance.AppCompat.Light.Widget.PopupMenu.Large\">\n    </style>\n    <style name=\"TextAppearance.AppCompat.Light.Widget.PopupMenu.Small\" parent=\"Base.TextAppearance.AppCompat.Light.Widget.PopupMenu.Small\">\n    </style>\n    <style name=\"TextAppearance.AppCompat.Medium\" parent=\"Base.TextAppearance.AppCompat.Medium\"/>\n    <style name=\"TextAppearance.AppCompat.Medium.Inverse\" parent=\"Base.TextAppearance.AppCompat.Medium.Inverse\"/>\n    <style name=\"TextAppearance.AppCompat.Menu\" parent=\"Base.TextAppearance.AppCompat.Menu\"/>\n    <style name=\"TextAppearance.AppCompat.SearchResult.Subtitle\" parent=\"Base.TextAppearance.AppCompat.SearchResult.Subtitle\">\n    </style>\n    <style name=\"TextAppearance.AppCompat.SearchResult.Title\" parent=\"Base.TextAppearance.AppCompat.SearchResult.Title\">\n    </style>\n    <style name=\"TextAppearance.AppCompat.Small\" parent=\"Base.TextAppearance.AppCompat.Small\"/>\n    <style name=\"TextAppearance.AppCompat.Small.Inverse\" parent=\"Base.TextAppearance.AppCompat.Small.Inverse\"/>\n    <style name=\"TextAppearance.AppCompat.Subhead\" parent=\"Base.TextAppearance.AppCompat.Subhead\"/>\n    <style name=\"TextAppearance.AppCompat.Subhead.Inverse\" parent=\"Base.TextAppearance.AppCompat.Subhead.Inverse\"/>\n    <style name=\"TextAppearance.AppCompat.Title\" parent=\"Base.TextAppearance.AppCompat.Title\"/>\n    <style name=\"TextAppearance.AppCompat.Title.Inverse\" parent=\"Base.TextAppearance.AppCompat.Title.Inverse\"/>\n    <style name=\"TextAppearance.AppCompat.Widget.ActionBar.Menu\" parent=\"Base.TextAppearance.AppCompat.Widget.ActionBar.Menu\">\n    </style>\n    <style name=\"TextAppearance.AppCompat.Widget.ActionBar.Subtitle\" parent=\"Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle\"/>\n    <style name=\"TextAppearance.AppCompat.Widget.ActionBar.Subtitle.Inverse\" parent=\"Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle.Inverse\">\n    </style>\n    <style name=\"TextAppearance.AppCompat.Widget.ActionBar.Title\" parent=\"Base.TextAppearance.AppCompat.Widget.ActionBar.Title\"/>\n    <style name=\"TextAppearance.AppCompat.Widget.ActionBar.Title.Inverse\" parent=\"Base.TextAppearance.AppCompat.Widget.ActionBar.Title.Inverse\">\n    </style>\n    <style name=\"TextAppearance.AppCompat.Widget.ActionMode.Subtitle\" parent=\"Base.TextAppearance.AppCompat.Widget.ActionMode.Subtitle\">\n    </style>\n    <style name=\"TextAppearance.AppCompat.Widget.ActionMode.Subtitle.Inverse\" parent=\"TextAppearance.AppCompat.Widget.ActionMode.Subtitle\"/>\n    <style name=\"TextAppearance.AppCompat.Widget.ActionMode.Title\" parent=\"Base.TextAppearance.AppCompat.Widget.ActionMode.Title\">\n    </style>\n    <style name=\"TextAppearance.AppCompat.Widget.ActionMode.Title.Inverse\" parent=\"TextAppearance.AppCompat.Widget.ActionMode.Title\"/>\n    <style name=\"TextAppearance.AppCompat.Widget.Button\" parent=\"Base.TextAppearance.AppCompat.Widget.Button\"/>\n    <style name=\"TextAppearance.AppCompat.Widget.Button.Inverse\" parent=\"Base.TextAppearance.AppCompat.Widget.Button.Inverse\"/>\n    <style name=\"TextAppearance.AppCompat.Widget.DropDownItem\" parent=\"Base.TextAppearance.AppCompat.Widget.DropDownItem\">\n    </style>\n    <style name=\"TextAppearance.AppCompat.Widget.PopupMenu.Large\" parent=\"Base.TextAppearance.AppCompat.Widget.PopupMenu.Large\">\n    </style>\n    <style name=\"TextAppearance.AppCompat.Widget.PopupMenu.Small\" parent=\"Base.TextAppearance.AppCompat.Widget.PopupMenu.Small\">\n    </style>\n    <style name=\"TextAppearance.AppCompat.Widget.Switch\" parent=\"Base.TextAppearance.AppCompat.Widget.Switch\"/>\n    <style name=\"TextAppearance.AppCompat.Widget.TextView.SpinnerItem\" parent=\"Base.TextAppearance.AppCompat.Widget.TextView.SpinnerItem\"/>\n    <style name=\"TextAppearance.StatusBar.EventContent\" parent=\"\"/>\n    <style name=\"TextAppearance.StatusBar.EventContent.Info\" parent=\"\"/>\n    <style name=\"TextAppearance.StatusBar.EventContent.Line2\" parent=\"\"/>\n    <style name=\"TextAppearance.StatusBar.EventContent.Time\" parent=\"\"/>\n    <style name=\"TextAppearance.StatusBar.EventContent.Title\" parent=\"\"/>\n    <style name=\"TextAppearance.Widget.AppCompat.ExpandedMenu.Item\" parent=\"Base.TextAppearance.Widget.AppCompat.ExpandedMenu.Item\">\n    </style>\n    <style name=\"TextAppearance.Widget.AppCompat.Toolbar.Subtitle\" parent=\"Base.TextAppearance.Widget.AppCompat.Toolbar.Subtitle\">\n    </style>\n    <style name=\"TextAppearance.Widget.AppCompat.Toolbar.Title\" parent=\"Base.TextAppearance.Widget.AppCompat.Toolbar.Title\">\n    </style>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values/themes.xml -->\n    <eat-comment/>\n    <style name=\"Theme.AppCompat\" parent=\"Base.Theme.AppCompat\"/>\n    <style name=\"Theme.AppCompat.CompactMenu\" parent=\"Base.Theme.AppCompat.CompactMenu\"/>\n    <style name=\"Theme.AppCompat.Dialog\" parent=\"Base.Theme.AppCompat.Dialog\"/>\n    <style name=\"Theme.AppCompat.Dialog.Alert\" parent=\"Base.Theme.AppCompat.Dialog.Alert\"/>\n    <style name=\"Theme.AppCompat.Dialog.MinWidth\" parent=\"Base.Theme.AppCompat.Dialog.MinWidth\"/>\n    <style name=\"Theme.AppCompat.DialogWhenLarge\" parent=\"Base.Theme.AppCompat.DialogWhenLarge\">\n    </style>\n    <style name=\"Theme.AppCompat.Light\" parent=\"Base.Theme.AppCompat.Light\"/>\n    <style name=\"Theme.AppCompat.Light.DarkActionBar\" parent=\"Base.Theme.AppCompat.Light.DarkActionBar\"/>\n    <style name=\"Theme.AppCompat.Light.Dialog\" parent=\"Base.Theme.AppCompat.Light.Dialog\"/>\n    <style name=\"Theme.AppCompat.Light.Dialog.Alert\" parent=\"Base.Theme.AppCompat.Light.Dialog.Alert\"/>\n    <style name=\"Theme.AppCompat.Light.Dialog.MinWidth\" parent=\"Base.Theme.AppCompat.Light.Dialog.MinWidth\"/>\n    <style name=\"Theme.AppCompat.Light.DialogWhenLarge\" parent=\"Base.Theme.AppCompat.Light.DialogWhenLarge\">\n    </style>\n    <style name=\"Theme.AppCompat.Light.NoActionBar\">\n        <item name=\"windowActionBar\">false</item>\n        <item name=\"windowNoTitle\">true</item>\n    </style>\n    <style name=\"Theme.AppCompat.NoActionBar\">\n        <item name=\"windowActionBar\">false</item>\n        <item name=\"windowNoTitle\">true</item>\n    </style>\n    <style name=\"ThemeOverlay.AppCompat\" parent=\"Base.ThemeOverlay.AppCompat\"/>\n    <style name=\"ThemeOverlay.AppCompat.ActionBar\" parent=\"Base.ThemeOverlay.AppCompat.ActionBar\"/>\n    <style name=\"ThemeOverlay.AppCompat.Dark\" parent=\"Base.ThemeOverlay.AppCompat.Dark\"/>\n    <style name=\"ThemeOverlay.AppCompat.Dark.ActionBar\" parent=\"Base.ThemeOverlay.AppCompat.Dark.ActionBar\"/>\n    <style name=\"ThemeOverlay.AppCompat.Light\" parent=\"Base.ThemeOverlay.AppCompat.Light\"/>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values/styles.xml -->\n    <eat-comment/>\n    <style name=\"Widget.AppCompat.ActionBar\" parent=\"Base.Widget.AppCompat.ActionBar\">\n    </style>\n    <style name=\"Widget.AppCompat.ActionBar.Solid\" parent=\"Base.Widget.AppCompat.ActionBar.Solid\">\n    </style>\n    <style name=\"Widget.AppCompat.ActionBar.TabBar\" parent=\"Base.Widget.AppCompat.ActionBar.TabBar\">\n    </style>\n    <style name=\"Widget.AppCompat.ActionBar.TabText\" parent=\"Base.Widget.AppCompat.ActionBar.TabText\">\n    </style>\n    <style name=\"Widget.AppCompat.ActionBar.TabView\" parent=\"Base.Widget.AppCompat.ActionBar.TabView\">\n    </style>\n    <style name=\"Widget.AppCompat.ActionButton\" parent=\"Base.Widget.AppCompat.ActionButton\"/>\n    <style name=\"Widget.AppCompat.ActionButton.CloseMode\" parent=\"Base.Widget.AppCompat.ActionButton.CloseMode\"/>\n    <style name=\"Widget.AppCompat.ActionButton.Overflow\" parent=\"RtlOverlay.Widget.AppCompat.ActionButton.Overflow\"/>\n    <style name=\"Widget.AppCompat.ActionMode\" parent=\"Base.Widget.AppCompat.ActionMode\">\n    </style>\n    <style name=\"Widget.AppCompat.ActivityChooserView\" parent=\"Base.Widget.AppCompat.ActivityChooserView\">\n    </style>\n    <style name=\"Widget.AppCompat.AutoCompleteTextView\" parent=\"Base.Widget.AppCompat.AutoCompleteTextView\">\n    </style>\n    <style name=\"Widget.AppCompat.Button\" parent=\"Base.Widget.AppCompat.Button\"/>\n    <style name=\"Widget.AppCompat.Button.Borderless\" parent=\"Base.Widget.AppCompat.Button.Borderless\"/>\n    <style name=\"Widget.AppCompat.Button.Borderless.Colored\" parent=\"Base.Widget.AppCompat.Button.Borderless.Colored\"/>\n    <style name=\"Widget.AppCompat.Button.ButtonBar.AlertDialog\" parent=\"Base.Widget.AppCompat.Button.ButtonBar.AlertDialog\"/>\n    <style name=\"Widget.AppCompat.Button.Colored\" parent=\"Base.Widget.AppCompat.Button.Colored\"/>\n    <style name=\"Widget.AppCompat.Button.Small\" parent=\"Base.Widget.AppCompat.Button.Small\"/>\n    <style name=\"Widget.AppCompat.ButtonBar\" parent=\"Base.Widget.AppCompat.ButtonBar\"/>\n    <style name=\"Widget.AppCompat.ButtonBar.AlertDialog\" parent=\"Base.Widget.AppCompat.ButtonBar.AlertDialog\"/>\n    <style name=\"Widget.AppCompat.CompoundButton.CheckBox\" parent=\"Base.Widget.AppCompat.CompoundButton.CheckBox\"/>\n    <style name=\"Widget.AppCompat.CompoundButton.RadioButton\" parent=\"Base.Widget.AppCompat.CompoundButton.RadioButton\"/>\n    <style name=\"Widget.AppCompat.CompoundButton.Switch\" parent=\"Base.Widget.AppCompat.CompoundButton.Switch\"/>\n    <style name=\"Widget.AppCompat.DrawerArrowToggle\" parent=\"Base.Widget.AppCompat.DrawerArrowToggle\">\n        <item name=\"color\">?attr/colorControlNormal</item>\n    </style>\n    <style name=\"Widget.AppCompat.DropDownItem.Spinner\" parent=\"RtlOverlay.Widget.AppCompat.Search.DropDown.Text\"/>\n    <style name=\"Widget.AppCompat.EditText\" parent=\"Base.Widget.AppCompat.EditText\"/>\n    <style name=\"Widget.AppCompat.Light.ActionBar\" parent=\"Base.Widget.AppCompat.Light.ActionBar\">\n    </style>\n    <style name=\"Widget.AppCompat.Light.ActionBar.Solid\" parent=\"Base.Widget.AppCompat.Light.ActionBar.Solid\">\n    </style>\n    <style name=\"Widget.AppCompat.Light.ActionBar.Solid.Inverse\"/>\n    <style name=\"Widget.AppCompat.Light.ActionBar.TabBar\" parent=\"Base.Widget.AppCompat.Light.ActionBar.TabBar\">\n    </style>\n    <style name=\"Widget.AppCompat.Light.ActionBar.TabBar.Inverse\"/>\n    <style name=\"Widget.AppCompat.Light.ActionBar.TabText\" parent=\"Base.Widget.AppCompat.Light.ActionBar.TabText\">\n    </style>\n    <style name=\"Widget.AppCompat.Light.ActionBar.TabText.Inverse\" parent=\"Base.Widget.AppCompat.Light.ActionBar.TabText.Inverse\">\n    </style>\n    <style name=\"Widget.AppCompat.Light.ActionBar.TabView\" parent=\"Base.Widget.AppCompat.Light.ActionBar.TabView\">\n    </style>\n    <style name=\"Widget.AppCompat.Light.ActionBar.TabView.Inverse\"/>\n    <style name=\"Widget.AppCompat.Light.ActionButton\" parent=\"Widget.AppCompat.ActionButton\"/>\n    <style name=\"Widget.AppCompat.Light.ActionButton.CloseMode\" parent=\"Widget.AppCompat.ActionButton.CloseMode\"/>\n    <style name=\"Widget.AppCompat.Light.ActionButton.Overflow\" parent=\"Widget.AppCompat.ActionButton.Overflow\"/>\n    <style name=\"Widget.AppCompat.Light.ActionMode.Inverse\" parent=\"Widget.AppCompat.ActionMode\"/>\n    <style name=\"Widget.AppCompat.Light.ActivityChooserView\" parent=\"Widget.AppCompat.ActivityChooserView\"/>\n    <style name=\"Widget.AppCompat.Light.AutoCompleteTextView\" parent=\"Widget.AppCompat.AutoCompleteTextView\"/>\n    <style name=\"Widget.AppCompat.Light.DropDownItem.Spinner\" parent=\"Widget.AppCompat.DropDownItem.Spinner\"/>\n    <style name=\"Widget.AppCompat.Light.ListPopupWindow\" parent=\"Widget.AppCompat.ListPopupWindow\"/>\n    <style name=\"Widget.AppCompat.Light.ListView.DropDown\" parent=\"Widget.AppCompat.ListView.DropDown\"/>\n    <style name=\"Widget.AppCompat.Light.PopupMenu\" parent=\"Base.Widget.AppCompat.Light.PopupMenu\">\n    </style>\n    <style name=\"Widget.AppCompat.Light.PopupMenu.Overflow\" parent=\"Base.Widget.AppCompat.Light.PopupMenu.Overflow\">\n    </style>\n    <style name=\"Widget.AppCompat.Light.SearchView\" parent=\"Widget.AppCompat.SearchView\"/>\n    <style name=\"Widget.AppCompat.Light.Spinner.DropDown.ActionBar\" parent=\"Widget.AppCompat.Spinner.DropDown.ActionBar\"/>\n    <style name=\"Widget.AppCompat.ListPopupWindow\" parent=\"Base.Widget.AppCompat.ListPopupWindow\">\n    </style>\n    <style name=\"Widget.AppCompat.ListView\" parent=\"Base.Widget.AppCompat.ListView\"/>\n    <style name=\"Widget.AppCompat.ListView.DropDown\" parent=\"Base.Widget.AppCompat.ListView.DropDown\"/>\n    <style name=\"Widget.AppCompat.ListView.Menu\" parent=\"Base.Widget.AppCompat.ListView.Menu\">\n    </style>\n    <style name=\"Widget.AppCompat.PopupMenu\" parent=\"Base.Widget.AppCompat.PopupMenu\">\n    </style>\n    <style name=\"Widget.AppCompat.PopupMenu.Overflow\" parent=\"Base.Widget.AppCompat.PopupMenu.Overflow\">\n    </style>\n    <style name=\"Widget.AppCompat.PopupWindow\" parent=\"Base.Widget.AppCompat.PopupWindow\">\n    </style>\n    <style name=\"Widget.AppCompat.ProgressBar\" parent=\"Base.Widget.AppCompat.ProgressBar\">\n    </style>\n    <style name=\"Widget.AppCompat.ProgressBar.Horizontal\" parent=\"Base.Widget.AppCompat.ProgressBar.Horizontal\">\n    </style>\n    <style name=\"Widget.AppCompat.RatingBar\" parent=\"Base.Widget.AppCompat.RatingBar\"/>\n    <style name=\"Widget.AppCompat.SearchView\" parent=\"Base.Widget.AppCompat.SearchView\"/>\n    <style name=\"Widget.AppCompat.SearchView.ActionBar\" parent=\"Base.Widget.AppCompat.SearchView.ActionBar\"/>\n    <style name=\"Widget.AppCompat.Spinner\" parent=\"Base.Widget.AppCompat.Spinner\"/>\n    <style name=\"Widget.AppCompat.Spinner.DropDown\"/>\n    <style name=\"Widget.AppCompat.Spinner.DropDown.ActionBar\"/>\n    <style name=\"Widget.AppCompat.Spinner.Underlined\" parent=\"Base.Widget.AppCompat.Spinner.Underlined\"/>\n    <style name=\"Widget.AppCompat.TextView.SpinnerItem\" parent=\"Base.Widget.AppCompat.TextView.SpinnerItem\"/>\n    <style name=\"Widget.AppCompat.Toolbar\" parent=\"Base.Widget.AppCompat.Toolbar\"/>\n    <style name=\"Widget.AppCompat.Toolbar.Button.Navigation\" parent=\"Base.Widget.AppCompat.Toolbar.Button.Navigation\"/>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-af/values-af.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-af/strings.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Navigeer tuis\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Navigeer op\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Nog opsies\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Klaar\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Sien alles\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Kies \\'n program\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Soek …\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Vee navraag uit\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Soeknavraag\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Soek\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Dien navraag in\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Stemsoektog\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Deel met\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Deel met %s\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Vou in\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-am/values-am.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-am/strings.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"ወደ መነሻ ይዳስሱ\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s፣ %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s፣ %2$s፣ %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"ወደ ላይ ይዳስሱ\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"ተጨማሪ አማራጮች\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"ተከናውኗል\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"ሁሉንም ይመልከቱ\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"መተግበሪያ ይምረጡ\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"ፈልግ…\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"መጠይቅ አጽዳ\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"የፍለጋ ጥያቄ\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"ፍለጋ\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"መጠይቅ ያስረክቡ\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"የድምፅ ፍለጋ\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"ከሚከተለው ጋር ያጋሩ\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"ከ%s ጋር ያጋሩ\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"ሰብስብ\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ar/values-ar.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-ar/strings.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"التنقل إلى الشاشة الرئيسية\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s، %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s، %2$s، %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"التنقل إلى أعلى\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"خيارات إضافية\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"تم\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"عرض الكل\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"اختيار تطبيق\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"بحث…\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"محو طلب البحث\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"طلب البحث\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"بحث\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"إرسال طلب البحث\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"البحث الصوتي\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"مشاركة مع\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"‏مشاركة مع %s\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"تصغير\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"+999\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-az-rAZ/values-az-rAZ.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-az-rAZ/strings.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Evə get\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Yuxarı get\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Daha çox seçim\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Hazırdır\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Hamısına baxın\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Tətbiq seçin\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Axtarış...\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Sorğunu təmizlə\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Axtarış sorğusu\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Axtarış\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Sorğunu göndərin\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Səsli axtarış\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Bununla paylaşın\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Dağıt\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-bg/values-bg.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-bg/strings.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Придвижване към „Начало“\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"„%1$s“ – %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"„%1$s“, „%2$s“ – %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Придвижване нагоре\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Още опции\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Готово\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Вижте всички\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Изберете приложение\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Търсете…\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Изчистване на заявката\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Заявка за търсене\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Търсене\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Изпращане на заявката\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Гласово търсене\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Споделяне със:\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Споделяне със: %s\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Свиване\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-bn-rBD/values-bn-rBD.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-bn-rBD/strings.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"হোম এ নেভিগেট করুন\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"উপরের দিকে নেভিগেট করুন\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"আরো বিকল্প\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"সম্পন্ন হয়েছে\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"সবগুলো দেখুন\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"একটি অ্যাপ্লিকেশান চয়ন করুন\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"অনুসন্ধান...\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"ক্যোয়ারী সাফ করুন\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"ক্যোয়ারী অনুসন্ধান করুন\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"অনুসন্ধান করুন\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"ক্যোয়ারী জমা দিন\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"ভয়েস অনুসন্ধান\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"এর সাথে ভাগ করুন\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"%s এর সাথে ভাগ করুন\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"সঙ্কুচিত করুন\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"৯৯৯+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ca/values-ca.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-ca/strings.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Navega a la pàgina d\\'inici\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Navega cap a dalt\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Més opcions\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Fet\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Mostra\\'ls tots\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Selecciona una aplicació\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Cerca...\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Esborra la consulta\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Consulta de cerca\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Cerca\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Envia la consulta\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Cerca per veu\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Comparteix amb\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Comparteix amb %s\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Replega\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"+999\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-cs/values-cs.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-cs/strings.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Přejít na plochu\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s – %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s – %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Přejít nahoru\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Více možností\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Hotovo\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Zobrazit vše\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Vybrat aplikaci\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Vyhledat…\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Smazat dotaz\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Vyhledávací dotaz\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Hledat\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Odeslat dotaz\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Hlasové vyhledávání\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Sdílet pomocí\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Sdílet pomocí %s\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Sbalit\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-da/values-da.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-da/strings.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Naviger hjem\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Naviger op\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Flere muligheder\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Luk\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Se alle\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Vælg en app\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Søg…\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Ryd forespørgslen\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Søgeforespørgsel\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Søg\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Indsend forespørgslen\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Talesøgning\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Del med\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Del med %s\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Skjul\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-de/values-de.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-de/strings.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Zur Startseite\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s: %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s: %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Nach oben\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Weitere Optionen\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Fertig\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Alle ansehen\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"App auswählen\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Suchen…\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Suchanfrage löschen\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Suchanfrage\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Suchen\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Suchanfrage senden\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Sprachsuche\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Freigeben für\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Freigeben für %s\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Minimieren\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-el/values-el.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-el/strings.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Πλοήγηση στην αρχική σελίδα\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Πλοήγηση προς τα επάνω\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Περισσότερες επιλογές\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Τέλος\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Προβολή όλων\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Επιλέξτε κάποια εφαρμογή\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Αναζήτηση…\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Διαγραφή ερωτήματος\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Ερώτημα αναζήτησης\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Αναζήτηση\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Υποβολή ερωτήματος\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Φωνητική αναζήτηση\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Κοινή χρήση με\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Κοινή χρήση με %s\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Σύμπτυξη\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-en-rAU/values-en-rAU.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-en-rAU/strings.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Navigate home\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Navigate up\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"More options\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Done\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"See all\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Choose an app\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Search…\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Clear query\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Search query\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Search\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Submit query\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Voice search\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Share with\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Share with %s\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Collapse\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-en-rGB/values-en-rGB.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-en-rGB/strings.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Navigate home\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Navigate up\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"More options\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Done\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"See all\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Choose an app\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Search…\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Clear query\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Search query\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Search\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Submit query\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Voice search\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Share with\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Share with %s\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Collapse\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-en-rIN/values-en-rIN.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-en-rIN/strings.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Navigate home\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Navigate up\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"More options\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Done\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"See all\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Choose an app\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Search…\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Clear query\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Search query\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Search\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Submit query\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Voice search\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Share with\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Share with %s\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Collapse\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-es/values-es.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-es/strings.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Ir a la pantalla de inicio\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Desplazarse hacia arriba\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Más opciones\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Listo\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Ver todo\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Seleccionar una aplicación\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Buscar…\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Borrar consulta\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Consulta\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Buscar\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Enviar consulta\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Búsqueda por voz\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Compartir con\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Compartir con %s\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Contraer\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"+999\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-es-rUS/values-es-rUS.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-es-rUS/strings.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Navegar a la página principal\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Navegar hacia arriba\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Más opciones\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Listo\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Ver todo\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Elige una aplicación.\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Buscar…\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Eliminar la consulta\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Consulta de búsqueda\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Búsqueda\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Enviar consulta\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Búsqueda por voz\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Compartir con\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Compartir con %s\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Contraer\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-et-rEE/values-et-rEE.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-et-rEE/strings.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Navigeerimine avaekraanile\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Navigeerimine üles\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Rohkem valikuid\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Valmis\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Kuva kõik\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Valige rakendus\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Otsige …\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Päringu tühistamine\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Otsingupäring\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Otsing\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Päringu esitamine\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Häälotsing\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Jagamine:\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Jagamine kasutajaga %s\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Ahendamine\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-eu-rES/values-eu-rES.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-eu-rES/strings.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Joan orri nagusira\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Joan gora\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Aukera gehiago\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Eginda\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Ikusi guztiak\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Aukeratu aplikazio bat\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Bilatu…\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Garbitu kontsulta\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Bilaketa-kontsulta\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Bilatu\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Bidali kontsulta\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Ahots bidezko bilaketa\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Partekatu hauekin\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Partekatu %s erabiltzailearekin\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Tolestu\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-fa/values-fa.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-fa/strings.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"پیمایش به صفحه اصلی\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"‏%1$s‏، %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"‏%1$s‏، %2$s‏، %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"پیمایش به بالا\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"گزینه‌های بیشتر\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"انجام شد\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"مشاهده همه\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"انتخاب برنامه\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"جستجو…\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"پاک کردن عبارت جستجو\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"عبارت جستجو\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"جستجو\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"ارسال عبارت جستجو\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"جستجوی شفاهی\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"اشتراک‌گذاری با\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"‏اشتراک‌گذاری با %s\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"کوچک کردن\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"۹۹۹+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-fi/values-fi.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-fi/strings.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Siirry etusivulle\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Siirry ylös\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Lisää\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Valmis\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Näytä kaikki\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Valitse sovellus\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Haku…\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Tyhjennä kysely\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Hakulauseke\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Haku\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Lähetä kysely\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Puhehaku\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Jakaminen:\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Jakaminen: %s\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Kutista\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-fr/values-fr.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-fr/strings.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Revenir à l\\'accueil\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Revenir en haut de la page\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Plus d\\'options\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"OK\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Tout afficher\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Sélectionner une application\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Rechercher…\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Effacer la requête\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Requête de recherche\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Rechercher\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Envoyer la requête\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Recherche vocale\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Partager avec\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Partager avec %s\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Réduire\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\">999\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-fr-rCA/values-fr-rCA.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-fr-rCA/strings.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Revenir à l\\'accueil\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Revenir en haut de la page\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Plus d\\'options\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Terminé\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Voir toutes les chaînes\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Sélectionnez une application\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Recherche en cours...\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Effacer la requête\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Requête de recherche\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Rechercher\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Envoyer la requête\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Recherche vocale\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Partager\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Partager avec %s\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Réduire\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\">999\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-gl-rES/values-gl-rES.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-gl-rES/strings.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Ir á páxina de inicio\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Desprazarse cara arriba\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Máis opcións\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Feito\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Ver todas\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Escoller unha aplicación\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Buscar…\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Borrar consulta\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Consulta de busca\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Buscar\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Enviar consulta\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Busca de voz\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Compartir con\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Compartir con %s\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Contraer\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\">999\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-gu-rIN/values-gu-rIN.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-gu-rIN/strings.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"હોમ પર નેવિગેટ કરો\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"ઉપર નેવિગેટ કરો\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"વધુ વિકલ્પો\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"થઈ ગયું\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"બધું જુઓ\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"એક એપ્લિકેશન પસંદ કરો\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"શોધો…\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"ક્વેરી સાફ કરો\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"શોધ ક્વેરી\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"શોધો\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"ક્વેરી સબમિટ કરો\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"વૉઇસ શોધ\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"આની સાથે શેર કરો\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"%s સાથે શેર કરો\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"સંકુચિત કરો\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-h720dp/values-h720dp.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-h720dp/dimens.xml -->\n    <eat-comment/>\n    <dimen name=\"abc_alert_dialog_button_bar_height\">54dip</dimen>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hdpi/values-hdpi.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-hdpi/styles_base.xml -->\n    <eat-comment/>\n    <style name=\"Base.Widget.AppCompat.DrawerArrowToggle\" parent=\"Base.Widget.AppCompat.DrawerArrowToggle.Common\">\n          <item name=\"barLength\">18.66dp</item>\n          <item name=\"gapBetweenBars\">3.33dp</item>\n          <item name=\"drawableSize\">24dp</item>\n     </style>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hi/values-hi.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-hi/strings.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"मुख्यपृष्ठ पर नेविगेट करें\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"ऊपर नेविगेट करें\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"अधिक विकल्प\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"पूर्ण\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"सभी देखें\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"कोई एप्‍लिकेशन चुनें\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"खोजा जा रहा है…\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"क्‍वेरी साफ़ करें\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"खोज क्वेरी\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"खोजें\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"क्वेरी सबमिट करें\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"ध्वनि खोज\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"इसके द्वारा साझा करें\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"%s के साथ साझा करें\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"संक्षिप्त करें\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hr/values-hr.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-hr/strings.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Idi na početnu\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Idi gore\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Dodatne opcije\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Gotovo\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Prikaži sve\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Odabir aplikacije\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Pretražite…\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Izbriši upit\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Upit za pretraživanje\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Pretraživanje\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Pošalji upit\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Glasovno pretraživanje\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Dijeljenje sa\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Dijeljenje sa: %s\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Sažmi\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hu/values-hu.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-hu/strings.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Ugrás a főoldalra\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Felfelé mozgatás\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"További lehetőségek\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Kész\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Összes megtekintése\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Válasszon ki egy alkalmazást\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Keresés…\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Lekérdezés törlése\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Keresési lekérdezés\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Keresés\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Lekérdezés küldése\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Hangalapú keresés\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Megosztás a következővel:\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Megosztás a következővel: %s\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Összecsukás\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hy-rAM/values-hy-rAM.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-hy-rAM/strings.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Ուղղվել տուն\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Ուղղվել վերև\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Այլ ընտրանքներ\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Կատարված է\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Տեսնել բոլորը\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Ընտրել ծրագիր\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Որոնում...\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Մաքրել հարցումը\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Որոնման հարցում\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Որոնել\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Ուղարկել հարցումը\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Ձայնային որոնում\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Տարածել\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Տարածել ըստ %s\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Թաքցնել\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-in/values-in.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-in/strings.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Navigasi ke beranda\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Navigasi naik\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Opsi lain\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Selesai\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Lihat semua\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Pilih aplikasi\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Telusuri...\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Hapus kueri\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Kueri penelusuran\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Telusuri\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Kirim kueri\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Penelusuran suara\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Bagikan dengan\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Bagikan dengan %s\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Ciutkan\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-is-rIS/values-is-rIS.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-is-rIS/strings.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Fara heim\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Fara upp\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Fleiri valkostir\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Lokið\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Sjá allt\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Veldu forrit\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Leita…\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Hreinsa fyrirspurn\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Leitarfyrirspurn\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Leita\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Senda fyrirspurn\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Raddleit\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Deila með\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Deila með %s\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Minnka\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-it/values-it.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-it/strings.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Vai alla home page\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Vai in alto\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Altre opzioni\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Fine\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Visualizza tutte\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Scegli un\\'applicazione\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Cerca…\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Cancella query\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Query di ricerca\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Cerca\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Invia query\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Ricerca vocale\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Condividi con\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Condividi con %s\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Comprimi\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-iw/values-iw.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-iw/strings.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"נווט לדף הבית\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"‏%1$s‏, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"‏%1$s‏, %2$s‏, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"נווט למעלה\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"עוד אפשרויות\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"בוצע\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"ראה הכל\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"בחר אפליקציה\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"חפש…\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"מחק שאילתה\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"שאילתת חיפוש\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"חפש\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"שלח שאילתה\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"חיפוש קולי\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"שתף עם\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"‏שתף עם %s\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"כווץ\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"‎999+‎\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ja/values-ja.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-ja/strings.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"ホームへ移動\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s、%2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s、%2$s、%3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"上へ移動\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"その他のオプション\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"完了\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"すべて表示\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"アプリの選択\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"検索…\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"検索キーワードを削除\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"検索キーワード\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"検索\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"検索キーワードを送信\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"音声検索\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"共有\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"%sと共有\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"折りたたむ\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ka-rGE/values-ka-rGE.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-ka-rGE/strings.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"მთავარზე ნავიგაცია\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"ზემოთ ნავიგაცია\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"მეტი ვარიანტები\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"დასრულდა\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"ყველას ნახვა\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"აპის არჩევა\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"ძიება...\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"მოთხოვნის გასუფთავება\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"ძიების მოთხოვნა\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"ძიება\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"მოთხოვნის გადაგზავნა\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"ხმოვანი ძიება\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"გაზიარება:\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"%s-თან გაზიარება\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"აკეცვა\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-kk-rKZ/values-kk-rKZ.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-kk-rKZ/strings.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Негізгі бетте қозғалу\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Жоғары қозғалу\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Басқа опциялар\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Дайын\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Барлығын көру\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Қолданбаны таңдау\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Іздеу…\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Сұрақты жою\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Сұрақты іздеу\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Іздеу\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Сұрақты жіберу\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Дауыс арқылы іздеу\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Бөлісу\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"%s бөлісу\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Тасалау\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-km-rKH/values-km-rKH.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-km-rKH/strings.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"រកមើល​ទៅ​ដើម\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"រកមើល​ឡើងលើ\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"ជម្រើស​ច្រើន​ទៀត\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"រួចរាល់\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"មើល​ទាំងអស់\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"ជ្រើស​កម្មវិធី​​\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"ស្វែងរក…\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"សម្អាត​សំណួរ\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"ស្វែងរក​សំណួរ\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"ស្វែងរក\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"ដាក់​​​ស្នើ​សំណួរ\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"ការស្វែងរក​សំឡេង\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"ចែករំលែក​ជាមួយ\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"ចែករំលែក​ជាមួយ %s\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"បង្រួម\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-kn-rIN/values-kn-rIN.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-kn-rIN/strings.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"ಮುಖಪುಟವನ್ನು ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"ಮೇಲಕ್ಕೆ ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"ಇನ್ನಷ್ಟು ಆಯ್ಕೆಗಳು\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"ಮುಗಿದಿದೆ\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"ಎಲ್ಲವನ್ನೂ ನೋಡಿ\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"ಒಂದು ಅಪ್ಲಿಕೇಶನ್ ಆಯ್ಕೆಮಾಡಿ\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"ಹುಡುಕಿ…\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"ಪ್ರಶ್ನೆಯನ್ನು ತೆರವುಗೊಳಿಸು\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"ಪ್ರಶ್ನೆಯನ್ನು ಹುಡುಕಿ\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"ಹುಡುಕು\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"ಪ್ರಶ್ನೆಯನ್ನು ಸಲ್ಲಿಸು\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"ಧ್ವನಿ ಹುಡುಕಾಟ\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"ಇವರೊಂದಿಗೆ ಹಂಚಿಕೊಳ್ಳಿ\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"%s ಜೊತೆಗೆ ಹಂಚಿಕೊಳ್ಳಿ\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"ಸಂಕುಚಿಸು\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ko/values-ko.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-ko/strings.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"홈 탐색\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"위로 탐색\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"옵션 더보기\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"완료\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"전체 보기\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"앱 선택\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"검색...\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"검색어 삭제\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"검색어\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"검색\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"검색어 보내기\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"음성 검색\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"공유 대상\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"%s와(과) 공유\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"접기\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ky-rKG/values-ky-rKG.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-ky-rKG/strings.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Үйгө багыттоо\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Жогору\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Көбүрөөк мүмкүнчүлүктөр\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Даяр\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Бардыгын көрүү\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Колдонмо тандоо\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Издөө…\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Талаптарды тазалоо\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Издөө талаптары\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Издөө\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Талап жөнөтүү\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Үн аркылуу издөө\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Бөлүшүү\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"%s аркылуу бөлүшүү\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Жыйнап коюу\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-land/values-land.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-land/bools.xml -->\n    <eat-comment/>\n    <bool name=\"abc_action_bar_embed_tabs_pre_jb\">true</bool>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-land/config.xml -->\n    <eat-comment/>\n    <bool name=\"abc_config_allowActionMenuItemTextWithIcon\">true</bool>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-land/dimens_material.xml -->\n    <eat-comment/>\n    <dimen name=\"abc_action_bar_default_height_material\">48dp</dimen>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-land/dimens.xml -->\n    <eat-comment/>\n    <dimen name=\"abc_action_bar_progress_bar_size\">32dp</dimen>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-land/dimens_material.xml -->\n    <eat-comment/>\n    <dimen name=\"abc_text_size_subtitle_material_toolbar\">12dp</dimen>\n    <dimen name=\"abc_text_size_title_material_toolbar\">14dp</dimen>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-large/values-large.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-large/bools.xml -->\n    <eat-comment/>\n    <bool name=\"abc_action_bar_embed_tabs_pre_jb\">true</bool>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-large/config.xml -->\n    <eat-comment/>\n    <bool name=\"abc_config_allowActionMenuItemTextWithIcon\">true</bool>\n    <dimen name=\"abc_config_prefDialogWidth\">440dp</dimen>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-large/dimens.xml -->\n    <eat-comment/>\n    <dimen name=\"abc_search_view_text_min_width\">192dip</dimen>\n    <item name=\"dialog_fixed_height_major\" type=\"dimen\">60%</item>\n    <item name=\"dialog_fixed_height_minor\" type=\"dimen\">90%</item>\n    <item name=\"dialog_fixed_width_major\" type=\"dimen\">60%</item>\n    <item name=\"dialog_fixed_width_minor\" type=\"dimen\">90%</item>\n    <integer name=\"abc_max_action_buttons\">4</integer>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-large/themes_base.xml -->\n    <eat-comment/>\n    <style name=\"Base.Theme.AppCompat.DialogWhenLarge\" parent=\"Base.Theme.AppCompat.Dialog.FixedSize\"/>\n    <style name=\"Base.Theme.AppCompat.Light.DialogWhenLarge\" parent=\"Base.Theme.AppCompat.Light.Dialog.FixedSize\"/>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-lo-rLA/values-lo-rLA.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-lo-rLA/strings.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"ກັບໄປໜ້າຫຼັກ\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"ຂຶ້ນເທິງ\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"ໂຕເລືອກອື່ນ\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"ແລ້ວໆ\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"ເບິ່ງທັງຫມົດ\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"ເລືອກແອັບຯ\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"ຊອກຫາ\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"ລຶບຂໍ້ຄວາມຊອກຫາ\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"ຊອກຫາ\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"ຊອກຫາ\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"ສົ່ງການຊອກຫາ\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"ຊອກຫາດ້ວຍສຽງ\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"ແບ່ງປັນກັບ\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"ແບ່ງ​ປັນ​ກັບ​ %s\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"ຫຍໍ້\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-lt/values-lt.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-lt/strings.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Eiti į pagrindinį puslapį\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Eiti į viršų\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Daugiau parinkčių\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Atlikta\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Peržiūrėti viską\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Pasirinkti programą\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Ieškoti...\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Išvalyti užklausą\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Paieškos užklausa\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Paieška\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Pateikti užklausą\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Paieška balsu\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Bendrinti naudojant\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Bendrinti naudojant „%s“\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Sutraukti\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-lv/values-lv.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-lv/strings.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Pārvietoties uz sākuma ekrānu\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s: %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s: %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Pārvietoties augšup\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Vairāk opciju\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Gatavs\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Skatīt visu\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Izvēlieties lietotni\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Meklējiet…\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Notīrīt vaicājumu\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Meklēšanas vaicājums\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Meklēt\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Iesniegt vaicājumu\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Meklēšana ar balsi\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Kopīgot ar:\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Kopīgot ar %s\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Sakļaut\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-mk-rMK/values-mk-rMK.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-mk-rMK/strings.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Движи се кон дома\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Движи се нагоре\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Повеќе опции\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Готово\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Види ги сите\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Избери апликација\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Пребарување…\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Исчисти барање\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Пребарај барање\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Пребарај\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Поднеси барање\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Гласовно пребарување\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Сподели со\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Собери\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ml-rIN/values-ml-rIN.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-ml-rIN/strings.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"ഹോമിലേക്ക് നാവിഗേറ്റുചെയ്യുക\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"മുകളിലേക്ക് നാവിഗേറ്റുചെയ്യുക\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"കൂടുതല്‍ ഓപ്‌ഷനുകള്‍\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"പൂർത്തിയാക്കി\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"എല്ലാം കാണുക\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"ഒരു അപ്ലിക്കേഷൻ തിരഞ്ഞെടുക്കുക\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"തിരയുക…\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"അന്വേഷണം മായ്‌ക്കുക\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"തിരയൽ അന്വേഷണം\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"തിരയൽ\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"അന്വേഷണം സമർപ്പിക്കുക\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"ശബ്ദ തിരയൽ\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"ഇവരുമായി പങ്കിടുക\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"%s എന്നതുമായി പങ്കിടുക\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"ചുരുക്കുക\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-mn-rMN/values-mn-rMN.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-mn-rMN/strings.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Нүүр хуудас руу шилжих\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Дээш шилжих\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Нэмэлт сонголтууд\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Дууссан\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Бүгдийг харах\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Апп сонгох\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Хайх...\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Асуулгыг цэвэрлэх\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Хайх асуулга\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Хайх\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Асуулгыг илгээх\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Дуут хайлт\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Хуваалцах\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"%s-тай хуваалцах\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Хумих\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-mr-rIN/values-mr-rIN.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-mr-rIN/strings.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"मुख्‍यपृष्‍ठ नेव्‍हिगेट करा\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"वर नेव्‍हिगेट करा\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"अधिक पर्याय\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"पूर्ण झाले\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"सर्व पहा\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"एक अ‍ॅप निवडा\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"शोधा…\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"क्‍वेरी स्‍पष्‍ट करा\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"शोध क्वेरी\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"शोध\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"क्वेरी सबमिट करा\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"व्हॉइस शोध\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"यांच्यासह सामायिक करा\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"%s सह सामायिक करा\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"संक्षिप्त करा\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ms-rMY/values-ms-rMY.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-ms-rMY/strings.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Navigasi skrin utama\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Navigasi ke atas\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Lagi pilihan\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Selesai\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Lihat semua\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Pilih apl\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Cari…\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Kosongkan pertanyaan\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Pertanyaan carian\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Cari\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Serah pertanyaan\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Carian suara\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Kongsi dengan\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Kongsi dengan %s\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Runtuhkan\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-my-rMM/values-my-rMM.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-my-rMM/strings.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"မူလနေရာကို သွားရန်\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s၊ %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s ၊ %2$s ၊ %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"အပေါ်သို့သွားရန်\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"ပိုမိုရွေးချယ်စရာများ\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"ပြီးဆုံးပါပြီ\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"အားလုံးကို ကြည့်ရန်\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"အပလီကေးရှင်း တစ်ခုခုကို ရွေးချယ်ပါ\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"ရှာဖွေပါ...\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"ရှာစရာ အချက်အလက်များ ရှင်းလင်းရန်\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"ရှာစရာ အချက်အလက်နေရာ\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"ရှာဖွေရန်\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"ရှာဖွေစရာ အချက်အလက်ကို အတည်ပြုရန်\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"အသံဖြင့် ရှာဖွေခြင်း\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"မျှဝေဖို့ ရွေးပါ\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"%s ကို မျှဝေပါရန်\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"ခေါက်ရန်\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"၉၉၉+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-nb/values-nb.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-nb/strings.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Gå til startsiden\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s – %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s – %2$s – %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Gå opp\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Flere alternativer\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Ferdig\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Se alle\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Velg en app\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Søk …\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Slett søket\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Søkeord\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Søk\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Utfør søket\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Talesøk\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Del med\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Del med %s\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Skjul\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ne-rNP/values-ne-rNP.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-ne-rNP/strings.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"गृह खोज्नुहोस्\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"माथि खोज्नुहोस्\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"थप विकल्पहरू\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"सम्पन्न भयो\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"सबै हेर्नुहोस्\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"एउटा अनुप्रयोग छान्नुहोस्\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"खोज्नुहोस्...\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"प्रश्‍न हटाउनुहोस्\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"जिज्ञासाको खोज गर्नुहोस्\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"खोज्नुहोस्\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"जिज्ञासा पेस गर्नुहोस्\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"भ्वाइस खोजी\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"साझेदारी गर्नुहोस्...\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"%s सँग साझेदारी गर्नुहोस्\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"संक्षिप्त पार्नुहोस्\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"९९९+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-nl/values-nl.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-nl/strings.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Navigeren naar startpositie\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Omhoog navigeren\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Meer opties\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Gereed\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Alles weergeven\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Een app selecteren\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Zoeken…\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Zoekopdracht wissen\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Zoekopdracht\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Zoeken\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Zoekopdracht verzenden\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Gesproken zoekopdracht\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Delen met\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Delen met %s\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Samenvouwen\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-pa-rIN/values-pa-rIN.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-pa-rIN/strings.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"ਹੋਮ ਨੈਵੀਗੇਟ ਕਰੋ\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"ਉੱਪਰ ਨੈਵੀਗੇਟ ਕਰੋ\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"ਹੋਰ ਚੋਣਾਂ\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"ਹੋ ਗਿਆ\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"ਸਭ ਦੇਖੋ\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"ਇੱਕ ਐਪ ਚੁਣੋ\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"ਖੋਜ…\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"ਸਵਾਲ ਹਟਾਓ\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"ਸਵਾਲ ਖੋਜੋ\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"ਖੋਜੋ\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"ਸਵਾਲ ਪ੍ਰਸਤੁਤ ਕਰੋ\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"ਵੌਇਸ ਖੋਜ\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"ਇਸ ਨਾਲ ਸ਼ੇਅਰ ਕਰੋ\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"%s ਨਾਲ ਸ਼ੇਅਰ ਕਰੋ\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"ਨਸ਼ਟ ਕਰੋ\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-pl/values-pl.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-pl/strings.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Przejdź do strony głównej\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Przejdź wyżej\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Więcej opcji\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Gotowe\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Zobacz wszystkie\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Wybierz aplikację\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Szukaj…\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Wyczyść zapytanie\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Wyszukiwane hasło\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Szukaj\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Wyślij zapytanie\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Wyszukiwanie głosowe\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Udostępnij dla\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Udostępnij dla %s\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Zwiń\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-port/values-port.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-port/bools.xml -->\n    <eat-comment/>\n    <bool name=\"abc_action_bar_embed_tabs\">false</bool>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-pt/values-pt.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-pt/strings.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Navegar para a página inicial\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Navegar para cima\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Mais opções\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Concluído\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Ver tudo\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Selecione um app\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Pesquisar...\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Limpar consulta\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Consulta de pesquisa\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Pesquisar\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Enviar consulta\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Pesquisa por voz\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Compartilhar com\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Compartilhar com %s\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Recolher\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-pt-rPT/values-pt-rPT.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-pt-rPT/strings.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Navegar para a página inicial\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Navegar para cima\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Mais opções\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Concluído\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Ver tudo\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Escolher uma aplicação\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Pesquisar...\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Limpar consulta\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Consulta de pesquisa\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Pesquisar\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Enviar consulta\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Pesquisa por voz\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Partilhar com\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Partilhar com %s\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Reduzir\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"+999\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ro/values-ro.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-ro/strings.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Navigați la ecranul de pornire\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Navigați în sus\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Mai multe opțiuni\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Terminat\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Afișați-le pe toate\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Alegeți o aplicație\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Căutați…\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Ștergeți interogarea\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Interogare de căutare\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Căutați\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Trimiteți interogarea\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Căutare vocală\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Trimiteți la\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Trimiteți la %s\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Restrângeți\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"˃999\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ru/values-ru.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-ru/strings.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Перейти на главный экран\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Перейти вверх\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Другие параметры\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Готово\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Показать все\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Выбрать приложение\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Поиск\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Удалить запрос\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Поисковый запрос\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Поиск\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Отправить запрос\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Голосовой поиск\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Открыть доступ\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Открыть доступ пользователю %s\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Свернуть\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\">999\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-si-rLK/values-si-rLK.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-si-rLK/strings.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"ගෙදරට සංචාලනය කරන්න\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"ඉහලට සංචාලනය කරන්න\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"තවත් විකල්ප\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"අවසාන වූ\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"සියල්ල බලන්න\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"යෙදුමක් තෝරන්න\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"සොයන්න...\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"විමසුම හිස් කරන්න\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"සෙවුම් විමසුම\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"සෙවීම\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"විමසුම යොමු කරන්න\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"හඬ සෙවීම\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"සමඟ බෙදාගන්න\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"%s සමඟ බෙදාගන්න\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"හකුළන්න\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sk/values-sk.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-sk/strings.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Prejsť na plochu\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Prejsť hore\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Ďalšie možnosti\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Hotovo\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Zobraziť všetko\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Zvoľte aplikáciu\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Vyhľadať…\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Vymazať dopyt\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Vyhľadávací dopyt\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Hľadať\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Odoslať dopyt\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Hlasové vyhľadávanie\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Zdieľať pomocou\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Zdieľať pomocou %s\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Zbaliť\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sl/values-sl.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-sl/strings.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Krmarjenje domov\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Krmarjenje navzgor\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Več možnosti\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Končano\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Pokaži vse\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Izbira aplikacije\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Iskanje …\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Izbris poizvedbe\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Iskalna poizvedba\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Iskanje\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Pošiljanje poizvedbe\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Glasovno iskanje\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Deljenje z\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Deljenje z:\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Strni\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sq-rAL/values-sq-rAL.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-sq-rAL/strings.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Orientohu për në shtëpi\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Ngjitu lart\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Opsione të tjera\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"U krye!\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Shikoji të gjitha\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Zgjidh një aplikacion\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Kërko...\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Pastro pyetjen\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Kërko pyetjen\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Kërko\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Dërgo pyetjen\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Kërkim me zë\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Shpërnda publikisht me\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Shpërnda publikisht me %s\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Shpalos\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sr/values-sr.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-sr/strings.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Одлазак на Почетну\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Кретање нагоре\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Још опција\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Готово\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Прикажи све\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Избор апликације\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Претражите...\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Брисање упита\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Упит за претрагу\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Претрага\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Слање упита\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Гласовна претрага\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Дели са\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Дели са апликацијом %s\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Скупи\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\">999\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sv/values-sv.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-sv/strings.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Visa startsidan\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Navigera uppåt\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Fler alternativ\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Klart\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Visa alla\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Välj en app\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Sök …\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Ta bort frågan\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Sökfråga\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Sök\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Skicka fråga\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Röstsökning\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Dela med\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Dela med %s\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Komprimera\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\">999\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sw/values-sw.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-sw/strings.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Nenda mwanzo\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Nenda juu\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Chaguo zaidi\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Nimemaliza\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Angalia zote\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Chagua programu\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Tafuta…\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Futa hoja\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Hoja ya utafutaji\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Tafuta\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Wasilisha hoja\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Tafuta kwa kutamka\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Shiriki na:\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Shiriki na %s\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Kunja\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sw600dp/values-sw600dp.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-sw600dp/dimens.xml -->\n    <eat-comment/>\n    <dimen name=\"abc_action_bar_content_inset_material\">24dp</dimen>\n    <dimen name=\"abc_action_bar_default_height_material\">64dp</dimen>\n    <dimen name=\"abc_action_bar_default_padding_end_material\">8dp</dimen>\n    <dimen name=\"abc_action_bar_default_padding_start_material\">8dp</dimen>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-sw600dp/config.xml -->\n    <eat-comment/>\n    <dimen name=\"abc_config_prefDialogWidth\">580dp</dimen>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-sw600dp/dimens.xml -->\n    <eat-comment/>\n    <dimen name=\"abc_text_size_subtitle_material_toolbar\">16dp</dimen>\n    <dimen name=\"abc_text_size_title_material_toolbar\">20dp</dimen>\n    <integer name=\"abc_max_action_buttons\">5</integer>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ta-rIN/values-ta-rIN.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-ta-rIN/strings.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"முகப்பிற்கு வழிசெலுத்து\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"மேலே வழிசெலுத்து\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"மேலும் விருப்பங்கள்\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"முடிந்தது\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"எல்லாம் காட்டு\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"பயன்பாட்டைத் தேர்வுசெய்க\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"தேடு...\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"வினவலை அழி\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"தேடல் வினவல்\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"தேடு\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"வினவலைச் சமர்ப்பி\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"குரல் தேடல்\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"இதனுடன் பகிர்\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"%s உடன் பகிர்\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"சுருக்கு\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-te-rIN/values-te-rIN.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-te-rIN/strings.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"హోమ్‌కు నావిగేట్ చేయండి\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"పైకి నావిగేట్ చేయండి\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"మరిన్ని ఎంపికలు\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"పూర్తయింది\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"అన్నీ చూడండి\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"అనువర్తనాన్ని ఎంచుకోండి\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"శోధించు...\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"ప్రశ్నను క్లియర్ చేయి\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"ప్రశ్న శోధించండి\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"శోధించు\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"ప్రశ్నని సమర్పించు\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"వాయిస్ శోధన\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"వీరితో భాగస్వామ్యం చేయి\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"%sతో భాగస్వామ్యం చేయి\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"కుదించండి\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-th/values-th.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-th/strings.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"นำทางไปหน้าแรก\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"นำทางขึ้น\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"ตัวเลือกอื่น\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"เสร็จสิ้น\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"ดูทั้งหมด\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"เลือกแอป\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"ค้นหา…\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"ล้างข้อความค้นหา\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"ข้อความค้นหา\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"ค้นหา\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"ส่งข้อความค้นหา\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"ค้นหาด้วยเสียง\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"แชร์กับ\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"แชร์กับ %s\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"ยุบ\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-tl/values-tl.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-tl/strings.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Mag-navigate patungo sa home\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Mag-navigate pataas\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Higit pang mga opsyon\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Tapos na\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Tingnan lahat\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Pumili ng isang app\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Maghanap…\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"I-clear ang query\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Query sa paghahanap\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Maghanap\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Isumite ang query\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Paghahanap gamit ang boses\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Ibahagi sa/kay\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Ibahagi sa/kay %s\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"I-collapse\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-tr/values-tr.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-tr/strings.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Ana ekrana git\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Yukarı git\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Diğer seçenekler\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Tamamlandı\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Tümünü göster\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Bir uygulama seçin\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Ara…\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Sorguyu temizle\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Arama sorgusu\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Ara\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Sorguyu gönder\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Sesli arama\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Şununla paylaş\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"%s ile paylaş\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Daralt\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-uk/values-uk.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-uk/strings.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Перейти на головний\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Перейти вгору\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Інші опції\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Готово\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Переглянути всі\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Вибрати програму\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Пошук…\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Очистити запит\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Пошуковий запит\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Пошук\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Надіслати запит\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Голосовий пошук\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Надіслати через\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Надіслати через %s\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Згорнути\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ur-rPK/values-ur-rPK.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-ur-rPK/strings.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"ہوم پر نیویگیٹ کریں\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"اوپر نیویگیٹ کریں\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"مزید اختیارات\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"ہو گیا\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"سبھی دیکھیں\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"ایک ایپ منتخب کریں\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"تلاش کریں…\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"استفسار صاف کریں\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"استفسار تلاش کریں\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"تلاش کریں\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"استفسار جمع کرائیں\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"صوتی تلاش\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"اشتراک کریں مع\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"‏%s کے ساتھ اشتراک کریں\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"سکیڑیں\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"‎999+‎\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-uz-rUZ/values-uz-rUZ.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-uz-rUZ/strings.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Boshiga o‘tish\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Yuqoriga o‘tish\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Qo‘shimcha sozlamalar\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Tayyor\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Barchasini ko‘rish\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Dastur tanlang\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Qidirish…\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"So‘rovni tozalash\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"So‘rovni izlash\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Izlash\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"So‘rov yaratish\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Ovozli qidiruv\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Bo‘lishish:\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Yig‘ish\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v11/values-v11.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-v11/styles_base_text.xml -->\n    <eat-comment/>\n    <style name=\"Base.TextAppearance.AppCompat.Inverse\">\n        <item name=\"android:textColor\">?android:attr/textColorPrimaryInverse</item>\n        <item name=\"android:textColorHint\">?android:attr/textColorHintInverse</item>\n        <item name=\"android:textColorHighlight\">?android:attr/textColorHighlightInverse</item>\n        <item name=\"android:textColorLink\">?android:attr/textColorLinkInverse</item>\n    </style>\n    <style name=\"Base.TextAppearance.AppCompat.Large.Inverse\">\n        <item name=\"android:textColor\">?android:attr/textColorPrimaryInverse</item>\n        <item name=\"android:textColorHint\">?android:attr/textColorHintInverse</item>\n        <item name=\"android:textColorHighlight\">?android:attr/textColorHighlightInverse</item>\n        <item name=\"android:textColorLink\">?android:attr/textColorLinkInverse</item>\n    </style>\n    <style name=\"Base.TextAppearance.AppCompat.Medium.Inverse\">\n        <item name=\"android:textColor\">?android:attr/textColorSecondaryInverse</item>\n        <item name=\"android:textColorHint\">?android:attr/textColorHintInverse</item>\n        <item name=\"android:textColorHighlight\">?android:attr/textColorHighlightInverse</item>\n        <item name=\"android:textColorLink\">?android:attr/textColorLinkInverse</item>\n    </style>\n    <style name=\"Base.TextAppearance.AppCompat.Small.Inverse\">\n        <item name=\"android:textColor\">?android:attr/textColorTertiaryInverse</item>\n        <item name=\"android:textColorHint\">?android:attr/textColorHintInverse</item>\n        <item name=\"android:textColorHighlight\">?android:attr/textColorHighlightInverse</item>\n        <item name=\"android:textColorLink\">?android:attr/textColorLinkInverse</item>\n    </style>\n    <style name=\"Base.TextAppearance.AppCompat.Subhead.Inverse\">\n        <item name=\"android:textColor\">?android:attr/textColorPrimaryInverse</item>\n        <item name=\"android:textColorHint\">?android:attr/textColorHintInverse</item>\n        <item name=\"android:textColorHighlight\">?android:attr/textColorHighlightInverse</item>\n        <item name=\"android:textColorLink\">?android:attr/textColorLinkInverse</item>\n    </style>\n    <style name=\"Base.TextAppearance.AppCompat.Title.Inverse\">\n        <item name=\"android:textColor\">?android:attr/textColorPrimaryInverse</item>\n        <item name=\"android:textColorHint\">?android:attr/textColorHintInverse</item>\n        <item name=\"android:textColorHighlight\">?android:attr/textColorHighlightInverse</item>\n        <item name=\"android:textColorLink\">?android:attr/textColorLinkInverse</item>\n    </style>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-v11/themes_base.xml -->\n    <eat-comment/>\n    <style name=\"Base.Theme.AppCompat.Dialog\" parent=\"Base.V11.Theme.AppCompat.Dialog\"/>\n    <style name=\"Base.Theme.AppCompat.Light.Dialog\" parent=\"Base.V11.Theme.AppCompat.Light.Dialog\"/>\n    <style name=\"Base.V11.Theme.AppCompat.Dialog\" parent=\"Base.V7.Theme.AppCompat.Dialog\">\n        <item name=\"android:buttonBarStyle\">@style/Widget.AppCompat.ButtonBar.AlertDialog</item>\n        <item name=\"android:borderlessButtonStyle\">@style/Widget.AppCompat.Button.Borderless</item>\n        <item name=\"android:windowCloseOnTouchOutside\">@bool/abc_config_closeDialogWhenTouchOutside</item>\n    </style>\n    <style name=\"Base.V11.Theme.AppCompat.Light.Dialog\" parent=\"Base.V7.Theme.AppCompat.Light.Dialog\">\n        <item name=\"android:buttonBarStyle\">@style/Widget.AppCompat.ButtonBar.AlertDialog</item>\n        <item name=\"android:borderlessButtonStyle\">@style/Widget.AppCompat.Button.Borderless</item>\n        <item name=\"android:windowCloseOnTouchOutside\">@bool/abc_config_closeDialogWhenTouchOutside</item>\n    </style>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-v11/styles_base.xml -->\n    <eat-comment/>\n    <style name=\"Base.Widget.AppCompat.ProgressBar\" parent=\"android:Widget.Holo.ProgressBar\">\n    </style>\n    <style name=\"Base.Widget.AppCompat.ProgressBar.Horizontal\" parent=\"android:Widget.Holo.ProgressBar.Horizontal\">\n    </style>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-v11/themes_base.xml -->\n    <eat-comment/>\n    <style name=\"Platform.AppCompat\" parent=\"Platform.V11.AppCompat\"/>\n    <style name=\"Platform.AppCompat.Light\" parent=\"Platform.V11.AppCompat.Light\"/>\n    <style name=\"Platform.V11.AppCompat\" parent=\"android:Theme.Holo\">\n        <item name=\"android:windowNoTitle\">true</item>\n        <item name=\"android:windowActionBar\">false</item>\n\n        <item name=\"android:buttonBarStyle\">?attr/buttonBarStyle</item>\n        <item name=\"android:buttonBarButtonStyle\">?attr/buttonBarButtonStyle</item>\n\n        <item name=\"selectableItemBackground\">?android:attr/selectableItemBackground</item>\n\n        <!-- Window colors -->\n        <item name=\"android:colorForeground\">@color/foreground_material_dark</item>\n        <item name=\"android:colorForegroundInverse\">@color/foreground_material_light</item>\n        <item name=\"android:colorBackground\">@color/background_material_dark</item>\n        <item name=\"android:colorBackgroundCacheHint\">@color/abc_background_cache_hint_selector_material_dark</item>\n        <item name=\"android:disabledAlpha\">@dimen/abc_disabled_alpha_material_dark</item>\n        <item name=\"android:backgroundDimAmount\">0.6</item>\n        <item name=\"android:windowBackground\">@color/background_material_dark</item>\n\n        <!-- Text colors -->\n        <item name=\"android:textColorPrimary\">@color/abc_primary_text_material_dark</item>\n        <item name=\"android:textColorPrimaryInverse\">@color/abc_primary_text_material_light</item>\n        <item name=\"android:textColorPrimaryDisableOnly\">@color/abc_primary_text_disable_only_material_dark</item>\n        <item name=\"android:textColorSecondary\">@color/abc_secondary_text_material_dark</item>\n        <item name=\"android:textColorSecondaryInverse\">@color/abc_secondary_text_material_light</item>\n        <item name=\"android:textColorTertiary\">@color/abc_secondary_text_material_dark</item>\n        <item name=\"android:textColorTertiaryInverse\">@color/abc_secondary_text_material_light</item>\n        <item name=\"android:textColorHint\">@color/hint_foreground_material_dark</item>\n        <item name=\"android:textColorHintInverse\">@color/hint_foreground_material_light</item>\n        <item name=\"android:textColorHighlight\">@color/highlighted_text_material_dark</item>\n        <item name=\"android:textColorHighlightInverse\">@color/highlighted_text_material_light</item>\n        <item name=\"android:textColorLink\">?attr/colorAccent</item>\n        <item name=\"android:textColorLinkInverse\">?attr/colorAccent</item>\n        <item name=\"android:textColorAlertDialogListItem\">@color/abc_primary_text_material_dark</item>\n\n        <!-- Text styles -->\n        <item name=\"android:textAppearance\">@style/TextAppearance.AppCompat</item>\n        <item name=\"android:textAppearanceInverse\">@style/TextAppearance.AppCompat.Inverse</item>\n        <item name=\"android:textAppearanceLarge\">@style/TextAppearance.AppCompat.Large</item>\n        <item name=\"android:textAppearanceLargeInverse\">@style/TextAppearance.AppCompat.Large.Inverse</item>\n        <item name=\"android:textAppearanceMedium\">@style/TextAppearance.AppCompat.Medium</item>\n        <item name=\"android:textAppearanceMediumInverse\">@style/TextAppearance.AppCompat.Medium.Inverse</item>\n        <item name=\"android:textAppearanceSmall\">@style/TextAppearance.AppCompat.Small</item>\n        <item name=\"android:textAppearanceSmallInverse\">@style/TextAppearance.AppCompat.Small.Inverse</item>\n\n        <item name=\"android:listChoiceIndicatorSingle\">@drawable/abc_btn_radio_material</item>\n        <item name=\"android:listChoiceIndicatorMultiple\">@drawable/abc_btn_check_material</item>\n\n        <item name=\"android:actionModeCutDrawable\">?actionModeCutDrawable</item>\n        <item name=\"android:actionModeCopyDrawable\">?actionModeCopyDrawable</item>\n        <item name=\"android:actionModePasteDrawable\">?actionModePasteDrawable</item>\n    </style>\n    <style name=\"Platform.V11.AppCompat.Light\" parent=\"android:Theme.Holo.Light\">\n        <item name=\"android:windowNoTitle\">true</item>\n        <item name=\"android:windowActionBar\">false</item>\n\n        <item name=\"android:buttonBarStyle\">?attr/buttonBarStyle</item>\n        <item name=\"android:buttonBarButtonStyle\">?attr/buttonBarButtonStyle</item>\n\n        <item name=\"selectableItemBackground\">?android:attr/selectableItemBackground</item>\n\n        <!-- Window colors -->\n        <item name=\"android:colorForeground\">@color/foreground_material_light</item>\n        <item name=\"android:colorForegroundInverse\">@color/foreground_material_dark</item>\n        <item name=\"android:colorBackground\">@color/background_material_light</item>\n        <item name=\"android:colorBackgroundCacheHint\">@color/abc_background_cache_hint_selector_material_light</item>\n        <item name=\"android:disabledAlpha\">@dimen/abc_disabled_alpha_material_light</item>\n        <item name=\"android:backgroundDimAmount\">0.6</item>\n        <item name=\"android:windowBackground\">@color/background_material_light</item>\n\n        <!-- Text colors -->\n        <item name=\"android:textColorPrimary\">@color/abc_primary_text_material_light</item>\n        <item name=\"android:textColorPrimaryInverse\">@color/abc_primary_text_material_dark</item>\n        <item name=\"android:textColorSecondary\">@color/abc_secondary_text_material_light</item>\n        <item name=\"android:textColorSecondaryInverse\">@color/abc_secondary_text_material_dark</item>\n        <item name=\"android:textColorTertiary\">@color/abc_secondary_text_material_light</item>\n        <item name=\"android:textColorTertiaryInverse\">@color/abc_secondary_text_material_dark</item>\n        <item name=\"android:textColorPrimaryDisableOnly\">@color/abc_primary_text_disable_only_material_light</item>\n        <item name=\"android:textColorPrimaryInverseDisableOnly\">@color/abc_primary_text_disable_only_material_dark</item>\n        <item name=\"android:textColorHint\">@color/hint_foreground_material_light</item>\n        <item name=\"android:textColorHintInverse\">@color/hint_foreground_material_dark</item>\n        <item name=\"android:textColorHighlight\">@color/highlighted_text_material_light</item>\n        <item name=\"android:textColorHighlightInverse\">@color/highlighted_text_material_dark</item>\n        <item name=\"android:textColorLink\">?attr/colorAccent</item>\n        <item name=\"android:textColorLinkInverse\">?attr/colorAccent</item>\n        <item name=\"android:textColorAlertDialogListItem\">@color/abc_primary_text_material_light</item>\n\n        <!-- Text styles -->\n        <item name=\"android:textAppearance\">@style/TextAppearance.AppCompat</item>\n        <item name=\"android:textAppearanceInverse\">@style/TextAppearance.AppCompat.Inverse</item>\n        <item name=\"android:textAppearanceLarge\">@style/TextAppearance.AppCompat.Large</item>\n        <item name=\"android:textAppearanceLargeInverse\">@style/TextAppearance.AppCompat.Large.Inverse</item>\n        <item name=\"android:textAppearanceMedium\">@style/TextAppearance.AppCompat.Medium</item>\n        <item name=\"android:textAppearanceMediumInverse\">@style/TextAppearance.AppCompat.Medium.Inverse</item>\n        <item name=\"android:textAppearanceSmall\">@style/TextAppearance.AppCompat.Small</item>\n        <item name=\"android:textAppearanceSmallInverse\">@style/TextAppearance.AppCompat.Small.Inverse</item>\n\n        <item name=\"android:listChoiceIndicatorSingle\">@drawable/abc_btn_radio_material</item>\n        <item name=\"android:listChoiceIndicatorMultiple\">@drawable/abc_btn_check_material</item>\n\n        <item name=\"android:actionModeCutDrawable\">?actionModeCutDrawable</item>\n        <item name=\"android:actionModeCopyDrawable\">?actionModeCopyDrawable</item>\n        <item name=\"android:actionModePasteDrawable\">?actionModePasteDrawable</item>\n    </style>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-v11/styles_base.xml -->\n    <eat-comment/>\n    <style name=\"Platform.Widget.AppCompat.Spinner\" parent=\"android:Widget.Holo.Spinner\"/>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v12/values-v12.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-v12/styles_base.xml -->\n    <eat-comment/>\n    <style name=\"Base.V12.Widget.AppCompat.AutoCompleteTextView\" parent=\"Base.V7.Widget.AppCompat.AutoCompleteTextView\">\n        <item name=\"android:textCursorDrawable\">@drawable/abc_text_cursor_material</item>\n    </style>\n    <style name=\"Base.V12.Widget.AppCompat.EditText\" parent=\"Base.V7.Widget.AppCompat.EditText\">\n        <item name=\"android:textCursorDrawable\">@drawable/abc_text_cursor_material</item>\n    </style>\n    <style name=\"Base.Widget.AppCompat.AutoCompleteTextView\" parent=\"Base.V12.Widget.AppCompat.AutoCompleteTextView\"/>\n    <style name=\"Base.Widget.AppCompat.EditText\" parent=\"Base.V12.Widget.AppCompat.EditText\"/>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v14/values-v14.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-v14/styles_base_text.xml -->\n    <eat-comment/>\n    <style name=\"Base.TextAppearance.AppCompat.Button\">\n        <item name=\"android:textSize\">@dimen/abc_text_size_button_material</item>\n        <item name=\"android:textAllCaps\">true</item>\n        <item name=\"android:textColor\">?android:textColorPrimary</item>\n    </style>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-v14/themes_base.xml -->\n    <eat-comment/>\n    <style name=\"Platform.AppCompat\" parent=\"Platform.V14.AppCompat\"/>\n    <style name=\"Platform.AppCompat.Light\" parent=\"Platform.V14.AppCompat.Light\"/>\n    <style name=\"Platform.V14.AppCompat\" parent=\"Platform.V11.AppCompat\">\n        <item name=\"android:actionModeSelectAllDrawable\">?actionModeSelectAllDrawable</item>\n\n        <item name=\"android:listPreferredItemPaddingLeft\">@dimen/abc_list_item_padding_horizontal_material</item>\n        <item name=\"android:listPreferredItemPaddingRight\">@dimen/abc_list_item_padding_horizontal_material</item>\n    </style>\n    <style name=\"Platform.V14.AppCompat.Light\" parent=\"Platform.V11.AppCompat.Light\">\n        <item name=\"android:actionModeSelectAllDrawable\">?actionModeSelectAllDrawable</item>\n\n        <item name=\"android:listPreferredItemPaddingLeft\">@dimen/abc_list_item_padding_horizontal_material</item>\n        <item name=\"android:listPreferredItemPaddingRight\">@dimen/abc_list_item_padding_horizontal_material</item>\n    </style>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-v14/styles.xml -->\n    <eat-comment/>\n    <style name=\"TextAppearance.StatusBar.EventContent\" parent=\"@android:style/TextAppearance.StatusBar.EventContent\"/>\n    <style name=\"TextAppearance.StatusBar.EventContent.Info\"/>\n    <style name=\"TextAppearance.StatusBar.EventContent.Line2\">\n        <item name=\"android:textSize\">@dimen/notification_subtext_size</item>\n    </style>\n    <style name=\"TextAppearance.StatusBar.EventContent.Time\"/>\n    <style name=\"TextAppearance.StatusBar.EventContent.Title\" parent=\"@android:style/TextAppearance.StatusBar.EventContent.Title\"/>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v17/values-v17.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-v17/styles_rtl.xml -->\n    <eat-comment/>\n    <style name=\"RtlOverlay.DialogWindowTitle.AppCompat\" parent=\"Base.DialogWindowTitle.AppCompat\">\n        <item name=\"android:textAlignment\">viewStart</item>\n    </style>\n    <style name=\"RtlOverlay.Widget.AppCompat.ActionBar.TitleItem\" parent=\"android:Widget\">\n        <item name=\"android:layout_gravity\">center_vertical|start</item>\n        <item name=\"android:paddingEnd\">8dp</item>\n    </style>\n    <style name=\"RtlOverlay.Widget.AppCompat.ActionButton.Overflow\" parent=\"Base.Widget.AppCompat.ActionButton.Overflow\">\n        <item name=\"android:paddingStart\">@dimen/abc_action_bar_overflow_padding_start_material</item>\n        <item name=\"android:paddingEnd\">@dimen/abc_action_bar_overflow_padding_end_material</item>\n    </style>\n    <style name=\"RtlOverlay.Widget.AppCompat.DialogTitle.Icon\" parent=\"android:Widget\">\n        <item name=\"android:layout_marginEnd\">8dp</item>\n    </style>\n    <style name=\"RtlOverlay.Widget.AppCompat.PopupMenuItem\" parent=\"android:Widget\">\n        <item name=\"android:paddingEnd\">16dp</item>\n    </style>\n    <style name=\"RtlOverlay.Widget.AppCompat.PopupMenuItem.InternalGroup\" parent=\"android:Widget\">\n        <item name=\"android:layout_marginStart\">16dp</item>\n    </style>\n    <style name=\"RtlOverlay.Widget.AppCompat.PopupMenuItem.Text\" parent=\"android:Widget\">\n        <item name=\"android:layout_alignParentStart\">true</item>\n        <item name=\"android:textAlignment\">viewStart</item>\n    </style>\n    <style name=\"RtlOverlay.Widget.AppCompat.Search.DropDown\" parent=\"android:Widget\">\n        <item name=\"android:paddingStart\">@dimen/abc_dropdownitem_text_padding_left</item>\n        <item name=\"android:paddingEnd\">4dp</item>\n    </style>\n    <style name=\"RtlOverlay.Widget.AppCompat.Search.DropDown.Icon1\" parent=\"android:Widget\">\n        <item name=\"android:layout_alignParentStart\">true</item>\n    </style>\n    <style name=\"RtlOverlay.Widget.AppCompat.Search.DropDown.Icon2\" parent=\"android:Widget\">\n        <item name=\"android:layout_toStartOf\">@id/edit_query</item>\n    </style>\n    <style name=\"RtlOverlay.Widget.AppCompat.Search.DropDown.Query\" parent=\"android:Widget\">\n        <item name=\"android:layout_alignParentEnd\">true</item>\n    </style>\n    <style name=\"RtlOverlay.Widget.AppCompat.Search.DropDown.Text\" parent=\"Base.Widget.AppCompat.DropDownItem.Spinner\">\n        <item name=\"android:layout_toStartOf\">@android:id/icon2</item>\n        <item name=\"android:layout_toEndOf\">@android:id/icon1</item>\n    </style>\n    <style name=\"RtlOverlay.Widget.AppCompat.SearchView.MagIcon\" parent=\"android:Widget\">\n        <item name=\"android:layout_marginStart\">@dimen/abc_dropdownitem_text_padding_left</item>\n    </style>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v18/values-v18.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-v18/dimens.xml -->\n    <eat-comment/>\n    <dimen name=\"abc_switch_padding\">0px</dimen>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v21/values-v21.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-v21/styles_base_text.xml -->\n    <eat-comment/>\n    <style name=\"Base.TextAppearance.AppCompat\" parent=\"android:TextAppearance.Material\"/>\n    <style name=\"Base.TextAppearance.AppCompat.Body1\" parent=\"android:TextAppearance.Material.Body1\"/>\n    <style name=\"Base.TextAppearance.AppCompat.Body2\" parent=\"android:TextAppearance.Material.Body2\"/>\n    <style name=\"Base.TextAppearance.AppCompat.Button\" parent=\"android:TextAppearance.Material.Button\"/>\n    <style name=\"Base.TextAppearance.AppCompat.Caption\" parent=\"android:TextAppearance.Material.Caption\"/>\n    <style name=\"Base.TextAppearance.AppCompat.Display1\" parent=\"android:TextAppearance.Material.Display1\"/>\n    <style name=\"Base.TextAppearance.AppCompat.Display2\" parent=\"android:TextAppearance.Material.Display2\"/>\n    <style name=\"Base.TextAppearance.AppCompat.Display3\" parent=\"android:TextAppearance.Material.Display3\"/>\n    <style name=\"Base.TextAppearance.AppCompat.Display4\" parent=\"android:TextAppearance.Material.Display4\"/>\n    <style name=\"Base.TextAppearance.AppCompat.Headline\" parent=\"android:TextAppearance.Material.Headline\"/>\n    <style name=\"Base.TextAppearance.AppCompat.Inverse\" parent=\"android:TextAppearance.Material.Inverse\"/>\n    <style name=\"Base.TextAppearance.AppCompat.Large\" parent=\"android:TextAppearance.Material.Large\"/>\n    <style name=\"Base.TextAppearance.AppCompat.Large.Inverse\" parent=\"android:TextAppearance.Material.Large.Inverse\"/>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-v21/styles_base.xml -->\n    <eat-comment/>\n    <style name=\"Base.TextAppearance.AppCompat.Light.Widget.PopupMenu.Large\" parent=\"android:TextAppearance.Material.Widget.PopupMenu.Large\">\n    </style>\n    <style name=\"Base.TextAppearance.AppCompat.Light.Widget.PopupMenu.Small\" parent=\"android:TextAppearance.Material.Widget.PopupMenu.Small\">\n    </style>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-v21/styles_base_text.xml -->\n    <eat-comment/>\n    <style name=\"Base.TextAppearance.AppCompat.Medium\" parent=\"android:TextAppearance.Material.Medium\"/>\n    <style name=\"Base.TextAppearance.AppCompat.Medium.Inverse\" parent=\"android:TextAppearance.Material.Medium.Inverse\"/>\n    <style name=\"Base.TextAppearance.AppCompat.Menu\" parent=\"android:TextAppearance.Material.Menu\"/>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-v21/styles_base.xml -->\n    <eat-comment/>\n    <style name=\"Base.TextAppearance.AppCompat.SearchResult.Subtitle\" parent=\"android:TextAppearance.Material.SearchResult.Subtitle\">\n    </style>\n    <style name=\"Base.TextAppearance.AppCompat.SearchResult.Title\" parent=\"android:TextAppearance.Material.SearchResult.Title\">\n    </style>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-v21/styles_base_text.xml -->\n    <eat-comment/>\n    <style name=\"Base.TextAppearance.AppCompat.Small\" parent=\"android:TextAppearance.Material.Small\"/>\n    <style name=\"Base.TextAppearance.AppCompat.Small.Inverse\" parent=\"android:TextAppearance.Material.Small.Inverse\"/>\n    <style name=\"Base.TextAppearance.AppCompat.Subhead\" parent=\"android:TextAppearance.Material.Subhead\"/>\n    <style name=\"Base.TextAppearance.AppCompat.Title\" parent=\"android:TextAppearance.Material.Title\"/>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-v21/styles_base.xml -->\n    <eat-comment/>\n    <style name=\"Base.TextAppearance.AppCompat.Widget.ActionBar.Menu\" parent=\"android:TextAppearance.Material.Widget.ActionBar.Menu\">\n    </style>\n    <style name=\"Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle\" parent=\"android:TextAppearance.Material.Widget.ActionBar.Subtitle\">\n    </style>\n    <style name=\"Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle.Inverse\" parent=\"android:TextAppearance.Material.Widget.ActionBar.Subtitle.Inverse\">\n    </style>\n    <style name=\"Base.TextAppearance.AppCompat.Widget.ActionBar.Title\" parent=\"android:TextAppearance.Material.Widget.ActionBar.Title\">\n    </style>\n    <style name=\"Base.TextAppearance.AppCompat.Widget.ActionBar.Title.Inverse\" parent=\"android:TextAppearance.Material.Widget.ActionBar.Title.Inverse\">\n    </style>\n    <style name=\"Base.TextAppearance.AppCompat.Widget.ActionMode.Subtitle\" parent=\"android:TextAppearance.Material.Widget.ActionMode.Subtitle\">\n    </style>\n    <style name=\"Base.TextAppearance.AppCompat.Widget.ActionMode.Title\" parent=\"android:TextAppearance.Material.Widget.ActionMode.Title\">\n    </style>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-v21/styles_base_text.xml -->\n    <eat-comment/>\n    <style name=\"Base.TextAppearance.AppCompat.Widget.Button\" parent=\"android:TextAppearance.Material.Widget.Button\"/>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-v21/styles_base.xml -->\n    <eat-comment/>\n    <style name=\"Base.TextAppearance.AppCompat.Widget.PopupMenu.Large\" parent=\"android:TextAppearance.Material.Widget.PopupMenu.Large\">\n    </style>\n    <style name=\"Base.TextAppearance.AppCompat.Widget.PopupMenu.Small\" parent=\"android:TextAppearance.Material.Widget.PopupMenu.Small\">\n    </style>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-v21/styles_base_text.xml -->\n    <eat-comment/>\n    <style name=\"Base.TextAppearance.AppCompat.Widget.Switch\" parent=\"android:TextAppearance.Material.Button\"/>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-v21/styles_base.xml -->\n    <eat-comment/>\n    <style name=\"Base.TextAppearance.AppCompat.Widget.TextView.SpinnerItem\" parent=\"android:TextAppearance.Material.Widget.TextView.SpinnerItem\"/>\n    <style name=\"Base.TextAppearance.Widget.AppCompat.Toolbar.Subtitle\" parent=\"android:TextAppearance.Material.Widget.ActionBar.Subtitle\">\n    </style>\n    <style name=\"Base.TextAppearance.Widget.AppCompat.Toolbar.Title\" parent=\"android:TextAppearance.Material.Widget.ActionBar.Title\">\n    </style>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-v21/themes_base.xml -->\n    <eat-comment/>\n    <style name=\"Base.Theme.AppCompat\" parent=\"Base.V21.Theme.AppCompat\"/>\n    <style name=\"Base.Theme.AppCompat.Dialog\" parent=\"Base.V21.Theme.AppCompat.Dialog\"/>\n    <style name=\"Base.Theme.AppCompat.Light\" parent=\"Base.V21.Theme.AppCompat.Light\"/>\n    <style name=\"Base.Theme.AppCompat.Light.Dialog\" parent=\"Base.V21.Theme.AppCompat.Light.Dialog\"/>\n    <style name=\"Base.V21.Theme.AppCompat\" parent=\"Base.V7.Theme.AppCompat\">\n        <!-- Action Bar styling attributes -->\n        <item name=\"actionBarSize\">?android:attr/actionBarSize</item>\n        <item name=\"actionBarDivider\">?android:attr/actionBarDivider</item>\n        <item name=\"actionBarItemBackground\">@drawable/abc_action_bar_item_background_material</item>\n        <item name=\"actionButtonStyle\">?android:attr/actionButtonStyle</item>\n        <item name=\"actionMenuTextColor\">?android:attr/actionMenuTextColor</item>\n        <item name=\"actionMenuTextAppearance\">?android:attr/actionMenuTextAppearance</item>\n        <item name=\"actionModeBackground\">?android:attr/actionModeBackground</item>\n        <item name=\"actionModeCloseDrawable\">?android:attr/actionModeCloseDrawable</item>\n        <item name=\"actionOverflowButtonStyle\">?android:attr/actionOverflowButtonStyle</item>\n        <item name=\"homeAsUpIndicator\">?android:attr/homeAsUpIndicator</item>\n\n        <!-- For PopupMenu -->\n        <item name=\"listPreferredItemHeightSmall\">?android:attr/listPreferredItemHeightSmall</item>\n        <item name=\"textAppearanceLargePopupMenu\">?android:attr/textAppearanceLargePopupMenu</item>\n        <item name=\"textAppearanceSmallPopupMenu\">?android:attr/textAppearanceSmallPopupMenu</item>\n\n        <!-- General view attributes -->\n        <item name=\"selectableItemBackground\">?android:attr/selectableItemBackground</item>\n        <item name=\"selectableItemBackgroundBorderless\">?android:attr/selectableItemBackgroundBorderless</item>\n        <item name=\"borderlessButtonStyle\">?android:borderlessButtonStyle</item>\n        <item name=\"dividerHorizontal\">?android:attr/dividerHorizontal</item>\n        <item name=\"dividerVertical\">?android:attr/dividerVertical</item>\n        <item name=\"editTextBackground\">?android:attr/editTextBackground</item>\n        <item name=\"editTextColor\">?android:attr/editTextColor</item>\n        <item name=\"listChoiceBackgroundIndicator\">?android:attr/listChoiceBackgroundIndicator</item>\n\n        <!-- Copy the platform default styles for the AppCompat widgets -->\n        <item name=\"autoCompleteTextViewStyle\">?android:attr/autoCompleteTextViewStyle</item>\n        <item name=\"buttonStyle\">?android:attr/buttonStyle</item>\n        <item name=\"buttonStyleSmall\">?android:attr/buttonStyleSmall</item>\n        <item name=\"checkboxStyle\">?android:attr/checkboxStyle</item>\n        <item name=\"checkedTextViewStyle\">?android:attr/checkedTextViewStyle</item>\n        <item name=\"editTextStyle\">?android:attr/editTextStyle</item>\n        <item name=\"radioButtonStyle\">?android:attr/radioButtonStyle</item>\n        <item name=\"ratingBarStyle\">?android:attr/ratingBarStyle</item>\n        <item name=\"spinnerStyle\">?android:attr/spinnerStyle</item>\n\n        <!-- Copy our color theme attributes to the framework -->\n        <item name=\"android:colorPrimary\">?attr/colorPrimary</item>\n        <item name=\"android:colorPrimaryDark\">?attr/colorPrimaryDark</item>\n        <item name=\"android:colorAccent\">?attr/colorAccent</item>\n        <item name=\"android:colorControlNormal\">?attr/colorControlNormal</item>\n        <item name=\"android:colorControlActivated\">?attr/colorControlActivated</item>\n        <item name=\"android:colorControlHighlight\">?attr/colorControlHighlight</item>\n        <item name=\"android:colorButtonNormal\">?attr/colorButtonNormal</item>\n    </style>\n    <style name=\"Base.V21.Theme.AppCompat.Dialog\" parent=\"Base.V11.Theme.AppCompat.Dialog\">\n        <item name=\"android:windowElevation\">@dimen/abc_floating_window_z</item>\n    </style>\n    <style name=\"Base.V21.Theme.AppCompat.Light\" parent=\"Base.V7.Theme.AppCompat.Light\">\n        <!-- Action Bar styling attributes -->\n        <item name=\"actionBarSize\">?android:attr/actionBarSize</item>\n        <item name=\"actionBarDivider\">?android:attr/actionBarDivider</item>\n        <item name=\"actionBarItemBackground\">@drawable/abc_action_bar_item_background_material</item>\n        <item name=\"actionButtonStyle\">?android:attr/actionButtonStyle</item>\n        <item name=\"actionMenuTextColor\">?android:attr/actionMenuTextColor</item>\n        <item name=\"actionMenuTextAppearance\">?android:attr/actionMenuTextAppearance</item>\n        <item name=\"actionModeBackground\">?android:attr/actionModeBackground</item>\n        <item name=\"actionModeCloseDrawable\">?android:attr/actionModeCloseDrawable</item>\n        <item name=\"actionOverflowButtonStyle\">?android:attr/actionOverflowButtonStyle</item>\n        <item name=\"homeAsUpIndicator\">?android:attr/homeAsUpIndicator</item>\n\n        <!-- For PopupMenu -->\n        <item name=\"listPreferredItemHeightSmall\">?android:attr/listPreferredItemHeightSmall</item>\n        <item name=\"textAppearanceLargePopupMenu\">?android:attr/textAppearanceLargePopupMenu</item>\n        <item name=\"textAppearanceSmallPopupMenu\">?android:attr/textAppearanceSmallPopupMenu</item>\n\n        <!-- General view attributes -->\n        <item name=\"selectableItemBackground\">?android:attr/selectableItemBackground</item>\n        <item name=\"selectableItemBackgroundBorderless\">?android:attr/selectableItemBackgroundBorderless</item>\n        <item name=\"borderlessButtonStyle\">?android:borderlessButtonStyle</item>\n        <item name=\"dividerHorizontal\">?android:attr/dividerHorizontal</item>\n        <item name=\"dividerVertical\">?android:attr/dividerVertical</item>\n        <item name=\"editTextBackground\">?android:attr/editTextBackground</item>\n        <item name=\"editTextColor\">?android:attr/editTextColor</item>\n        <item name=\"listChoiceBackgroundIndicator\">?android:attr/listChoiceBackgroundIndicator</item>\n\n        <!-- Copy the platform default styles for the AppCompat widgets -->\n        <item name=\"autoCompleteTextViewStyle\">?android:attr/autoCompleteTextViewStyle</item>\n        <item name=\"buttonStyle\">?android:attr/buttonStyle</item>\n        <item name=\"buttonStyleSmall\">?android:attr/buttonStyleSmall</item>\n        <item name=\"checkboxStyle\">?android:attr/checkboxStyle</item>\n        <item name=\"checkedTextViewStyle\">?android:attr/checkedTextViewStyle</item>\n        <item name=\"editTextStyle\">?android:attr/editTextStyle</item>\n        <item name=\"radioButtonStyle\">?android:attr/radioButtonStyle</item>\n        <item name=\"ratingBarStyle\">?android:attr/ratingBarStyle</item>\n        <item name=\"spinnerStyle\">?android:attr/spinnerStyle</item>\n\n        <!-- Copy our color theme attributes to the framework -->\n        <item name=\"android:colorPrimary\">?attr/colorPrimary</item>\n        <item name=\"android:colorPrimaryDark\">?attr/colorPrimaryDark</item>\n        <item name=\"android:colorAccent\">?attr/colorAccent</item>\n        <item name=\"android:colorControlNormal\">?attr/colorControlNormal</item>\n        <item name=\"android:colorControlActivated\">?attr/colorControlActivated</item>\n        <item name=\"android:colorControlHighlight\">?attr/colorControlHighlight</item>\n        <item name=\"android:colorButtonNormal\">?attr/colorButtonNormal</item>\n    </style>\n    <style name=\"Base.V21.Theme.AppCompat.Light.Dialog\" parent=\"Base.V11.Theme.AppCompat.Light.Dialog\">\n        <item name=\"android:windowElevation\">@dimen/abc_floating_window_z</item>\n    </style>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-v21/styles_base.xml -->\n    <eat-comment/>\n    <style name=\"Base.Widget.AppCompat.ActionBar.TabText\" parent=\"android:Widget.Material.ActionBar.TabText\">\n    </style>\n    <style name=\"Base.Widget.AppCompat.ActionBar.TabView\" parent=\"android:Widget.Material.ActionBar.TabView\">\n    </style>\n    <style name=\"Base.Widget.AppCompat.ActionButton\" parent=\"android:Widget.Material.ActionButton\">\n    </style>\n    <style name=\"Base.Widget.AppCompat.ActionButton.CloseMode\" parent=\"android:Widget.Material.ActionButton.CloseMode\">\n        <item name=\"android:minWidth\">56dp</item>\n    </style>\n    <style name=\"Base.Widget.AppCompat.ActionButton.Overflow\" parent=\"android:Widget.Material.ActionButton.Overflow\">\n    </style>\n    <style name=\"Base.Widget.AppCompat.AutoCompleteTextView\" parent=\"android:Widget.Material.AutoCompleteTextView\"/>\n    <style name=\"Base.Widget.AppCompat.Button\" parent=\"android:Widget.Material.Button\"/>\n    <style name=\"Base.Widget.AppCompat.Button.Borderless\" parent=\"android:Widget.Material.Button.Borderless\"/>\n    <style name=\"Base.Widget.AppCompat.Button.Borderless.Colored\" parent=\"android:Widget.Material.Button.Borderless.Colored\"/>\n    <style name=\"Base.Widget.AppCompat.Button.Small\" parent=\"android:Widget.Material.Button.Small\"/>\n    <style name=\"Base.Widget.AppCompat.ButtonBar\" parent=\"android:Widget.Material.ButtonBar\"/>\n    <style name=\"Base.Widget.AppCompat.CompoundButton.CheckBox\" parent=\"android:Widget.Material.CompoundButton.CheckBox\"/>\n    <style name=\"Base.Widget.AppCompat.CompoundButton.RadioButton\" parent=\"android:Widget.Material.CompoundButton.RadioButton\"/>\n    <style name=\"Base.Widget.AppCompat.DropDownItem.Spinner\" parent=\"android:Widget.Material.DropDownItem.Spinner\"/>\n    <style name=\"Base.Widget.AppCompat.EditText\" parent=\"android:Widget.Material.EditText\"/>\n    <style name=\"Base.Widget.AppCompat.Light.ActionBar.TabText\" parent=\"android:Widget.Material.Light.ActionBar.TabText\">\n    </style>\n    <style name=\"Base.Widget.AppCompat.Light.ActionBar.TabText.Inverse\" parent=\"android:Widget.Material.Light.ActionBar.TabText\">\n    </style>\n    <style name=\"Base.Widget.AppCompat.Light.ActionBar.TabView\" parent=\"android:Widget.Material.Light.ActionBar.TabView\">\n    </style>\n    <style name=\"Base.Widget.AppCompat.Light.PopupMenu\" parent=\"android:Widget.Material.Light.PopupMenu\">\n    </style>\n    <style name=\"Base.Widget.AppCompat.Light.PopupMenu.Overflow\">\n        <item name=\"android:dropDownHorizontalOffset\">-4dip</item>\n        <item name=\"android:overlapAnchor\">true</item>\n    </style>\n    <style name=\"Base.Widget.AppCompat.ListPopupWindow\" parent=\"android:Widget.Material.ListPopupWindow\">\n    </style>\n    <style name=\"Base.Widget.AppCompat.ListView\" parent=\"android:Widget.Material.ListView\"/>\n    <style name=\"Base.Widget.AppCompat.ListView.DropDown\" parent=\"android:Widget.Material.ListView.DropDown\"/>\n    <style name=\"Base.Widget.AppCompat.ListView.Menu\"/>\n    <style name=\"Base.Widget.AppCompat.PopupMenu\" parent=\"android:Widget.Material.PopupMenu\">\n    </style>\n    <style name=\"Base.Widget.AppCompat.PopupMenu.Overflow\">\n        <item name=\"android:dropDownHorizontalOffset\">-4dip</item>\n        <item name=\"android:overlapAnchor\">true</item>\n    </style>\n    <style name=\"Base.Widget.AppCompat.ProgressBar\" parent=\"android:Widget.Material.ProgressBar\">\n    </style>\n    <style name=\"Base.Widget.AppCompat.ProgressBar.Horizontal\" parent=\"android:Widget.Material.ProgressBar.Horizontal\">\n    </style>\n    <style name=\"Base.Widget.AppCompat.RatingBar\" parent=\"android:Widget.Material.RatingBar\"/>\n    <style name=\"Base.Widget.AppCompat.Spinner\" parent=\"android:Widget.Material.Spinner\"/>\n    <style name=\"Base.Widget.AppCompat.Spinner.Underlined\" parent=\"android:Widget.Material.Spinner.Underlined\"/>\n    <style name=\"Base.Widget.AppCompat.TextView.SpinnerItem\" parent=\"android:Widget.Material.TextView.SpinnerItem\"/>\n    <style name=\"Base.Widget.AppCompat.Toolbar.Button.Navigation\" parent=\"android:Widget.Material.Toolbar.Button.Navigation\">\n    </style>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-v21/themes_base.xml -->\n    <eat-comment/>\n    <style name=\"Platform.AppCompat\" parent=\"android:Theme.Material\">\n        <item name=\"android:windowNoTitle\">true</item>\n        <item name=\"android:windowActionBar\">false</item>\n\n        <item name=\"android:buttonBarStyle\">?attr/buttonBarStyle</item>\n        <item name=\"android:buttonBarButtonStyle\">?attr/buttonBarButtonStyle</item>\n    </style>\n    <style name=\"Platform.AppCompat.Light\" parent=\"android:Theme.Material.Light\">\n        <item name=\"android:windowNoTitle\">true</item>\n        <item name=\"android:windowActionBar\">false</item>\n\n        <item name=\"android:buttonBarStyle\">?attr/buttonBarStyle</item>\n        <item name=\"android:buttonBarButtonStyle\">?attr/buttonBarButtonStyle</item>\n    </style>\n    <style name=\"Platform.ThemeOverlay.AppCompat\" parent=\"\">\n        <!-- Copy our color theme attributes to the framework -->\n        <item name=\"android:colorPrimary\">?attr/colorPrimary</item>\n        <item name=\"android:colorPrimaryDark\">?attr/colorPrimaryDark</item>\n        <item name=\"android:colorAccent\">?attr/colorAccent</item>\n        <item name=\"android:colorControlNormal\">?attr/colorControlNormal</item>\n        <item name=\"android:colorControlActivated\">?attr/colorControlActivated</item>\n        <item name=\"android:colorControlHighlight\">?attr/colorControlHighlight</item>\n        <item name=\"android:colorButtonNormal\">?attr/colorButtonNormal</item>\n    </style>\n    <style name=\"Platform.ThemeOverlay.AppCompat.Dark\"/>\n    <style name=\"Platform.ThemeOverlay.AppCompat.Light\"/>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v22/values-v22.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-v22/themes_base.xml -->\n    <eat-comment/>\n    <style name=\"Base.Theme.AppCompat\" parent=\"Base.V22.Theme.AppCompat\"/>\n    <style name=\"Base.Theme.AppCompat.Light\" parent=\"Base.V22.Theme.AppCompat.Light\"/>\n    <style name=\"Base.V22.Theme.AppCompat\" parent=\"Base.V21.Theme.AppCompat\">\n        <item name=\"actionModeShareDrawable\">?android:attr/actionModeShareDrawable</item>\n    </style>\n    <style name=\"Base.V22.Theme.AppCompat.Light\" parent=\"Base.V21.Theme.AppCompat.Light\">\n        <item name=\"actionModeShareDrawable\">?android:attr/actionModeShareDrawable</item>\n    </style>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v23/values-v23.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-v23/styles_base_text.xml -->\n    <eat-comment/>\n    <style name=\"Base.TextAppearance.AppCompat.Widget.Button.Inverse\" parent=\"android:TextAppearance.Material.Widget.Button.Inverse\"/>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-v23/themes_base.xml -->\n    <eat-comment/>\n    <style name=\"Base.Theme.AppCompat\" parent=\"Base.V23.Theme.AppCompat\"/>\n    <style name=\"Base.Theme.AppCompat.Light\" parent=\"Base.V23.Theme.AppCompat.Light\"/>\n    <style name=\"Base.V23.Theme.AppCompat\" parent=\"Base.V22.Theme.AppCompat\">\n        <!-- We can use the platform drawable on v23+ -->\n        <item name=\"actionBarItemBackground\">?android:attr/actionBarItemBackground</item>\n\n        <item name=\"controlBackground\">@drawable/abc_control_background_material</item>\n    </style>\n    <style name=\"Base.V23.Theme.AppCompat.Light\" parent=\"Base.V22.Theme.AppCompat.Light\">\n        <!-- We can use the platform drawable on v23+ -->\n        <item name=\"actionBarItemBackground\">?android:attr/actionBarItemBackground</item>\n\n        <item name=\"controlBackground\">@drawable/abc_control_background_material</item>\n    </style>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-v23/styles_base.xml -->\n    <eat-comment/>\n    <style name=\"Base.Widget.AppCompat.Button.Colored\" parent=\"android:Widget.Material.Button.Colored\"/>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-vi/values-vi.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-vi/strings.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Điều hướng về trang chủ\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Điều hướng lên trên\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Thêm tùy chọn\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Xong\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Xem tất cả\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Chọn một ứng dụng\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Tìm kiếm…\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Xóa truy vấn\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Tìm kiếm truy vấn\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Tìm kiếm\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Gửi truy vấn\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Tìm kiếm bằng giọng nói\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Chia sẻ với\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Chia sẻ với %s\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Thu gọn\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-w360dp/values-w360dp.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-w360dp/dimens.xml -->\n    <eat-comment/>\n    <integer name=\"abc_max_action_buttons\">3</integer>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-w480dp/values-w480dp.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-w480dp/bools.xml -->\n    <eat-comment/>\n    <bool name=\"abc_action_bar_embed_tabs_pre_jb\">true</bool>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-w480dp/config.xml -->\n    <eat-comment/>\n    <bool name=\"abc_config_allowActionMenuItemTextWithIcon\">true</bool>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-w500dp/values-w500dp.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-w500dp/dimens.xml -->\n    <eat-comment/>\n    <integer name=\"abc_max_action_buttons\">4</integer>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-w600dp/values-w600dp.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-w600dp/dimens.xml -->\n    <eat-comment/>\n    <dimen name=\"abc_search_view_text_min_width\">192dip</dimen>\n    <integer name=\"abc_max_action_buttons\">5</integer>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-w720dp/values-w720dp.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-w720dp/bools.xml -->\n    <eat-comment/>\n    <bool name=\"abc_action_bar_expanded_action_views_exclusive\">false</bool>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-xlarge/values-xlarge.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-xlarge/bools.xml -->\n    <eat-comment/>\n    <bool name=\"abc_action_bar_expanded_action_views_exclusive\">false</bool>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-xlarge/dimens.xml -->\n    <eat-comment/>\n    <dimen name=\"abc_search_view_text_min_width\">192dip</dimen>\n    <item name=\"dialog_fixed_height_major\" type=\"dimen\">60%</item>\n    <item name=\"dialog_fixed_height_minor\" type=\"dimen\">90%</item>\n    <item name=\"dialog_fixed_width_major\" type=\"dimen\">50%</item>\n    <item name=\"dialog_fixed_width_minor\" type=\"dimen\">70%</item>\n    <integer name=\"abc_max_action_buttons\">5</integer>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-xlarge-land/values-xlarge-land.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-xlarge-land/dimens.xml -->\n    <eat-comment/>\n    <dimen name=\"abc_search_view_text_min_width\">256dip</dimen>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-zh-rCN/values-zh-rCN.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-zh-rCN/strings.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"转到主屏幕\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s：%2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s - %2$s：%3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"转到上一层级\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"更多选项\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"完成\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"查看全部\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"选择应用\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"搜索…\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"清除查询\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"搜索查询\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"搜索\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"提交查询\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"语音搜索\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"分享方式\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"通过%s分享\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"收起\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-zh-rHK/values-zh-rHK.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-zh-rHK/strings.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"瀏覽主頁\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s：%2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s (%2$s)：%3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"向上瀏覽\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"更多選項\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"完成\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"顯示全部\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"選擇應用程式\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"搜尋…\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"清除查詢\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"搜尋查詢\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"搜尋\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"提交查詢\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"語音搜尋\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"分享對象\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"與「%s」分享\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"收合\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999 +\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-zh-rTW/values-zh-rTW.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-zh-rTW/strings.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"瀏覽首頁\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s：%2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s - %2$s：%3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"向上瀏覽\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"更多選項\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"完成\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"查看全部\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"選擇應用程式\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"搜尋…\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"清除查詢\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"搜尋查詢\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"搜尋\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"提交查詢\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"語音搜尋\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"選擇分享對象\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"與「%s」分享\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"收合\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-zu/values-zu.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/values-zu/strings.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Zulazulela ekhaya\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Zulazulela phezulu\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Izinketho eziningi\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Kwenziwe\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Buka konke\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Khetha uhlelo lokusebenza\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Iyasesha...\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Sula inkinga\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Umbuzo wosesho\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Sesha\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Hambisa umbuzo\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Ukusesha ngezwi\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Yabelana no-\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Yabelana no-%s\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Goqa\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/recyclerview-v7/23.0.1/AndroidManifest.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!--\n Copyright (C) 2013 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    package=\"android.support.v7.recyclerview\" >\n\n    <uses-sdk android:minSdkVersion=\"7\" />\n\n</manifest>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/recyclerview-v7/23.0.1/R.txt",
    "content": "int attr layoutManager 0x7f010000\nint attr reverseLayout 0x7f010002\nint attr spanCount 0x7f010001\nint attr stackFromEnd 0x7f010003\nint dimen item_touch_helper_max_drag_scroll_per_frame 0x7f020000\nint id item_touch_helper_previous_elevation 0x7f030000\nint[] styleable RecyclerView { 0x010100c4, 0x7f010000, 0x7f010001, 0x7f010002, 0x7f010003 }\nint styleable RecyclerView_android_orientation 0\nint styleable RecyclerView_layoutManager 1\nint styleable RecyclerView_reverseLayout 3\nint styleable RecyclerView_spanCount 2\nint styleable RecyclerView_stackFromEnd 4\n"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/recyclerview-v7/23.0.1/aapt/AndroidManifest.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!--\n Copyright (C) 2013 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    package=\"android.support.v7.recyclerview\" >\n\n    <uses-sdk android:minSdkVersion=\"7\" />\n\n</manifest>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/recyclerview-v7/23.0.1/res/values/values.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <declare-styleable name=\"RecyclerView\"><attr format=\"string\" name=\"layoutManager\"/><attr name=\"android:orientation\"/><attr format=\"integer\" name=\"spanCount\"/><attr format=\"boolean\" name=\"reverseLayout\"/><attr format=\"boolean\" name=\"stackFromEnd\"/></declare-styleable>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/recyclerview/res/values/dimens.xml -->\n    <eat-comment/>\n    <dimen name=\"item_touch_helper_max_drag_scroll_per_frame\">20dp</dimen>\n    <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/recyclerview/res/values/ids.xml -->\n    <eat-comment/>\n    <item name=\"item_touch_helper_previous_elevation\" type=\"id\"/>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/support-v4/23.0.1/AndroidManifest.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!--\n Copyright (C) 2014 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    package=\"android.support.v4\" >\n\n    <uses-sdk android:minSdkVersion=\"4\" />\n\n    <application />\n\n</manifest>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/support-v4/23.0.1/aapt/AndroidManifest.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!--\n Copyright (C) 2014 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    package=\"android.support.v4\" >\n\n    <uses-sdk android:minSdkVersion=\"4\" />\n\n    <application />\n\n</manifest>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/support-v4/23.0.1/aidl/android/support/v4/media/MediaMetadataCompat.aidl",
    "content": "/* Copyright 2014, The Android Open Source Project\n**\n** Licensed under the Apache License, Version 2.0 (the \"License\");\n** you may not use this file except in compliance with the License.\n** You may obtain a copy of the License at\n**\n**     http://www.apache.org/licenses/LICENSE-2.0\n**\n** Unless required by applicable law or agreed to in writing, software\n** distributed under the License is distributed on an \"AS IS\" BASIS,\n** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n** See the License for the specific language governing permissions and\n** limitations under the License.\n*/\n\npackage android.support.v4.media;\n\nparcelable MediaMetadataCompat;\n"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/support-v4/23.0.1/aidl/android/support/v4/media/RatingCompat.aidl",
    "content": "/* Copyright 2014, The Android Open Source Project\n**\n** Licensed under the Apache License, Version 2.0 (the \"License\");\n** you may not use this file except in compliance with the License.\n** You may obtain a copy of the License at\n**\n**     http://www.apache.org/licenses/LICENSE-2.0\n**\n** Unless required by applicable law or agreed to in writing, software\n** distributed under the License is distributed on an \"AS IS\" BASIS,\n** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n** See the License for the specific language governing permissions and\n** limitations under the License.\n*/\n\npackage android.support.v4.media;\n\nparcelable RatingCompat;\n"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/support-v4/23.0.1/aidl/android/support/v4/media/session/MediaSessionCompat.aidl",
    "content": "/* Copyright 2014, The Android Open Source Project\n**\n** Licensed under the Apache License, Version 2.0 (the \"License\");\n** you may not use this file except in compliance with the License.\n** You may obtain a copy of the License at\n**\n**     http://www.apache.org/licenses/LICENSE-2.0\n**\n** Unless required by applicable law or agreed to in writing, software\n** distributed under the License is distributed on an \"AS IS\" BASIS,\n** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n** See the License for the specific language governing permissions and\n** limitations under the License.\n*/\n\npackage android.support.v4.media.session;\n\nparcelable MediaSessionCompat.Token;\nparcelable MediaSessionCompat.QueueItem;\nparcelable MediaSessionCompat.ResultReceiverWrapper;\n"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/support-v4/23.0.1/aidl/android/support/v4/media/session/ParcelableVolumeInfo.aidl",
    "content": "/* Copyright 2014, The Android Open Source Project\n**\n** Licensed under the Apache License, Version 2.0 (the \"License\");\n** you may not use this file except in compliance with the License.\n** You may obtain a copy of the License at\n**\n**     http://www.apache.org/licenses/LICENSE-2.0\n**\n** Unless required by applicable law or agreed to in writing, software\n** distributed under the License is distributed on an \"AS IS\" BASIS,\n** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n** See the License for the specific language governing permissions and\n** limitations under the License.\n*/\n\npackage android.support.v4.media.session;\n\nparcelable ParcelableVolumeInfo;\n"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.android.support/support-v4/23.0.1/aidl/android/support/v4/media/session/PlaybackStateCompat.aidl",
    "content": "/* Copyright 2014, The Android Open Source Project\n**\n** Licensed under the Apache License, Version 2.0 (the \"License\");\n** you may not use this file except in compliance with the License.\n** You may obtain a copy of the License at\n**\n**     http://www.apache.org/licenses/LICENSE-2.0\n**\n** Unless required by applicable law or agreed to in writing, software\n** distributed under the License is distributed on an \"AS IS\" BASIS,\n** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n** See the License for the specific language governing permissions and\n** limitations under the License.\n*/\n\npackage android.support.v4.media.session;\n\nparcelable PlaybackStateCompat;\n"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.facebook.fresco/drawee/0.8.1/AndroidManifest.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    package=\"com.facebook.drawee\" >\n\n    <uses-sdk\n        android:minSdkVersion=\"9\"\n        android:targetSdkVersion=\"21\" />\n\n</manifest>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.facebook.fresco/drawee/0.8.1/R.txt",
    "content": "int attr actualImageScaleType 0x7f01000b\nint attr backgroundImage 0x7f01000c\nint attr fadeDuration 0x7f010000\nint attr failureImage 0x7f010006\nint attr failureImageScaleType 0x7f010007\nint attr overlayImage 0x7f01000d\nint attr placeholderImage 0x7f010002\nint attr placeholderImageScaleType 0x7f010003\nint attr pressedStateOverlayImage 0x7f01000e\nint attr progressBarAutoRotateInterval 0x7f01000a\nint attr progressBarImage 0x7f010008\nint attr progressBarImageScaleType 0x7f010009\nint attr retryImage 0x7f010004\nint attr retryImageScaleType 0x7f010005\nint attr roundAsCircle 0x7f01000f\nint attr roundBottomLeft 0x7f010014\nint attr roundBottomRight 0x7f010013\nint attr roundTopLeft 0x7f010011\nint attr roundTopRight 0x7f010012\nint attr roundWithOverlayColor 0x7f010015\nint attr roundedCornerRadius 0x7f010010\nint attr roundingBorderColor 0x7f010017\nint attr roundingBorderWidth 0x7f010016\nint attr viewAspectRatio 0x7f010001\nint id center 0x7f020000\nint id centerCrop 0x7f020001\nint id centerInside 0x7f020002\nint id fitCenter 0x7f020003\nint id fitEnd 0x7f020004\nint id fitStart 0x7f020005\nint id fitXY 0x7f020006\nint id focusCrop 0x7f020007\nint id none 0x7f020008\nint[] styleable GenericDraweeView { 0x7f010000, 0x7f010001, 0x7f010002, 0x7f010003, 0x7f010004, 0x7f010005, 0x7f010006, 0x7f010007, 0x7f010008, 0x7f010009, 0x7f01000a, 0x7f01000b, 0x7f01000c, 0x7f01000d, 0x7f01000e, 0x7f01000f, 0x7f010010, 0x7f010011, 0x7f010012, 0x7f010013, 0x7f010014, 0x7f010015, 0x7f010016, 0x7f010017 }\nint styleable GenericDraweeView_actualImageScaleType 11\nint styleable GenericDraweeView_backgroundImage 12\nint styleable GenericDraweeView_fadeDuration 0\nint styleable GenericDraweeView_failureImage 6\nint styleable GenericDraweeView_failureImageScaleType 7\nint styleable GenericDraweeView_overlayImage 13\nint styleable GenericDraweeView_placeholderImage 2\nint styleable GenericDraweeView_placeholderImageScaleType 3\nint styleable GenericDraweeView_pressedStateOverlayImage 14\nint styleable GenericDraweeView_progressBarAutoRotateInterval 10\nint styleable GenericDraweeView_progressBarImage 8\nint styleable GenericDraweeView_progressBarImageScaleType 9\nint styleable GenericDraweeView_retryImage 4\nint styleable GenericDraweeView_retryImageScaleType 5\nint styleable GenericDraweeView_roundAsCircle 15\nint styleable GenericDraweeView_roundBottomLeft 20\nint styleable GenericDraweeView_roundBottomRight 19\nint styleable GenericDraweeView_roundTopLeft 17\nint styleable GenericDraweeView_roundTopRight 18\nint styleable GenericDraweeView_roundWithOverlayColor 21\nint styleable GenericDraweeView_roundedCornerRadius 16\nint styleable GenericDraweeView_roundingBorderColor 23\nint styleable GenericDraweeView_roundingBorderWidth 22\nint styleable GenericDraweeView_viewAspectRatio 1\n"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.facebook.fresco/drawee/0.8.1/aapt/AndroidManifest.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    package=\"com.facebook.drawee\" >\n\n    <uses-sdk\n        android:minSdkVersion=\"9\"\n        android:targetSdkVersion=\"21\" />\n\n</manifest>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.facebook.fresco/drawee/0.8.1/res/values/values.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <declare-styleable name=\"GenericDraweeView\"><attr format=\"integer\" name=\"fadeDuration\"/><attr format=\"float\" name=\"viewAspectRatio\"/><attr format=\"reference\" name=\"placeholderImage\"/><attr name=\"placeholderImageScaleType\"><enum name=\"none\" value=\"-1\"/><enum name=\"fitXY\" value=\"0\"/><enum name=\"fitStart\" value=\"1\"/><enum name=\"fitCenter\" value=\"2\"/><enum name=\"fitEnd\" value=\"3\"/><enum name=\"center\" value=\"4\"/><enum name=\"centerInside\" value=\"5\"/><enum name=\"centerCrop\" value=\"6\"/><enum name=\"focusCrop\" value=\"7\"/></attr><attr format=\"reference\" name=\"retryImage\"/><attr name=\"retryImageScaleType\"><enum name=\"none\" value=\"-1\"/><enum name=\"fitXY\" value=\"0\"/><enum name=\"fitStart\" value=\"1\"/><enum name=\"fitCenter\" value=\"2\"/><enum name=\"fitEnd\" value=\"3\"/><enum name=\"center\" value=\"4\"/><enum name=\"centerInside\" value=\"5\"/><enum name=\"centerCrop\" value=\"6\"/><enum name=\"focusCrop\" value=\"7\"/></attr><attr format=\"reference\" name=\"failureImage\"/><attr name=\"failureImageScaleType\"><enum name=\"none\" value=\"-1\"/><enum name=\"fitXY\" value=\"0\"/><enum name=\"fitStart\" value=\"1\"/><enum name=\"fitCenter\" value=\"2\"/><enum name=\"fitEnd\" value=\"3\"/><enum name=\"center\" value=\"4\"/><enum name=\"centerInside\" value=\"5\"/><enum name=\"centerCrop\" value=\"6\"/><enum name=\"focusCrop\" value=\"7\"/></attr><attr format=\"reference\" name=\"progressBarImage\"/><attr name=\"progressBarImageScaleType\"><enum name=\"none\" value=\"-1\"/><enum name=\"fitXY\" value=\"0\"/><enum name=\"fitStart\" value=\"1\"/><enum name=\"fitCenter\" value=\"2\"/><enum name=\"fitEnd\" value=\"3\"/><enum name=\"center\" value=\"4\"/><enum name=\"centerInside\" value=\"5\"/><enum name=\"centerCrop\" value=\"6\"/><enum name=\"focusCrop\" value=\"7\"/></attr><attr format=\"integer\" name=\"progressBarAutoRotateInterval\"/><attr name=\"actualImageScaleType\"><enum name=\"none\" value=\"-1\"/><enum name=\"fitXY\" value=\"0\"/><enum name=\"fitStart\" value=\"1\"/><enum name=\"fitCenter\" value=\"2\"/><enum name=\"fitEnd\" value=\"3\"/><enum name=\"center\" value=\"4\"/><enum name=\"centerInside\" value=\"5\"/><enum name=\"centerCrop\" value=\"6\"/><enum name=\"focusCrop\" value=\"7\"/></attr><attr format=\"reference\" name=\"backgroundImage\"/><attr format=\"reference\" name=\"overlayImage\"/><attr format=\"reference\" name=\"pressedStateOverlayImage\"/><attr format=\"boolean\" name=\"roundAsCircle\"/><attr format=\"dimension\" name=\"roundedCornerRadius\"/><attr format=\"boolean\" name=\"roundTopLeft\"/><attr format=\"boolean\" name=\"roundTopRight\"/><attr format=\"boolean\" name=\"roundBottomRight\"/><attr format=\"boolean\" name=\"roundBottomLeft\"/><attr format=\"color\" name=\"roundWithOverlayColor\"/><attr format=\"dimension\" name=\"roundingBorderWidth\"/><attr format=\"color\" name=\"roundingBorderColor\"/></declare-styleable>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.facebook.fresco/fbcore/0.8.1/AndroidManifest.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    package=\"com.facebook.fbcore\" >\n\n    <uses-sdk\n        android:minSdkVersion=\"9\"\n        android:targetSdkVersion=\"21\" />\n\n</manifest>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.facebook.fresco/fbcore/0.8.1/aapt/AndroidManifest.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    package=\"com.facebook.fbcore\" >\n\n    <uses-sdk\n        android:minSdkVersion=\"9\"\n        android:targetSdkVersion=\"21\" />\n\n</manifest>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.facebook.fresco/fresco/0.8.1/AndroidManifest.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    package=\"com.facebook.drawee.backends.pipeline\" >\n\n    <uses-sdk\n        android:minSdkVersion=\"9\"\n        android:targetSdkVersion=\"21\" />\n\n</manifest>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.facebook.fresco/fresco/0.8.1/R.txt",
    "content": "int attr actualImageScaleType 0x7f01000b\nint attr backgroundImage 0x7f01000c\nint attr fadeDuration 0x7f010000\nint attr failureImage 0x7f010006\nint attr failureImageScaleType 0x7f010007\nint attr overlayImage 0x7f01000d\nint attr placeholderImage 0x7f010002\nint attr placeholderImageScaleType 0x7f010003\nint attr pressedStateOverlayImage 0x7f01000e\nint attr progressBarAutoRotateInterval 0x7f01000a\nint attr progressBarImage 0x7f010008\nint attr progressBarImageScaleType 0x7f010009\nint attr retryImage 0x7f010004\nint attr retryImageScaleType 0x7f010005\nint attr roundAsCircle 0x7f01000f\nint attr roundBottomLeft 0x7f010014\nint attr roundBottomRight 0x7f010013\nint attr roundTopLeft 0x7f010011\nint attr roundTopRight 0x7f010012\nint attr roundWithOverlayColor 0x7f010015\nint attr roundedCornerRadius 0x7f010010\nint attr roundingBorderColor 0x7f010017\nint attr roundingBorderWidth 0x7f010016\nint attr viewAspectRatio 0x7f010001\nint id center 0x7f020000\nint id centerCrop 0x7f020001\nint id centerInside 0x7f020002\nint id fitCenter 0x7f020003\nint id fitEnd 0x7f020004\nint id fitStart 0x7f020005\nint id fitXY 0x7f020006\nint id focusCrop 0x7f020007\nint id none 0x7f020008\nint[] styleable GenericDraweeView { 0x7f010000, 0x7f010001, 0x7f010002, 0x7f010003, 0x7f010004, 0x7f010005, 0x7f010006, 0x7f010007, 0x7f010008, 0x7f010009, 0x7f01000a, 0x7f01000b, 0x7f01000c, 0x7f01000d, 0x7f01000e, 0x7f01000f, 0x7f010010, 0x7f010011, 0x7f010012, 0x7f010013, 0x7f010014, 0x7f010015, 0x7f010016, 0x7f010017 }\nint styleable GenericDraweeView_actualImageScaleType 11\nint styleable GenericDraweeView_backgroundImage 12\nint styleable GenericDraweeView_fadeDuration 0\nint styleable GenericDraweeView_failureImage 6\nint styleable GenericDraweeView_failureImageScaleType 7\nint styleable GenericDraweeView_overlayImage 13\nint styleable GenericDraweeView_placeholderImage 2\nint styleable GenericDraweeView_placeholderImageScaleType 3\nint styleable GenericDraweeView_pressedStateOverlayImage 14\nint styleable GenericDraweeView_progressBarAutoRotateInterval 10\nint styleable GenericDraweeView_progressBarImage 8\nint styleable GenericDraweeView_progressBarImageScaleType 9\nint styleable GenericDraweeView_retryImage 4\nint styleable GenericDraweeView_retryImageScaleType 5\nint styleable GenericDraweeView_roundAsCircle 15\nint styleable GenericDraweeView_roundBottomLeft 20\nint styleable GenericDraweeView_roundBottomRight 19\nint styleable GenericDraweeView_roundTopLeft 17\nint styleable GenericDraweeView_roundTopRight 18\nint styleable GenericDraweeView_roundWithOverlayColor 21\nint styleable GenericDraweeView_roundedCornerRadius 16\nint styleable GenericDraweeView_roundingBorderColor 23\nint styleable GenericDraweeView_roundingBorderWidth 22\nint styleable GenericDraweeView_viewAspectRatio 1\n"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.facebook.fresco/fresco/0.8.1/aapt/AndroidManifest.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    package=\"com.facebook.drawee.backends.pipeline\" >\n\n    <uses-sdk\n        android:minSdkVersion=\"9\"\n        android:targetSdkVersion=\"21\" />\n\n</manifest>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/AndroidManifest.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    package=\"com.facebook.imagepipeline\" >\n\n    <uses-sdk\n        android:minSdkVersion=\"9\"\n        android:targetSdkVersion=\"21\" />\n\n</manifest>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/aapt/AndroidManifest.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    package=\"com.facebook.imagepipeline\" >\n\n    <uses-sdk\n        android:minSdkVersion=\"9\"\n        android:targetSdkVersion=\"21\" />\n\n</manifest>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline-okhttp/0.8.1/AndroidManifest.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    package=\"com.facebook.imagepipeline.backends.okhttp\" >\n\n    <uses-sdk\n        android:minSdkVersion=\"9\"\n        android:targetSdkVersion=\"21\" />\n\n</manifest>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline-okhttp/0.8.1/aapt/AndroidManifest.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    package=\"com.facebook.imagepipeline.backends.okhttp\" >\n\n    <uses-sdk\n        android:minSdkVersion=\"9\"\n        android:targetSdkVersion=\"21\" />\n\n</manifest>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/AndroidManifest.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    package=\"com.facebook.react\"\n    android:versionCode=\"1\"\n    android:versionName=\"1.0\" >\n\n    <uses-sdk\n        android:minSdkVersion=\"16\"\n        android:targetSdkVersion=\"22\" />\n\n    <uses-permission android:name=\"android.permission.SYSTEM_ALERT_WINDOW\" />\n\n    <application />\n\n</manifest>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/R.txt",
    "content": "int anim abc_fade_in 0x7f040000\nint anim abc_fade_out 0x7f040001\nint anim abc_grow_fade_in_from_bottom 0x7f040002\nint anim abc_popup_enter 0x7f040003\nint anim abc_popup_exit 0x7f040004\nint anim abc_shrink_fade_out_from_bottom 0x7f040005\nint anim abc_slide_in_bottom 0x7f040006\nint anim abc_slide_in_top 0x7f040007\nint anim abc_slide_out_bottom 0x7f040008\nint anim abc_slide_out_top 0x7f040009\nint anim catalyst_push_up_in 0x7f04000a\nint anim catalyst_push_up_out 0x7f04000b\nint anim slide_down 0x7f04000c\nint anim slide_up 0x7f04000d\nint attr actionBarDivider 0x7f01007e\nint attr actionBarItemBackground 0x7f01007f\nint attr actionBarPopupTheme 0x7f010078\nint attr actionBarSize 0x7f01007d\nint attr actionBarSplitStyle 0x7f01007a\nint attr actionBarStyle 0x7f010079\nint attr actionBarTabBarStyle 0x7f010074\nint attr actionBarTabStyle 0x7f010073\nint attr actionBarTabTextStyle 0x7f010075\nint attr actionBarTheme 0x7f01007b\nint attr actionBarWidgetTheme 0x7f01007c\nint attr actionButtonStyle 0x7f010098\nint attr actionDropDownStyle 0x7f010094\nint attr actionLayout 0x7f01004b\nint attr actionMenuTextAppearance 0x7f010080\nint attr actionMenuTextColor 0x7f010081\nint attr actionModeBackground 0x7f010084\nint attr actionModeCloseButtonStyle 0x7f010083\nint attr actionModeCloseDrawable 0x7f010086\nint attr actionModeCopyDrawable 0x7f010088\nint attr actionModeCutDrawable 0x7f010087\nint attr actionModeFindDrawable 0x7f01008c\nint attr actionModePasteDrawable 0x7f010089\nint attr actionModePopupWindowStyle 0x7f01008e\nint attr actionModeSelectAllDrawable 0x7f01008a\nint attr actionModeShareDrawable 0x7f01008b\nint attr actionModeSplitBackground 0x7f010085\nint attr actionModeStyle 0x7f010082\nint attr actionModeWebSearchDrawable 0x7f01008d\nint attr actionOverflowButtonStyle 0x7f010076\nint attr actionOverflowMenuStyle 0x7f010077\nint attr actionProviderClass 0x7f01004d\nint attr actionViewClass 0x7f01004c\nint attr activityChooserViewStyle 0x7f0100a0\nint attr actualImageScaleType 0x7f01003a\nint attr alertDialogButtonGroupStyle 0x7f0100c2\nint attr alertDialogCenterButtons 0x7f0100c3\nint attr alertDialogStyle 0x7f0100c1\nint attr alertDialogTheme 0x7f0100c4\nint attr arrowHeadLength 0x7f01002b\nint attr arrowShaftLength 0x7f01002c\nint attr autoCompleteTextViewStyle 0x7f0100c9\nint attr background 0x7f01000c\nint attr backgroundImage 0x7f01003b\nint attr backgroundSplit 0x7f01000e\nint attr backgroundStacked 0x7f01000d\nint attr backgroundTint 0x7f0100e5\nint attr backgroundTintMode 0x7f0100e6\nint attr barLength 0x7f01002d\nint attr borderlessButtonStyle 0x7f01009d\nint attr buttonBarButtonStyle 0x7f01009a\nint attr buttonBarNegativeButtonStyle 0x7f0100c7\nint attr buttonBarNeutralButtonStyle 0x7f0100c8\nint attr buttonBarPositiveButtonStyle 0x7f0100c6\nint attr buttonBarStyle 0x7f010099\nint attr buttonPanelSideLayout 0x7f01001f\nint attr buttonStyle 0x7f0100ca\nint attr buttonStyleSmall 0x7f0100cb\nint attr buttonTint 0x7f010025\nint attr buttonTintMode 0x7f010026\nint attr checkboxStyle 0x7f0100cc\nint attr checkedTextViewStyle 0x7f0100cd\nint attr closeIcon 0x7f010059\nint attr closeItemLayout 0x7f01001c\nint attr collapseContentDescription 0x7f0100dc\nint attr collapseIcon 0x7f0100db\nint attr color 0x7f010027\nint attr colorAccent 0x7f0100ba\nint attr colorButtonNormal 0x7f0100be\nint attr colorControlActivated 0x7f0100bc\nint attr colorControlHighlight 0x7f0100bd\nint attr colorControlNormal 0x7f0100bb\nint attr colorPrimary 0x7f0100b8\nint attr colorPrimaryDark 0x7f0100b9\nint attr colorSwitchThumbNormal 0x7f0100bf\nint attr commitIcon 0x7f01005e\nint attr contentInsetEnd 0x7f010017\nint attr contentInsetLeft 0x7f010018\nint attr contentInsetRight 0x7f010019\nint attr contentInsetStart 0x7f010016\nint attr controlBackground 0x7f0100c0\nint attr customNavigationLayout 0x7f01000f\nint attr defaultQueryHint 0x7f010058\nint attr dialogPreferredPadding 0x7f010092\nint attr dialogTheme 0x7f010091\nint attr displayOptions 0x7f010005\nint attr divider 0x7f01000b\nint attr dividerHorizontal 0x7f01009f\nint attr dividerPadding 0x7f010049\nint attr dividerVertical 0x7f01009e\nint attr drawableSize 0x7f010029\nint attr drawerArrowStyle 0x7f010000\nint attr dropDownListViewStyle 0x7f0100b0\nint attr dropdownListPreferredItemHeight 0x7f010095\nint attr editTextBackground 0x7f0100a6\nint attr editTextColor 0x7f0100a5\nint attr editTextStyle 0x7f0100ce\nint attr elevation 0x7f01001a\nint attr expandActivityOverflowButtonDrawable 0x7f01001e\nint attr fadeDuration 0x7f01002f\nint attr failureImage 0x7f010035\nint attr failureImageScaleType 0x7f010036\nint attr gapBetweenBars 0x7f01002a\nint attr goIcon 0x7f01005a\nint attr height 0x7f010001\nint attr hideOnContentScroll 0x7f010015\nint attr homeAsUpIndicator 0x7f010097\nint attr homeLayout 0x7f010010\nint attr icon 0x7f010009\nint attr iconifiedByDefault 0x7f010056\nint attr indeterminateProgressStyle 0x7f010012\nint attr initialActivityCount 0x7f01001d\nint attr isLightTheme 0x7f010002\nint attr itemPadding 0x7f010014\nint attr layout 0x7f010055\nint attr layoutManager 0x7f010051\nint attr listChoiceBackgroundIndicator 0x7f0100b7\nint attr listDividerAlertDialog 0x7f010093\nint attr listItemLayout 0x7f010023\nint attr listLayout 0x7f010020\nint attr listPopupWindowStyle 0x7f0100b1\nint attr listPreferredItemHeight 0x7f0100ab\nint attr listPreferredItemHeightLarge 0x7f0100ad\nint attr listPreferredItemHeightSmall 0x7f0100ac\nint attr listPreferredItemPaddingLeft 0x7f0100ae\nint attr listPreferredItemPaddingRight 0x7f0100af\nint attr logo 0x7f01000a\nint attr logoDescription 0x7f0100df\nint attr maxButtonHeight 0x7f0100da\nint attr measureWithLargestChild 0x7f010047\nint attr multiChoiceItemLayout 0x7f010021\nint attr navigationContentDescription 0x7f0100de\nint attr navigationIcon 0x7f0100dd\nint attr navigationMode 0x7f010004\nint attr overlapAnchor 0x7f01004f\nint attr overlayImage 0x7f01003c\nint attr paddingEnd 0x7f0100e3\nint attr paddingStart 0x7f0100e2\nint attr panelBackground 0x7f0100b4\nint attr panelMenuListTheme 0x7f0100b6\nint attr panelMenuListWidth 0x7f0100b5\nint attr placeholderImage 0x7f010031\nint attr placeholderImageScaleType 0x7f010032\nint attr popupMenuStyle 0x7f0100a3\nint attr popupTheme 0x7f01001b\nint attr popupWindowStyle 0x7f0100a4\nint attr preserveIconSpacing 0x7f01004e\nint attr pressedStateOverlayImage 0x7f01003d\nint attr progressBarAutoRotateInterval 0x7f010039\nint attr progressBarImage 0x7f010037\nint attr progressBarImageScaleType 0x7f010038\nint attr progressBarPadding 0x7f010013\nint attr progressBarStyle 0x7f010011\nint attr queryBackground 0x7f010060\nint attr queryHint 0x7f010057\nint attr radioButtonStyle 0x7f0100cf\nint attr ratingBarStyle 0x7f0100d0\nint attr retryImage 0x7f010033\nint attr retryImageScaleType 0x7f010034\nint attr reverseLayout 0x7f010053\nint attr roundAsCircle 0x7f01003e\nint attr roundBottomLeft 0x7f010043\nint attr roundBottomRight 0x7f010042\nint attr roundTopLeft 0x7f010040\nint attr roundTopRight 0x7f010041\nint attr roundWithOverlayColor 0x7f010044\nint attr roundedCornerRadius 0x7f01003f\nint attr roundingBorderColor 0x7f010046\nint attr roundingBorderWidth 0x7f010045\nint attr searchHintIcon 0x7f01005c\nint attr searchIcon 0x7f01005b\nint attr searchViewStyle 0x7f0100aa\nint attr selectableItemBackground 0x7f01009b\nint attr selectableItemBackgroundBorderless 0x7f01009c\nint attr showAsAction 0x7f01004a\nint attr showDividers 0x7f010048\nint attr showText 0x7f010068\nint attr singleChoiceItemLayout 0x7f010022\nint attr spanCount 0x7f010052\nint attr spinBars 0x7f010028\nint attr spinnerDropDownItemStyle 0x7f010096\nint attr spinnerStyle 0x7f0100d1\nint attr splitTrack 0x7f010067\nint attr stackFromEnd 0x7f010054\nint attr state_above_anchor 0x7f010050\nint attr submitBackground 0x7f010061\nint attr subtitle 0x7f010006\nint attr subtitleTextAppearance 0x7f0100d4\nint attr subtitleTextColor 0x7f0100e1\nint attr subtitleTextStyle 0x7f010008\nint attr suggestionRowLayout 0x7f01005f\nint attr switchMinWidth 0x7f010065\nint attr switchPadding 0x7f010066\nint attr switchStyle 0x7f0100d2\nint attr switchTextAppearance 0x7f010064\nint attr textAllCaps 0x7f010024\nint attr textAppearanceLargePopupMenu 0x7f01008f\nint attr textAppearanceListItem 0x7f0100b2\nint attr textAppearanceListItemSmall 0x7f0100b3\nint attr textAppearanceSearchResultSubtitle 0x7f0100a8\nint attr textAppearanceSearchResultTitle 0x7f0100a7\nint attr textAppearanceSmallPopupMenu 0x7f010090\nint attr textColorAlertDialogListItem 0x7f0100c5\nint attr textColorSearchUrl 0x7f0100a9\nint attr theme 0x7f0100e4\nint attr thickness 0x7f01002e\nint attr thumbTextPadding 0x7f010063\nint attr title 0x7f010003\nint attr titleMarginBottom 0x7f0100d9\nint attr titleMarginEnd 0x7f0100d7\nint attr titleMarginStart 0x7f0100d6\nint attr titleMarginTop 0x7f0100d8\nint attr titleMargins 0x7f0100d5\nint attr titleTextAppearance 0x7f0100d3\nint attr titleTextColor 0x7f0100e0\nint attr titleTextStyle 0x7f010007\nint attr toolbarNavigationButtonStyle 0x7f0100a2\nint attr toolbarStyle 0x7f0100a1\nint attr track 0x7f010062\nint attr viewAspectRatio 0x7f010030\nint attr voiceIcon 0x7f01005d\nint attr windowActionBar 0x7f010069\nint attr windowActionBarOverlay 0x7f01006b\nint attr windowActionModeOverlay 0x7f01006c\nint attr windowFixedHeightMajor 0x7f010070\nint attr windowFixedHeightMinor 0x7f01006e\nint attr windowFixedWidthMajor 0x7f01006d\nint attr windowFixedWidthMinor 0x7f01006f\nint attr windowMinWidthMajor 0x7f010071\nint attr windowMinWidthMinor 0x7f010072\nint attr windowNoTitle 0x7f01006a\nint bool abc_action_bar_embed_tabs 0x7f090002\nint bool abc_action_bar_embed_tabs_pre_jb 0x7f090000\nint bool abc_action_bar_expanded_action_views_exclusive 0x7f090003\nint bool abc_config_actionMenuItemAllCaps 0x7f090004\nint bool abc_config_allowActionMenuItemTextWithIcon 0x7f090001\nint bool abc_config_closeDialogWhenTouchOutside 0x7f090005\nint bool abc_config_showMenuShortcutsWhenKeyboardPresent 0x7f090006\nint color abc_background_cache_hint_selector_material_dark 0x7f0b003b\nint color abc_background_cache_hint_selector_material_light 0x7f0b003c\nint color abc_color_highlight_material 0x7f0b003d\nint color abc_input_method_navigation_guard 0x7f0b0000\nint color abc_primary_text_disable_only_material_dark 0x7f0b003e\nint color abc_primary_text_disable_only_material_light 0x7f0b003f\nint color abc_primary_text_material_dark 0x7f0b0040\nint color abc_primary_text_material_light 0x7f0b0041\nint color abc_search_url_text 0x7f0b0042\nint color abc_search_url_text_normal 0x7f0b0001\nint color abc_search_url_text_pressed 0x7f0b0002\nint color abc_search_url_text_selected 0x7f0b0003\nint color abc_secondary_text_material_dark 0x7f0b0043\nint color abc_secondary_text_material_light 0x7f0b0044\nint color accent_material_dark 0x7f0b0004\nint color accent_material_light 0x7f0b0005\nint color background_floating_material_dark 0x7f0b0006\nint color background_floating_material_light 0x7f0b0007\nint color background_material_dark 0x7f0b0008\nint color background_material_light 0x7f0b0009\nint color bright_foreground_disabled_material_dark 0x7f0b000a\nint color bright_foreground_disabled_material_light 0x7f0b000b\nint color bright_foreground_inverse_material_dark 0x7f0b000c\nint color bright_foreground_inverse_material_light 0x7f0b000d\nint color bright_foreground_material_dark 0x7f0b000e\nint color bright_foreground_material_light 0x7f0b000f\nint color button_material_dark 0x7f0b0010\nint color button_material_light 0x7f0b0011\nint color catalyst_redbox_background 0x7f0b0012\nint color dim_foreground_disabled_material_dark 0x7f0b0013\nint color dim_foreground_disabled_material_light 0x7f0b0014\nint color dim_foreground_material_dark 0x7f0b0015\nint color dim_foreground_material_light 0x7f0b0016\nint color foreground_material_dark 0x7f0b0017\nint color foreground_material_light 0x7f0b0018\nint color highlighted_text_material_dark 0x7f0b0019\nint color highlighted_text_material_light 0x7f0b001a\nint color hint_foreground_material_dark 0x7f0b001b\nint color hint_foreground_material_light 0x7f0b001c\nint color material_blue_grey_800 0x7f0b001d\nint color material_blue_grey_900 0x7f0b001e\nint color material_blue_grey_950 0x7f0b001f\nint color material_deep_teal_200 0x7f0b0020\nint color material_deep_teal_500 0x7f0b0021\nint color material_grey_100 0x7f0b0022\nint color material_grey_300 0x7f0b0023\nint color material_grey_50 0x7f0b0024\nint color material_grey_600 0x7f0b0025\nint color material_grey_800 0x7f0b0026\nint color material_grey_850 0x7f0b0027\nint color material_grey_900 0x7f0b0028\nint color primary_dark_material_dark 0x7f0b0029\nint color primary_dark_material_light 0x7f0b002a\nint color primary_material_dark 0x7f0b002b\nint color primary_material_light 0x7f0b002c\nint color primary_text_default_material_dark 0x7f0b002d\nint color primary_text_default_material_light 0x7f0b002e\nint color primary_text_disabled_material_dark 0x7f0b002f\nint color primary_text_disabled_material_light 0x7f0b0030\nint color ripple_material_dark 0x7f0b0031\nint color ripple_material_light 0x7f0b0032\nint color secondary_text_default_material_dark 0x7f0b0033\nint color secondary_text_default_material_light 0x7f0b0034\nint color secondary_text_disabled_material_dark 0x7f0b0035\nint color secondary_text_disabled_material_light 0x7f0b0036\nint color switch_thumb_disabled_material_dark 0x7f0b0037\nint color switch_thumb_disabled_material_light 0x7f0b0038\nint color switch_thumb_material_dark 0x7f0b0045\nint color switch_thumb_material_light 0x7f0b0046\nint color switch_thumb_normal_material_dark 0x7f0b0039\nint color switch_thumb_normal_material_light 0x7f0b003a\nint dimen abc_action_bar_content_inset_material 0x7f07000b\nint dimen abc_action_bar_default_height_material 0x7f070001\nint dimen abc_action_bar_default_padding_end_material 0x7f07000c\nint dimen abc_action_bar_default_padding_start_material 0x7f07000d\nint dimen abc_action_bar_icon_vertical_padding_material 0x7f07000f\nint dimen abc_action_bar_overflow_padding_end_material 0x7f070010\nint dimen abc_action_bar_overflow_padding_start_material 0x7f070011\nint dimen abc_action_bar_progress_bar_size 0x7f070002\nint dimen abc_action_bar_stacked_max_height 0x7f070012\nint dimen abc_action_bar_stacked_tab_max_width 0x7f070013\nint dimen abc_action_bar_subtitle_bottom_margin_material 0x7f070014\nint dimen abc_action_bar_subtitle_top_margin_material 0x7f070015\nint dimen abc_action_button_min_height_material 0x7f070016\nint dimen abc_action_button_min_width_material 0x7f070017\nint dimen abc_action_button_min_width_overflow_material 0x7f070018\nint dimen abc_alert_dialog_button_bar_height 0x7f070000\nint dimen abc_button_inset_horizontal_material 0x7f070019\nint dimen abc_button_inset_vertical_material 0x7f07001a\nint dimen abc_button_padding_horizontal_material 0x7f07001b\nint dimen abc_button_padding_vertical_material 0x7f07001c\nint dimen abc_config_prefDialogWidth 0x7f070005\nint dimen abc_control_corner_material 0x7f07001d\nint dimen abc_control_inset_material 0x7f07001e\nint dimen abc_control_padding_material 0x7f07001f\nint dimen abc_dialog_list_padding_vertical_material 0x7f070020\nint dimen abc_dialog_min_width_major 0x7f070021\nint dimen abc_dialog_min_width_minor 0x7f070022\nint dimen abc_dialog_padding_material 0x7f070023\nint dimen abc_dialog_padding_top_material 0x7f070024\nint dimen abc_disabled_alpha_material_dark 0x7f070025\nint dimen abc_disabled_alpha_material_light 0x7f070026\nint dimen abc_dropdownitem_icon_width 0x7f070027\nint dimen abc_dropdownitem_text_padding_left 0x7f070028\nint dimen abc_dropdownitem_text_padding_right 0x7f070029\nint dimen abc_edit_text_inset_bottom_material 0x7f07002a\nint dimen abc_edit_text_inset_horizontal_material 0x7f07002b\nint dimen abc_edit_text_inset_top_material 0x7f07002c\nint dimen abc_floating_window_z 0x7f07002d\nint dimen abc_list_item_padding_horizontal_material 0x7f07002e\nint dimen abc_panel_menu_list_width 0x7f07002f\nint dimen abc_search_view_preferred_width 0x7f070030\nint dimen abc_search_view_text_min_width 0x7f070006\nint dimen abc_switch_padding 0x7f07000e\nint dimen abc_text_size_body_1_material 0x7f070031\nint dimen abc_text_size_body_2_material 0x7f070032\nint dimen abc_text_size_button_material 0x7f070033\nint dimen abc_text_size_caption_material 0x7f070034\nint dimen abc_text_size_display_1_material 0x7f070035\nint dimen abc_text_size_display_2_material 0x7f070036\nint dimen abc_text_size_display_3_material 0x7f070037\nint dimen abc_text_size_display_4_material 0x7f070038\nint dimen abc_text_size_headline_material 0x7f070039\nint dimen abc_text_size_large_material 0x7f07003a\nint dimen abc_text_size_medium_material 0x7f07003b\nint dimen abc_text_size_menu_material 0x7f07003c\nint dimen abc_text_size_small_material 0x7f07003d\nint dimen abc_text_size_subhead_material 0x7f07003e\nint dimen abc_text_size_subtitle_material_toolbar 0x7f070003\nint dimen abc_text_size_title_material 0x7f07003f\nint dimen abc_text_size_title_material_toolbar 0x7f070004\nint dimen dialog_fixed_height_major 0x7f070007\nint dimen dialog_fixed_height_minor 0x7f070008\nint dimen dialog_fixed_width_major 0x7f070009\nint dimen dialog_fixed_width_minor 0x7f07000a\nint dimen disabled_alpha_material_dark 0x7f070040\nint dimen disabled_alpha_material_light 0x7f070041\nint dimen highlight_alpha_material_colored 0x7f070042\nint dimen highlight_alpha_material_dark 0x7f070043\nint dimen highlight_alpha_material_light 0x7f070044\nint dimen item_touch_helper_max_drag_scroll_per_frame 0x7f070045\nint dimen notification_large_icon_height 0x7f070046\nint dimen notification_large_icon_width 0x7f070047\nint dimen notification_subtext_size 0x7f070048\nint drawable abc_ab_share_pack_mtrl_alpha 0x7f020000\nint drawable abc_action_bar_item_background_material 0x7f020001\nint drawable abc_btn_borderless_material 0x7f020002\nint drawable abc_btn_check_material 0x7f020003\nint drawable abc_btn_check_to_on_mtrl_000 0x7f020004\nint drawable abc_btn_check_to_on_mtrl_015 0x7f020005\nint drawable abc_btn_colored_material 0x7f020006\nint drawable abc_btn_default_mtrl_shape 0x7f020007\nint drawable abc_btn_radio_material 0x7f020008\nint drawable abc_btn_radio_to_on_mtrl_000 0x7f020009\nint drawable abc_btn_radio_to_on_mtrl_015 0x7f02000a\nint drawable abc_btn_rating_star_off_mtrl_alpha 0x7f02000b\nint drawable abc_btn_rating_star_on_mtrl_alpha 0x7f02000c\nint drawable abc_btn_switch_to_on_mtrl_00001 0x7f02000d\nint drawable abc_btn_switch_to_on_mtrl_00012 0x7f02000e\nint drawable abc_cab_background_internal_bg 0x7f02000f\nint drawable abc_cab_background_top_material 0x7f020010\nint drawable abc_cab_background_top_mtrl_alpha 0x7f020011\nint drawable abc_control_background_material 0x7f020012\nint drawable abc_dialog_material_background_dark 0x7f020013\nint drawable abc_dialog_material_background_light 0x7f020014\nint drawable abc_edit_text_material 0x7f020015\nint drawable abc_ic_ab_back_mtrl_am_alpha 0x7f020016\nint drawable abc_ic_clear_mtrl_alpha 0x7f020017\nint drawable abc_ic_commit_search_api_mtrl_alpha 0x7f020018\nint drawable abc_ic_go_search_api_mtrl_alpha 0x7f020019\nint drawable abc_ic_menu_copy_mtrl_am_alpha 0x7f02001a\nint drawable abc_ic_menu_cut_mtrl_alpha 0x7f02001b\nint drawable abc_ic_menu_moreoverflow_mtrl_alpha 0x7f02001c\nint drawable abc_ic_menu_paste_mtrl_am_alpha 0x7f02001d\nint drawable abc_ic_menu_selectall_mtrl_alpha 0x7f02001e\nint drawable abc_ic_menu_share_mtrl_alpha 0x7f02001f\nint drawable abc_ic_search_api_mtrl_alpha 0x7f020020\nint drawable abc_ic_voice_search_api_mtrl_alpha 0x7f020021\nint drawable abc_item_background_holo_dark 0x7f020022\nint drawable abc_item_background_holo_light 0x7f020023\nint drawable abc_list_divider_mtrl_alpha 0x7f020024\nint drawable abc_list_focused_holo 0x7f020025\nint drawable abc_list_longpressed_holo 0x7f020026\nint drawable abc_list_pressed_holo_dark 0x7f020027\nint drawable abc_list_pressed_holo_light 0x7f020028\nint drawable abc_list_selector_background_transition_holo_dark 0x7f020029\nint drawable abc_list_selector_background_transition_holo_light 0x7f02002a\nint drawable abc_list_selector_disabled_holo_dark 0x7f02002b\nint drawable abc_list_selector_disabled_holo_light 0x7f02002c\nint drawable abc_list_selector_holo_dark 0x7f02002d\nint drawable abc_list_selector_holo_light 0x7f02002e\nint drawable abc_menu_hardkey_panel_mtrl_mult 0x7f02002f\nint drawable abc_popup_background_mtrl_mult 0x7f020030\nint drawable abc_ratingbar_full_material 0x7f020031\nint drawable abc_spinner_mtrl_am_alpha 0x7f020032\nint drawable abc_spinner_textfield_background_material 0x7f020033\nint drawable abc_switch_thumb_material 0x7f020034\nint drawable abc_switch_track_mtrl_alpha 0x7f020035\nint drawable abc_tab_indicator_material 0x7f020036\nint drawable abc_tab_indicator_mtrl_alpha 0x7f020037\nint drawable abc_text_cursor_material 0x7f020038\nint drawable abc_textfield_activated_mtrl_alpha 0x7f020039\nint drawable abc_textfield_default_mtrl_alpha 0x7f02003a\nint drawable abc_textfield_search_activated_mtrl_alpha 0x7f02003b\nint drawable abc_textfield_search_default_mtrl_alpha 0x7f02003c\nint drawable abc_textfield_search_material 0x7f02003d\nint drawable notification_template_icon_bg 0x7f02003e\nint id action0 0x7f0c0057\nint id action_bar 0x7f0c0047\nint id action_bar_activity_content 0x7f0c0000\nint id action_bar_container 0x7f0c0046\nint id action_bar_root 0x7f0c0042\nint id action_bar_spinner 0x7f0c0001\nint id action_bar_subtitle 0x7f0c002b\nint id action_bar_title 0x7f0c002a\nint id action_context_bar 0x7f0c0048\nint id action_divider 0x7f0c005b\nint id action_menu_divider 0x7f0c0002\nint id action_menu_presenter 0x7f0c0003\nint id action_mode_bar 0x7f0c0044\nint id action_mode_bar_stub 0x7f0c0043\nint id action_mode_close_button 0x7f0c002c\nint id activity_chooser_view_content 0x7f0c002d\nint id alertTitle 0x7f0c0037\nint id always 0x7f0c0024\nint id beginning 0x7f0c0021\nint id buttonPanel 0x7f0c003d\nint id cancel_action 0x7f0c0058\nint id catalyst_redbox_title 0x7f0c0066\nint id center 0x7f0c0019\nint id centerCrop 0x7f0c001a\nint id centerInside 0x7f0c001b\nint id checkbox 0x7f0c003f\nint id chronometer 0x7f0c005e\nint id collapseActionView 0x7f0c0025\nint id contentPanel 0x7f0c0038\nint id custom 0x7f0c003c\nint id customPanel 0x7f0c003b\nint id decor_content_parent 0x7f0c0045\nint id default_activity_button 0x7f0c0030\nint id disableHome 0x7f0c000d\nint id edit_query 0x7f0c0049\nint id end 0x7f0c0022\nint id end_padder 0x7f0c0063\nint id expand_activities_button 0x7f0c002e\nint id expanded_menu 0x7f0c003e\nint id fitCenter 0x7f0c001c\nint id fitEnd 0x7f0c001d\nint id fitStart 0x7f0c001e\nint id fitXY 0x7f0c001f\nint id focusCrop 0x7f0c0020\nint id fps_text 0x7f0c0056\nint id home 0x7f0c0004\nint id homeAsUp 0x7f0c000e\nint id icon 0x7f0c0032\nint id ifRoom 0x7f0c0026\nint id image 0x7f0c002f\nint id info 0x7f0c0062\nint id item_touch_helper_previous_elevation 0x7f0c0005\nint id line1 0x7f0c005c\nint id line3 0x7f0c0060\nint id listMode 0x7f0c000a\nint id list_item 0x7f0c0031\nint id media_actions 0x7f0c005a\nint id middle 0x7f0c0023\nint id multiply 0x7f0c0014\nint id never 0x7f0c0027\nint id none 0x7f0c000f\nint id normal 0x7f0c000b\nint id parentPanel 0x7f0c0034\nint id progress_circular 0x7f0c0006\nint id progress_horizontal 0x7f0c0007\nint id radio 0x7f0c0041\nint id rn_frame_file 0x7f0c0065\nint id rn_frame_method 0x7f0c0064\nint id rn_redbox_reloadjs 0x7f0c0068\nint id rn_redbox_stack 0x7f0c0067\nint id screen 0x7f0c0015\nint id scrollView 0x7f0c0039\nint id search_badge 0x7f0c004b\nint id search_bar 0x7f0c004a\nint id search_button 0x7f0c004c\nint id search_close_btn 0x7f0c0051\nint id search_edit_frame 0x7f0c004d\nint id search_go_btn 0x7f0c0053\nint id search_mag_icon 0x7f0c004e\nint id search_plate 0x7f0c004f\nint id search_src_text 0x7f0c0050\nint id search_voice_btn 0x7f0c0054\nint id select_dialog_listview 0x7f0c0055\nint id shortcut 0x7f0c0040\nint id showCustom 0x7f0c0010\nint id showHome 0x7f0c0011\nint id showTitle 0x7f0c0012\nint id split_action_bar 0x7f0c0008\nint id src_atop 0x7f0c0016\nint id src_in 0x7f0c0017\nint id src_over 0x7f0c0018\nint id status_bar_latest_event_content 0x7f0c0059\nint id submit_area 0x7f0c0052\nint id tabMode 0x7f0c000c\nint id text 0x7f0c0061\nint id text2 0x7f0c005f\nint id textSpacerNoButtons 0x7f0c003a\nint id time 0x7f0c005d\nint id title 0x7f0c0033\nint id title_template 0x7f0c0036\nint id topPanel 0x7f0c0035\nint id up 0x7f0c0009\nint id useLogo 0x7f0c0013\nint id withText 0x7f0c0028\nint id wrap_content 0x7f0c0029\nint integer abc_config_activityDefaultDur 0x7f0a0001\nint integer abc_config_activityShortDur 0x7f0a0002\nint integer abc_max_action_buttons 0x7f0a0000\nint integer cancel_button_image_alpha 0x7f0a0003\nint integer status_bar_notification_info_maxnum 0x7f0a0004\nint layout abc_action_bar_title_item 0x7f030000\nint layout abc_action_bar_up_container 0x7f030001\nint layout abc_action_bar_view_list_nav_layout 0x7f030002\nint layout abc_action_menu_item_layout 0x7f030003\nint layout abc_action_menu_layout 0x7f030004\nint layout abc_action_mode_bar 0x7f030005\nint layout abc_action_mode_close_item_material 0x7f030006\nint layout abc_activity_chooser_view 0x7f030007\nint layout abc_activity_chooser_view_list_item 0x7f030008\nint layout abc_alert_dialog_material 0x7f030009\nint layout abc_dialog_title_material 0x7f03000a\nint layout abc_expanded_menu_layout 0x7f03000b\nint layout abc_list_menu_item_checkbox 0x7f03000c\nint layout abc_list_menu_item_icon 0x7f03000d\nint layout abc_list_menu_item_layout 0x7f03000e\nint layout abc_list_menu_item_radio 0x7f03000f\nint layout abc_popup_menu_item_layout 0x7f030010\nint layout abc_screen_content_include 0x7f030011\nint layout abc_screen_simple 0x7f030012\nint layout abc_screen_simple_overlay_action_mode 0x7f030013\nint layout abc_screen_toolbar 0x7f030014\nint layout abc_search_dropdown_item_icons_2line 0x7f030015\nint layout abc_search_view 0x7f030016\nint layout abc_select_dialog_material 0x7f030017\nint layout fps_view 0x7f030018\nint layout notification_media_action 0x7f030019\nint layout notification_media_cancel_action 0x7f03001a\nint layout notification_template_big_media 0x7f03001b\nint layout notification_template_big_media_narrow 0x7f03001c\nint layout notification_template_lines 0x7f03001d\nint layout notification_template_media 0x7f03001e\nint layout notification_template_part_chronometer 0x7f03001f\nint layout notification_template_part_time 0x7f030020\nint layout redbox_item_frame 0x7f030021\nint layout redbox_item_title 0x7f030022\nint layout redbox_view 0x7f030023\nint layout select_dialog_item_material 0x7f030024\nint layout select_dialog_multichoice_material 0x7f030025\nint layout select_dialog_singlechoice_material 0x7f030026\nint layout support_simple_spinner_dropdown_item 0x7f030027\nint string abc_action_bar_home_description 0x7f060000\nint string abc_action_bar_home_description_format 0x7f060001\nint string abc_action_bar_home_subtitle_description_format 0x7f060002\nint string abc_action_bar_up_description 0x7f060003\nint string abc_action_menu_overflow_description 0x7f060004\nint string abc_action_mode_done 0x7f060005\nint string abc_activity_chooser_view_see_all 0x7f060006\nint string abc_activitychooserview_choose_application 0x7f060007\nint string abc_search_hint 0x7f060008\nint string abc_searchview_description_clear 0x7f060009\nint string abc_searchview_description_query 0x7f06000a\nint string abc_searchview_description_search 0x7f06000b\nint string abc_searchview_description_submit 0x7f06000c\nint string abc_searchview_description_voice 0x7f06000d\nint string abc_shareactionprovider_share_with 0x7f06000e\nint string abc_shareactionprovider_share_with_application 0x7f06000f\nint string abc_toolbar_collapse_description 0x7f060010\nint string catalyst_debugjs 0x7f060012\nint string catalyst_debugjs_off 0x7f06001a\nint string catalyst_element_inspector 0x7f060013\nint string catalyst_element_inspector_off 0x7f06001b\nint string catalyst_hot_module_replacement 0x7f06001c\nint string catalyst_hot_module_replacement_off 0x7f06001d\nint string catalyst_jsload_error 0x7f060014\nint string catalyst_jsload_message 0x7f060015\nint string catalyst_jsload_title 0x7f060016\nint string catalyst_live_reload 0x7f06001e\nint string catalyst_live_reload_off 0x7f06001f\nint string catalyst_perf_monitor 0x7f060020\nint string catalyst_perf_monitor_off 0x7f060021\nint string catalyst_reloadjs 0x7f060017\nint string catalyst_remotedbg_error 0x7f060022\nint string catalyst_remotedbg_message 0x7f060023\nint string catalyst_settings 0x7f060018\nint string catalyst_settings_title 0x7f060019\nint string catalyst_start_profile 0x7f060024\nint string catalyst_stop_profile 0x7f060025\nint string status_bar_notification_info_overflow 0x7f060011\nint style AlertDialog_AppCompat 0x7f08007a\nint style AlertDialog_AppCompat_Light 0x7f08007b\nint style Animation_AppCompat_Dialog 0x7f08007c\nint style Animation_AppCompat_DropDownUp 0x7f08007d\nint style Animation_Catalyst_RedBox 0x7f08007e\nint style Base_AlertDialog_AppCompat 0x7f08007f\nint style Base_AlertDialog_AppCompat_Light 0x7f080080\nint style Base_Animation_AppCompat_Dialog 0x7f080081\nint style Base_Animation_AppCompat_DropDownUp 0x7f080082\nint style Base_DialogWindowTitle_AppCompat 0x7f080083\nint style Base_DialogWindowTitleBackground_AppCompat 0x7f080084\nint style Base_TextAppearance_AppCompat 0x7f08002d\nint style Base_TextAppearance_AppCompat_Body1 0x7f08002e\nint style Base_TextAppearance_AppCompat_Body2 0x7f08002f\nint style Base_TextAppearance_AppCompat_Button 0x7f080018\nint style Base_TextAppearance_AppCompat_Caption 0x7f080030\nint style Base_TextAppearance_AppCompat_Display1 0x7f080031\nint style Base_TextAppearance_AppCompat_Display2 0x7f080032\nint style Base_TextAppearance_AppCompat_Display3 0x7f080033\nint style Base_TextAppearance_AppCompat_Display4 0x7f080034\nint style Base_TextAppearance_AppCompat_Headline 0x7f080035\nint style Base_TextAppearance_AppCompat_Inverse 0x7f080003\nint style Base_TextAppearance_AppCompat_Large 0x7f080036\nint style Base_TextAppearance_AppCompat_Large_Inverse 0x7f080004\nint style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f080037\nint style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f080038\nint style Base_TextAppearance_AppCompat_Medium 0x7f080039\nint style Base_TextAppearance_AppCompat_Medium_Inverse 0x7f080005\nint style Base_TextAppearance_AppCompat_Menu 0x7f08003a\nint style Base_TextAppearance_AppCompat_SearchResult 0x7f080085\nint style Base_TextAppearance_AppCompat_SearchResult_Subtitle 0x7f08003b\nint style Base_TextAppearance_AppCompat_SearchResult_Title 0x7f08003c\nint style Base_TextAppearance_AppCompat_Small 0x7f08003d\nint style Base_TextAppearance_AppCompat_Small_Inverse 0x7f080006\nint style Base_TextAppearance_AppCompat_Subhead 0x7f08003e\nint style Base_TextAppearance_AppCompat_Subhead_Inverse 0x7f080007\nint style Base_TextAppearance_AppCompat_Title 0x7f08003f\nint style Base_TextAppearance_AppCompat_Title_Inverse 0x7f080008\nint style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f080040\nint style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f080041\nint style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f080042\nint style Base_TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f080043\nint style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f080044\nint style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f080045\nint style Base_TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f080046\nint style Base_TextAppearance_AppCompat_Widget_Button 0x7f080047\nint style Base_TextAppearance_AppCompat_Widget_Button_Inverse 0x7f080076\nint style Base_TextAppearance_AppCompat_Widget_DropDownItem 0x7f080086\nint style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f080048\nint style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f080049\nint style Base_TextAppearance_AppCompat_Widget_Switch 0x7f08004a\nint style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f08004b\nint style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f080087\nint style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f08004c\nint style Base_TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f08004d\nint style Base_Theme_AppCompat 0x7f08004e\nint style Base_Theme_AppCompat_CompactMenu 0x7f080088\nint style Base_Theme_AppCompat_Dialog 0x7f080009\nint style Base_Theme_AppCompat_Dialog_Alert 0x7f080089\nint style Base_Theme_AppCompat_Dialog_FixedSize 0x7f08008a\nint style Base_Theme_AppCompat_Dialog_MinWidth 0x7f08008b\nint style Base_Theme_AppCompat_DialogWhenLarge 0x7f080001\nint style Base_Theme_AppCompat_Light 0x7f08004f\nint style Base_Theme_AppCompat_Light_DarkActionBar 0x7f08008c\nint style Base_Theme_AppCompat_Light_Dialog 0x7f08000a\nint style Base_Theme_AppCompat_Light_Dialog_Alert 0x7f08008d\nint style Base_Theme_AppCompat_Light_Dialog_FixedSize 0x7f08008e\nint style Base_Theme_AppCompat_Light_Dialog_MinWidth 0x7f08008f\nint style Base_Theme_AppCompat_Light_DialogWhenLarge 0x7f080002\nint style Base_ThemeOverlay_AppCompat 0x7f080090\nint style Base_ThemeOverlay_AppCompat_ActionBar 0x7f080091\nint style Base_ThemeOverlay_AppCompat_Dark 0x7f080092\nint style Base_ThemeOverlay_AppCompat_Dark_ActionBar 0x7f080093\nint style Base_ThemeOverlay_AppCompat_Light 0x7f080094\nint style Base_V11_Theme_AppCompat_Dialog 0x7f08000b\nint style Base_V11_Theme_AppCompat_Light_Dialog 0x7f08000c\nint style Base_V12_Widget_AppCompat_AutoCompleteTextView 0x7f080014\nint style Base_V12_Widget_AppCompat_EditText 0x7f080015\nint style Base_V21_Theme_AppCompat 0x7f080050\nint style Base_V21_Theme_AppCompat_Dialog 0x7f080051\nint style Base_V21_Theme_AppCompat_Light 0x7f080052\nint style Base_V21_Theme_AppCompat_Light_Dialog 0x7f080053\nint style Base_V22_Theme_AppCompat 0x7f080074\nint style Base_V22_Theme_AppCompat_Light 0x7f080075\nint style Base_V23_Theme_AppCompat 0x7f080077\nint style Base_V23_Theme_AppCompat_Light 0x7f080078\nint style Base_V7_Theme_AppCompat 0x7f080095\nint style Base_V7_Theme_AppCompat_Dialog 0x7f080096\nint style Base_V7_Theme_AppCompat_Light 0x7f080097\nint style Base_V7_Theme_AppCompat_Light_Dialog 0x7f080098\nint style Base_V7_Widget_AppCompat_AutoCompleteTextView 0x7f080099\nint style Base_V7_Widget_AppCompat_EditText 0x7f08009a\nint style Base_Widget_AppCompat_ActionBar 0x7f08009b\nint style Base_Widget_AppCompat_ActionBar_Solid 0x7f08009c\nint style Base_Widget_AppCompat_ActionBar_TabBar 0x7f08009d\nint style Base_Widget_AppCompat_ActionBar_TabText 0x7f080054\nint style Base_Widget_AppCompat_ActionBar_TabView 0x7f080055\nint style Base_Widget_AppCompat_ActionButton 0x7f080056\nint style Base_Widget_AppCompat_ActionButton_CloseMode 0x7f080057\nint style Base_Widget_AppCompat_ActionButton_Overflow 0x7f080058\nint style Base_Widget_AppCompat_ActionMode 0x7f08009e\nint style Base_Widget_AppCompat_ActivityChooserView 0x7f08009f\nint style Base_Widget_AppCompat_AutoCompleteTextView 0x7f080016\nint style Base_Widget_AppCompat_Button 0x7f080059\nint style Base_Widget_AppCompat_Button_Borderless 0x7f08005a\nint style Base_Widget_AppCompat_Button_Borderless_Colored 0x7f08005b\nint style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f0800a0\nint style Base_Widget_AppCompat_Button_Colored 0x7f080079\nint style Base_Widget_AppCompat_Button_Small 0x7f08005c\nint style Base_Widget_AppCompat_ButtonBar 0x7f08005d\nint style Base_Widget_AppCompat_ButtonBar_AlertDialog 0x7f0800a1\nint style Base_Widget_AppCompat_CompoundButton_CheckBox 0x7f08005e\nint style Base_Widget_AppCompat_CompoundButton_RadioButton 0x7f08005f\nint style Base_Widget_AppCompat_CompoundButton_Switch 0x7f0800a2\nint style Base_Widget_AppCompat_DrawerArrowToggle 0x7f080000\nint style Base_Widget_AppCompat_DrawerArrowToggle_Common 0x7f0800a3\nint style Base_Widget_AppCompat_DropDownItem_Spinner 0x7f080060\nint style Base_Widget_AppCompat_EditText 0x7f080017\nint style Base_Widget_AppCompat_Light_ActionBar 0x7f0800a4\nint style Base_Widget_AppCompat_Light_ActionBar_Solid 0x7f0800a5\nint style Base_Widget_AppCompat_Light_ActionBar_TabBar 0x7f0800a6\nint style Base_Widget_AppCompat_Light_ActionBar_TabText 0x7f080061\nint style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f080062\nint style Base_Widget_AppCompat_Light_ActionBar_TabView 0x7f080063\nint style Base_Widget_AppCompat_Light_PopupMenu 0x7f080064\nint style Base_Widget_AppCompat_Light_PopupMenu_Overflow 0x7f080065\nint style Base_Widget_AppCompat_ListPopupWindow 0x7f080066\nint style Base_Widget_AppCompat_ListView 0x7f080067\nint style Base_Widget_AppCompat_ListView_DropDown 0x7f080068\nint style Base_Widget_AppCompat_ListView_Menu 0x7f080069\nint style Base_Widget_AppCompat_PopupMenu 0x7f08006a\nint style Base_Widget_AppCompat_PopupMenu_Overflow 0x7f08006b\nint style Base_Widget_AppCompat_PopupWindow 0x7f0800a7\nint style Base_Widget_AppCompat_ProgressBar 0x7f08000d\nint style Base_Widget_AppCompat_ProgressBar_Horizontal 0x7f08000e\nint style Base_Widget_AppCompat_RatingBar 0x7f08006c\nint style Base_Widget_AppCompat_SearchView 0x7f0800a8\nint style Base_Widget_AppCompat_SearchView_ActionBar 0x7f0800a9\nint style Base_Widget_AppCompat_Spinner 0x7f08006d\nint style Base_Widget_AppCompat_Spinner_Underlined 0x7f08006e\nint style Base_Widget_AppCompat_TextView_SpinnerItem 0x7f08006f\nint style Base_Widget_AppCompat_Toolbar 0x7f0800aa\nint style Base_Widget_AppCompat_Toolbar_Button_Navigation 0x7f080070\nint style DialogAnimation 0x7f0800ab\nint style Platform_AppCompat 0x7f08000f\nint style Platform_AppCompat_Light 0x7f080010\nint style Platform_ThemeOverlay_AppCompat 0x7f080071\nint style Platform_ThemeOverlay_AppCompat_Dark 0x7f080072\nint style Platform_ThemeOverlay_AppCompat_Light 0x7f080073\nint style Platform_V11_AppCompat 0x7f080011\nint style Platform_V11_AppCompat_Light 0x7f080012\nint style Platform_V14_AppCompat 0x7f080019\nint style Platform_V14_AppCompat_Light 0x7f08001a\nint style Platform_Widget_AppCompat_Spinner 0x7f080013\nint style RtlOverlay_DialogWindowTitle_AppCompat 0x7f080020\nint style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem 0x7f080021\nint style RtlOverlay_Widget_AppCompat_ActionButton_Overflow 0x7f080022\nint style RtlOverlay_Widget_AppCompat_DialogTitle_Icon 0x7f080023\nint style RtlOverlay_Widget_AppCompat_PopupMenuItem 0x7f080024\nint style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup 0x7f080025\nint style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text 0x7f080026\nint style RtlOverlay_Widget_AppCompat_Search_DropDown 0x7f080027\nint style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 0x7f080028\nint style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 0x7f080029\nint style RtlOverlay_Widget_AppCompat_Search_DropDown_Query 0x7f08002a\nint style RtlOverlay_Widget_AppCompat_Search_DropDown_Text 0x7f08002b\nint style RtlOverlay_Widget_AppCompat_SearchView_MagIcon 0x7f08002c\nint style TextAppearance_AppCompat 0x7f0800ac\nint style TextAppearance_AppCompat_Body1 0x7f0800ad\nint style TextAppearance_AppCompat_Body2 0x7f0800ae\nint style TextAppearance_AppCompat_Button 0x7f0800af\nint style TextAppearance_AppCompat_Caption 0x7f0800b0\nint style TextAppearance_AppCompat_Display1 0x7f0800b1\nint style TextAppearance_AppCompat_Display2 0x7f0800b2\nint style TextAppearance_AppCompat_Display3 0x7f0800b3\nint style TextAppearance_AppCompat_Display4 0x7f0800b4\nint style TextAppearance_AppCompat_Headline 0x7f0800b5\nint style TextAppearance_AppCompat_Inverse 0x7f0800b6\nint style TextAppearance_AppCompat_Large 0x7f0800b7\nint style TextAppearance_AppCompat_Large_Inverse 0x7f0800b8\nint style TextAppearance_AppCompat_Light_SearchResult_Subtitle 0x7f0800b9\nint style TextAppearance_AppCompat_Light_SearchResult_Title 0x7f0800ba\nint style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f0800bb\nint style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f0800bc\nint style TextAppearance_AppCompat_Medium 0x7f0800bd\nint style TextAppearance_AppCompat_Medium_Inverse 0x7f0800be\nint style TextAppearance_AppCompat_Menu 0x7f0800bf\nint style TextAppearance_AppCompat_SearchResult_Subtitle 0x7f0800c0\nint style TextAppearance_AppCompat_SearchResult_Title 0x7f0800c1\nint style TextAppearance_AppCompat_Small 0x7f0800c2\nint style TextAppearance_AppCompat_Small_Inverse 0x7f0800c3\nint style TextAppearance_AppCompat_Subhead 0x7f0800c4\nint style TextAppearance_AppCompat_Subhead_Inverse 0x7f0800c5\nint style TextAppearance_AppCompat_Title 0x7f0800c6\nint style TextAppearance_AppCompat_Title_Inverse 0x7f0800c7\nint style TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f0800c8\nint style TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f0800c9\nint style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f0800ca\nint style TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f0800cb\nint style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f0800cc\nint style TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f0800cd\nint style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse 0x7f0800ce\nint style TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f0800cf\nint style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse 0x7f0800d0\nint style TextAppearance_AppCompat_Widget_Button 0x7f0800d1\nint style TextAppearance_AppCompat_Widget_Button_Inverse 0x7f0800d2\nint style TextAppearance_AppCompat_Widget_DropDownItem 0x7f0800d3\nint style TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f0800d4\nint style TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f0800d5\nint style TextAppearance_AppCompat_Widget_Switch 0x7f0800d6\nint style TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f0800d7\nint style TextAppearance_StatusBar_EventContent 0x7f08001b\nint style TextAppearance_StatusBar_EventContent_Info 0x7f08001c\nint style TextAppearance_StatusBar_EventContent_Line2 0x7f08001d\nint style TextAppearance_StatusBar_EventContent_Time 0x7f08001e\nint style TextAppearance_StatusBar_EventContent_Title 0x7f08001f\nint style TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f0800d8\nint style TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f0800d9\nint style TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f0800da\nint style Theme 0x7f0800db\nint style Theme_AppCompat 0x7f0800dc\nint style Theme_AppCompat_CompactMenu 0x7f0800dd\nint style Theme_AppCompat_Dialog 0x7f0800de\nint style Theme_AppCompat_Dialog_Alert 0x7f0800df\nint style Theme_AppCompat_Dialog_MinWidth 0x7f0800e0\nint style Theme_AppCompat_DialogWhenLarge 0x7f0800e1\nint style Theme_AppCompat_Light 0x7f0800e2\nint style Theme_AppCompat_Light_DarkActionBar 0x7f0800e3\nint style Theme_AppCompat_Light_Dialog 0x7f0800e4\nint style Theme_AppCompat_Light_Dialog_Alert 0x7f0800e5\nint style Theme_AppCompat_Light_Dialog_MinWidth 0x7f0800e6\nint style Theme_AppCompat_Light_DialogWhenLarge 0x7f0800e7\nint style Theme_AppCompat_Light_NoActionBar 0x7f0800e8\nint style Theme_AppCompat_NoActionBar 0x7f0800e9\nint style Theme_Catalyst 0x7f0800ea\nint style Theme_Catalyst_RedBox 0x7f0800eb\nint style Theme_FullScreenDialog 0x7f0800ec\nint style Theme_FullScreenDialogAnimated 0x7f0800ed\nint style Theme_ReactNative_AppCompat_Light 0x7f0800ee\nint style Theme_ReactNative_AppCompat_Light_NoActionBar_FullScreen 0x7f0800ef\nint style ThemeOverlay_AppCompat 0x7f0800f0\nint style ThemeOverlay_AppCompat_ActionBar 0x7f0800f1\nint style ThemeOverlay_AppCompat_Dark 0x7f0800f2\nint style ThemeOverlay_AppCompat_Dark_ActionBar 0x7f0800f3\nint style ThemeOverlay_AppCompat_Light 0x7f0800f4\nint style Widget_AppCompat_ActionBar 0x7f0800f5\nint style Widget_AppCompat_ActionBar_Solid 0x7f0800f6\nint style Widget_AppCompat_ActionBar_TabBar 0x7f0800f7\nint style Widget_AppCompat_ActionBar_TabText 0x7f0800f8\nint style Widget_AppCompat_ActionBar_TabView 0x7f0800f9\nint style Widget_AppCompat_ActionButton 0x7f0800fa\nint style Widget_AppCompat_ActionButton_CloseMode 0x7f0800fb\nint style Widget_AppCompat_ActionButton_Overflow 0x7f0800fc\nint style Widget_AppCompat_ActionMode 0x7f0800fd\nint style Widget_AppCompat_ActivityChooserView 0x7f0800fe\nint style Widget_AppCompat_AutoCompleteTextView 0x7f0800ff\nint style Widget_AppCompat_Button 0x7f080100\nint style Widget_AppCompat_Button_Borderless 0x7f080101\nint style Widget_AppCompat_Button_Borderless_Colored 0x7f080102\nint style Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f080103\nint style Widget_AppCompat_Button_Colored 0x7f080104\nint style Widget_AppCompat_Button_Small 0x7f080105\nint style Widget_AppCompat_ButtonBar 0x7f080106\nint style Widget_AppCompat_ButtonBar_AlertDialog 0x7f080107\nint style Widget_AppCompat_CompoundButton_CheckBox 0x7f080108\nint style Widget_AppCompat_CompoundButton_RadioButton 0x7f080109\nint style Widget_AppCompat_CompoundButton_Switch 0x7f08010a\nint style Widget_AppCompat_DrawerArrowToggle 0x7f08010b\nint style Widget_AppCompat_DropDownItem_Spinner 0x7f08010c\nint style Widget_AppCompat_EditText 0x7f08010d\nint style Widget_AppCompat_Light_ActionBar 0x7f08010e\nint style Widget_AppCompat_Light_ActionBar_Solid 0x7f08010f\nint style Widget_AppCompat_Light_ActionBar_Solid_Inverse 0x7f080110\nint style Widget_AppCompat_Light_ActionBar_TabBar 0x7f080111\nint style Widget_AppCompat_Light_ActionBar_TabBar_Inverse 0x7f080112\nint style Widget_AppCompat_Light_ActionBar_TabText 0x7f080113\nint style Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f080114\nint style Widget_AppCompat_Light_ActionBar_TabView 0x7f080115\nint style Widget_AppCompat_Light_ActionBar_TabView_Inverse 0x7f080116\nint style Widget_AppCompat_Light_ActionButton 0x7f080117\nint style Widget_AppCompat_Light_ActionButton_CloseMode 0x7f080118\nint style Widget_AppCompat_Light_ActionButton_Overflow 0x7f080119\nint style Widget_AppCompat_Light_ActionMode_Inverse 0x7f08011a\nint style Widget_AppCompat_Light_ActivityChooserView 0x7f08011b\nint style Widget_AppCompat_Light_AutoCompleteTextView 0x7f08011c\nint style Widget_AppCompat_Light_DropDownItem_Spinner 0x7f08011d\nint style Widget_AppCompat_Light_ListPopupWindow 0x7f08011e\nint style Widget_AppCompat_Light_ListView_DropDown 0x7f08011f\nint style Widget_AppCompat_Light_PopupMenu 0x7f080120\nint style Widget_AppCompat_Light_PopupMenu_Overflow 0x7f080121\nint style Widget_AppCompat_Light_SearchView 0x7f080122\nint style Widget_AppCompat_Light_Spinner_DropDown_ActionBar 0x7f080123\nint style Widget_AppCompat_ListPopupWindow 0x7f080124\nint style Widget_AppCompat_ListView 0x7f080125\nint style Widget_AppCompat_ListView_DropDown 0x7f080126\nint style Widget_AppCompat_ListView_Menu 0x7f080127\nint style Widget_AppCompat_PopupMenu 0x7f080128\nint style Widget_AppCompat_PopupMenu_Overflow 0x7f080129\nint style Widget_AppCompat_PopupWindow 0x7f08012a\nint style Widget_AppCompat_ProgressBar 0x7f08012b\nint style Widget_AppCompat_ProgressBar_Horizontal 0x7f08012c\nint style Widget_AppCompat_RatingBar 0x7f08012d\nint style Widget_AppCompat_SearchView 0x7f08012e\nint style Widget_AppCompat_SearchView_ActionBar 0x7f08012f\nint style Widget_AppCompat_Spinner 0x7f080130\nint style Widget_AppCompat_Spinner_DropDown 0x7f080131\nint style Widget_AppCompat_Spinner_DropDown_ActionBar 0x7f080132\nint style Widget_AppCompat_Spinner_Underlined 0x7f080133\nint style Widget_AppCompat_TextView_SpinnerItem 0x7f080134\nint style Widget_AppCompat_Toolbar 0x7f080135\nint style Widget_AppCompat_Toolbar_Button_Navigation 0x7f080136\nint[] styleable ActionBar { 0x7f010001, 0x7f010003, 0x7f010004, 0x7f010005, 0x7f010006, 0x7f010007, 0x7f010008, 0x7f010009, 0x7f01000a, 0x7f01000b, 0x7f01000c, 0x7f01000d, 0x7f01000e, 0x7f01000f, 0x7f010010, 0x7f010011, 0x7f010012, 0x7f010013, 0x7f010014, 0x7f010015, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f010097 }\nint styleable ActionBar_background 10\nint styleable ActionBar_backgroundSplit 12\nint styleable ActionBar_backgroundStacked 11\nint styleable ActionBar_contentInsetEnd 21\nint styleable ActionBar_contentInsetLeft 22\nint styleable ActionBar_contentInsetRight 23\nint styleable ActionBar_contentInsetStart 20\nint styleable ActionBar_customNavigationLayout 13\nint styleable ActionBar_displayOptions 3\nint styleable ActionBar_divider 9\nint styleable ActionBar_elevation 24\nint styleable ActionBar_height 0\nint styleable ActionBar_hideOnContentScroll 19\nint styleable ActionBar_homeAsUpIndicator 26\nint styleable ActionBar_homeLayout 14\nint styleable ActionBar_icon 7\nint styleable ActionBar_indeterminateProgressStyle 16\nint styleable ActionBar_itemPadding 18\nint styleable ActionBar_logo 8\nint styleable ActionBar_navigationMode 2\nint styleable ActionBar_popupTheme 25\nint styleable ActionBar_progressBarPadding 17\nint styleable ActionBar_progressBarStyle 15\nint styleable ActionBar_subtitle 4\nint styleable ActionBar_subtitleTextStyle 6\nint styleable ActionBar_title 1\nint styleable ActionBar_titleTextStyle 5\nint[] styleable ActionBarLayout { 0x010100b3 }\nint styleable ActionBarLayout_android_layout_gravity 0\nint[] styleable ActionMenuItemView { 0x0101013f }\nint styleable ActionMenuItemView_android_minWidth 0\nint[] styleable ActionMenuView { }\nint[] styleable ActionMode { 0x7f010001, 0x7f010007, 0x7f010008, 0x7f01000c, 0x7f01000e, 0x7f01001c }\nint styleable ActionMode_background 3\nint styleable ActionMode_backgroundSplit 4\nint styleable ActionMode_closeItemLayout 5\nint styleable ActionMode_height 0\nint styleable ActionMode_subtitleTextStyle 2\nint styleable ActionMode_titleTextStyle 1\nint[] styleable ActivityChooserView { 0x7f01001d, 0x7f01001e }\nint styleable ActivityChooserView_expandActivityOverflowButtonDrawable 1\nint styleable ActivityChooserView_initialActivityCount 0\nint[] styleable AlertDialog { 0x010100f2, 0x7f01001f, 0x7f010020, 0x7f010021, 0x7f010022, 0x7f010023 }\nint styleable AlertDialog_android_layout 0\nint styleable AlertDialog_buttonPanelSideLayout 1\nint styleable AlertDialog_listItemLayout 5\nint styleable AlertDialog_listLayout 2\nint styleable AlertDialog_multiChoiceItemLayout 3\nint styleable AlertDialog_singleChoiceItemLayout 4\nint[] styleable AppCompatTextView { 0x01010034, 0x7f010024 }\nint styleable AppCompatTextView_android_textAppearance 0\nint styleable AppCompatTextView_textAllCaps 1\nint[] styleable CompoundButton { 0x01010107, 0x7f010025, 0x7f010026 }\nint styleable CompoundButton_android_button 0\nint styleable CompoundButton_buttonTint 1\nint styleable CompoundButton_buttonTintMode 2\nint[] styleable DrawerArrowToggle { 0x7f010027, 0x7f010028, 0x7f010029, 0x7f01002a, 0x7f01002b, 0x7f01002c, 0x7f01002d, 0x7f01002e }\nint styleable DrawerArrowToggle_arrowHeadLength 4\nint styleable DrawerArrowToggle_arrowShaftLength 5\nint styleable DrawerArrowToggle_barLength 6\nint styleable DrawerArrowToggle_color 0\nint styleable DrawerArrowToggle_drawableSize 2\nint styleable DrawerArrowToggle_gapBetweenBars 3\nint styleable DrawerArrowToggle_spinBars 1\nint styleable DrawerArrowToggle_thickness 7\nint[] styleable GenericDraweeView { 0x7f01002f, 0x7f010030, 0x7f010031, 0x7f010032, 0x7f010033, 0x7f010034, 0x7f010035, 0x7f010036, 0x7f010037, 0x7f010038, 0x7f010039, 0x7f01003a, 0x7f01003b, 0x7f01003c, 0x7f01003d, 0x7f01003e, 0x7f01003f, 0x7f010040, 0x7f010041, 0x7f010042, 0x7f010043, 0x7f010044, 0x7f010045, 0x7f010046 }\nint styleable GenericDraweeView_actualImageScaleType 11\nint styleable GenericDraweeView_backgroundImage 12\nint styleable GenericDraweeView_fadeDuration 0\nint styleable GenericDraweeView_failureImage 6\nint styleable GenericDraweeView_failureImageScaleType 7\nint styleable GenericDraweeView_overlayImage 13\nint styleable GenericDraweeView_placeholderImage 2\nint styleable GenericDraweeView_placeholderImageScaleType 3\nint styleable GenericDraweeView_pressedStateOverlayImage 14\nint styleable GenericDraweeView_progressBarAutoRotateInterval 10\nint styleable GenericDraweeView_progressBarImage 8\nint styleable GenericDraweeView_progressBarImageScaleType 9\nint styleable GenericDraweeView_retryImage 4\nint styleable GenericDraweeView_retryImageScaleType 5\nint styleable GenericDraweeView_roundAsCircle 15\nint styleable GenericDraweeView_roundBottomLeft 20\nint styleable GenericDraweeView_roundBottomRight 19\nint styleable GenericDraweeView_roundTopLeft 17\nint styleable GenericDraweeView_roundTopRight 18\nint styleable GenericDraweeView_roundWithOverlayColor 21\nint styleable GenericDraweeView_roundedCornerRadius 16\nint styleable GenericDraweeView_roundingBorderColor 23\nint styleable GenericDraweeView_roundingBorderWidth 22\nint styleable GenericDraweeView_viewAspectRatio 1\nint[] styleable LinearLayoutCompat { 0x010100af, 0x010100c4, 0x01010126, 0x01010127, 0x01010128, 0x7f01000b, 0x7f010047, 0x7f010048, 0x7f010049 }\nint styleable LinearLayoutCompat_android_baselineAligned 2\nint styleable LinearLayoutCompat_android_baselineAlignedChildIndex 3\nint styleable LinearLayoutCompat_android_gravity 0\nint styleable LinearLayoutCompat_android_orientation 1\nint styleable LinearLayoutCompat_android_weightSum 4\nint styleable LinearLayoutCompat_divider 5\nint styleable LinearLayoutCompat_dividerPadding 8\nint styleable LinearLayoutCompat_measureWithLargestChild 6\nint styleable LinearLayoutCompat_showDividers 7\nint[] styleable LinearLayoutCompat_Layout { 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 }\nint styleable LinearLayoutCompat_Layout_android_layout_gravity 0\nint styleable LinearLayoutCompat_Layout_android_layout_height 2\nint styleable LinearLayoutCompat_Layout_android_layout_weight 3\nint styleable LinearLayoutCompat_Layout_android_layout_width 1\nint[] styleable ListPopupWindow { 0x010102ac, 0x010102ad }\nint styleable ListPopupWindow_android_dropDownHorizontalOffset 0\nint styleable ListPopupWindow_android_dropDownVerticalOffset 1\nint[] styleable MenuGroup { 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, 0x010101df, 0x010101e0 }\nint styleable MenuGroup_android_checkableBehavior 5\nint styleable MenuGroup_android_enabled 0\nint styleable MenuGroup_android_id 1\nint styleable MenuGroup_android_menuCategory 3\nint styleable MenuGroup_android_orderInCategory 4\nint styleable MenuGroup_android_visible 2\nint[] styleable MenuItem { 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f01004a, 0x7f01004b, 0x7f01004c, 0x7f01004d }\nint styleable MenuItem_actionLayout 14\nint styleable MenuItem_actionProviderClass 16\nint styleable MenuItem_actionViewClass 15\nint styleable MenuItem_android_alphabeticShortcut 9\nint styleable MenuItem_android_checkable 11\nint styleable MenuItem_android_checked 3\nint styleable MenuItem_android_enabled 1\nint styleable MenuItem_android_icon 0\nint styleable MenuItem_android_id 2\nint styleable MenuItem_android_menuCategory 5\nint styleable MenuItem_android_numericShortcut 10\nint styleable MenuItem_android_onClick 12\nint styleable MenuItem_android_orderInCategory 6\nint styleable MenuItem_android_title 7\nint styleable MenuItem_android_titleCondensed 8\nint styleable MenuItem_android_visible 4\nint styleable MenuItem_showAsAction 13\nint[] styleable MenuView { 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x7f01004e }\nint styleable MenuView_android_headerBackground 4\nint styleable MenuView_android_horizontalDivider 2\nint styleable MenuView_android_itemBackground 5\nint styleable MenuView_android_itemIconDisabledAlpha 6\nint styleable MenuView_android_itemTextAppearance 1\nint styleable MenuView_android_verticalDivider 3\nint styleable MenuView_android_windowAnimationStyle 0\nint styleable MenuView_preserveIconSpacing 7\nint[] styleable PopupWindow { 0x01010176, 0x7f01004f }\nint styleable PopupWindow_android_popupBackground 0\nint styleable PopupWindow_overlapAnchor 1\nint[] styleable PopupWindowBackgroundState { 0x7f010050 }\nint styleable PopupWindowBackgroundState_state_above_anchor 0\nint[] styleable RecyclerView { 0x010100c4, 0x7f010051, 0x7f010052, 0x7f010053, 0x7f010054 }\nint styleable RecyclerView_android_orientation 0\nint styleable RecyclerView_layoutManager 1\nint styleable RecyclerView_reverseLayout 3\nint styleable RecyclerView_spanCount 2\nint styleable RecyclerView_stackFromEnd 4\nint[] styleable SearchView { 0x010100da, 0x0101011f, 0x01010220, 0x01010264, 0x7f010055, 0x7f010056, 0x7f010057, 0x7f010058, 0x7f010059, 0x7f01005a, 0x7f01005b, 0x7f01005c, 0x7f01005d, 0x7f01005e, 0x7f01005f, 0x7f010060, 0x7f010061 }\nint styleable SearchView_android_focusable 0\nint styleable SearchView_android_imeOptions 3\nint styleable SearchView_android_inputType 2\nint styleable SearchView_android_maxWidth 1\nint styleable SearchView_closeIcon 8\nint styleable SearchView_commitIcon 13\nint styleable SearchView_defaultQueryHint 7\nint styleable SearchView_goIcon 9\nint styleable SearchView_iconifiedByDefault 5\nint styleable SearchView_layout 4\nint styleable SearchView_queryBackground 15\nint styleable SearchView_queryHint 6\nint styleable SearchView_searchHintIcon 11\nint styleable SearchView_searchIcon 10\nint styleable SearchView_submitBackground 16\nint styleable SearchView_suggestionRowLayout 14\nint styleable SearchView_voiceIcon 12\nint[] styleable Spinner { 0x01010176, 0x0101017b, 0x01010262, 0x7f01001b }\nint styleable Spinner_android_dropDownWidth 2\nint styleable Spinner_android_popupBackground 0\nint styleable Spinner_android_prompt 1\nint styleable Spinner_popupTheme 3\nint[] styleable SwitchCompat { 0x01010124, 0x01010125, 0x01010142, 0x7f010062, 0x7f010063, 0x7f010064, 0x7f010065, 0x7f010066, 0x7f010067, 0x7f010068 }\nint styleable SwitchCompat_android_textOff 1\nint styleable SwitchCompat_android_textOn 0\nint styleable SwitchCompat_android_thumb 2\nint styleable SwitchCompat_showText 9\nint styleable SwitchCompat_splitTrack 8\nint styleable SwitchCompat_switchMinWidth 6\nint styleable SwitchCompat_switchPadding 7\nint styleable SwitchCompat_switchTextAppearance 5\nint styleable SwitchCompat_thumbTextPadding 4\nint styleable SwitchCompat_track 3\nint[] styleable TextAppearance { 0x01010095, 0x01010096, 0x01010097, 0x01010098, 0x7f010024 }\nint styleable TextAppearance_android_textColor 3\nint styleable TextAppearance_android_textSize 0\nint styleable TextAppearance_android_textStyle 2\nint styleable TextAppearance_android_typeface 1\nint styleable TextAppearance_textAllCaps 4\nint[] styleable Theme { 0x01010057, 0x010100ae, 0x7f010069, 0x7f01006a, 0x7f01006b, 0x7f01006c, 0x7f01006d, 0x7f01006e, 0x7f01006f, 0x7f010070, 0x7f010071, 0x7f010072, 0x7f010073, 0x7f010074, 0x7f010075, 0x7f010076, 0x7f010077, 0x7f010078, 0x7f010079, 0x7f01007a, 0x7f01007b, 0x7f01007c, 0x7f01007d, 0x7f01007e, 0x7f01007f, 0x7f010080, 0x7f010081, 0x7f010082, 0x7f010083, 0x7f010084, 0x7f010085, 0x7f010086, 0x7f010087, 0x7f010088, 0x7f010089, 0x7f01008a, 0x7f01008b, 0x7f01008c, 0x7f01008d, 0x7f01008e, 0x7f01008f, 0x7f010090, 0x7f010091, 0x7f010092, 0x7f010093, 0x7f010094, 0x7f010095, 0x7f010096, 0x7f010097, 0x7f010098, 0x7f010099, 0x7f01009a, 0x7f01009b, 0x7f01009c, 0x7f01009d, 0x7f01009e, 0x7f01009f, 0x7f0100a0, 0x7f0100a1, 0x7f0100a2, 0x7f0100a3, 0x7f0100a4, 0x7f0100a5, 0x7f0100a6, 0x7f0100a7, 0x7f0100a8, 0x7f0100a9, 0x7f0100aa, 0x7f0100ab, 0x7f0100ac, 0x7f0100ad, 0x7f0100ae, 0x7f0100af, 0x7f0100b0, 0x7f0100b1, 0x7f0100b2, 0x7f0100b3, 0x7f0100b4, 0x7f0100b5, 0x7f0100b6, 0x7f0100b7, 0x7f0100b8, 0x7f0100b9, 0x7f0100ba, 0x7f0100bb, 0x7f0100bc, 0x7f0100bd, 0x7f0100be, 0x7f0100bf, 0x7f0100c0, 0x7f0100c1, 0x7f0100c2, 0x7f0100c3, 0x7f0100c4, 0x7f0100c5, 0x7f0100c6, 0x7f0100c7, 0x7f0100c8, 0x7f0100c9, 0x7f0100ca, 0x7f0100cb, 0x7f0100cc, 0x7f0100cd, 0x7f0100ce, 0x7f0100cf, 0x7f0100d0, 0x7f0100d1, 0x7f0100d2 }\nint styleable Theme_actionBarDivider 23\nint styleable Theme_actionBarItemBackground 24\nint styleable Theme_actionBarPopupTheme 17\nint styleable Theme_actionBarSize 22\nint styleable Theme_actionBarSplitStyle 19\nint styleable Theme_actionBarStyle 18\nint styleable Theme_actionBarTabBarStyle 13\nint styleable Theme_actionBarTabStyle 12\nint styleable Theme_actionBarTabTextStyle 14\nint styleable Theme_actionBarTheme 20\nint styleable Theme_actionBarWidgetTheme 21\nint styleable Theme_actionButtonStyle 49\nint styleable Theme_actionDropDownStyle 45\nint styleable Theme_actionMenuTextAppearance 25\nint styleable Theme_actionMenuTextColor 26\nint styleable Theme_actionModeBackground 29\nint styleable Theme_actionModeCloseButtonStyle 28\nint styleable Theme_actionModeCloseDrawable 31\nint styleable Theme_actionModeCopyDrawable 33\nint styleable Theme_actionModeCutDrawable 32\nint styleable Theme_actionModeFindDrawable 37\nint styleable Theme_actionModePasteDrawable 34\nint styleable Theme_actionModePopupWindowStyle 39\nint styleable Theme_actionModeSelectAllDrawable 35\nint styleable Theme_actionModeShareDrawable 36\nint styleable Theme_actionModeSplitBackground 30\nint styleable Theme_actionModeStyle 27\nint styleable Theme_actionModeWebSearchDrawable 38\nint styleable Theme_actionOverflowButtonStyle 15\nint styleable Theme_actionOverflowMenuStyle 16\nint styleable Theme_activityChooserViewStyle 57\nint styleable Theme_alertDialogButtonGroupStyle 91\nint styleable Theme_alertDialogCenterButtons 92\nint styleable Theme_alertDialogStyle 90\nint styleable Theme_alertDialogTheme 93\nint styleable Theme_android_windowAnimationStyle 1\nint styleable Theme_android_windowIsFloating 0\nint styleable Theme_autoCompleteTextViewStyle 98\nint styleable Theme_borderlessButtonStyle 54\nint styleable Theme_buttonBarButtonStyle 51\nint styleable Theme_buttonBarNegativeButtonStyle 96\nint styleable Theme_buttonBarNeutralButtonStyle 97\nint styleable Theme_buttonBarPositiveButtonStyle 95\nint styleable Theme_buttonBarStyle 50\nint styleable Theme_buttonStyle 99\nint styleable Theme_buttonStyleSmall 100\nint styleable Theme_checkboxStyle 101\nint styleable Theme_checkedTextViewStyle 102\nint styleable Theme_colorAccent 83\nint styleable Theme_colorButtonNormal 87\nint styleable Theme_colorControlActivated 85\nint styleable Theme_colorControlHighlight 86\nint styleable Theme_colorControlNormal 84\nint styleable Theme_colorPrimary 81\nint styleable Theme_colorPrimaryDark 82\nint styleable Theme_colorSwitchThumbNormal 88\nint styleable Theme_controlBackground 89\nint styleable Theme_dialogPreferredPadding 43\nint styleable Theme_dialogTheme 42\nint styleable Theme_dividerHorizontal 56\nint styleable Theme_dividerVertical 55\nint styleable Theme_dropDownListViewStyle 73\nint styleable Theme_dropdownListPreferredItemHeight 46\nint styleable Theme_editTextBackground 63\nint styleable Theme_editTextColor 62\nint styleable Theme_editTextStyle 103\nint styleable Theme_homeAsUpIndicator 48\nint styleable Theme_listChoiceBackgroundIndicator 80\nint styleable Theme_listDividerAlertDialog 44\nint styleable Theme_listPopupWindowStyle 74\nint styleable Theme_listPreferredItemHeight 68\nint styleable Theme_listPreferredItemHeightLarge 70\nint styleable Theme_listPreferredItemHeightSmall 69\nint styleable Theme_listPreferredItemPaddingLeft 71\nint styleable Theme_listPreferredItemPaddingRight 72\nint styleable Theme_panelBackground 77\nint styleable Theme_panelMenuListTheme 79\nint styleable Theme_panelMenuListWidth 78\nint styleable Theme_popupMenuStyle 60\nint styleable Theme_popupWindowStyle 61\nint styleable Theme_radioButtonStyle 104\nint styleable Theme_ratingBarStyle 105\nint styleable Theme_searchViewStyle 67\nint styleable Theme_selectableItemBackground 52\nint styleable Theme_selectableItemBackgroundBorderless 53\nint styleable Theme_spinnerDropDownItemStyle 47\nint styleable Theme_spinnerStyle 106\nint styleable Theme_switchStyle 107\nint styleable Theme_textAppearanceLargePopupMenu 40\nint styleable Theme_textAppearanceListItem 75\nint styleable Theme_textAppearanceListItemSmall 76\nint styleable Theme_textAppearanceSearchResultSubtitle 65\nint styleable Theme_textAppearanceSearchResultTitle 64\nint styleable Theme_textAppearanceSmallPopupMenu 41\nint styleable Theme_textColorAlertDialogListItem 94\nint styleable Theme_textColorSearchUrl 66\nint styleable Theme_toolbarNavigationButtonStyle 59\nint styleable Theme_toolbarStyle 58\nint styleable Theme_windowActionBar 2\nint styleable Theme_windowActionBarOverlay 4\nint styleable Theme_windowActionModeOverlay 5\nint styleable Theme_windowFixedHeightMajor 9\nint styleable Theme_windowFixedHeightMinor 7\nint styleable Theme_windowFixedWidthMajor 6\nint styleable Theme_windowFixedWidthMinor 8\nint styleable Theme_windowMinWidthMajor 10\nint styleable Theme_windowMinWidthMinor 11\nint styleable Theme_windowNoTitle 3\nint[] styleable Toolbar { 0x010100af, 0x01010140, 0x7f010003, 0x7f010006, 0x7f01000a, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001b, 0x7f0100d3, 0x7f0100d4, 0x7f0100d5, 0x7f0100d6, 0x7f0100d7, 0x7f0100d8, 0x7f0100d9, 0x7f0100da, 0x7f0100db, 0x7f0100dc, 0x7f0100dd, 0x7f0100de, 0x7f0100df, 0x7f0100e0, 0x7f0100e1 }\nint styleable Toolbar_android_gravity 0\nint styleable Toolbar_android_minHeight 1\nint styleable Toolbar_collapseContentDescription 19\nint styleable Toolbar_collapseIcon 18\nint styleable Toolbar_contentInsetEnd 6\nint styleable Toolbar_contentInsetLeft 7\nint styleable Toolbar_contentInsetRight 8\nint styleable Toolbar_contentInsetStart 5\nint styleable Toolbar_logo 4\nint styleable Toolbar_logoDescription 22\nint styleable Toolbar_maxButtonHeight 17\nint styleable Toolbar_navigationContentDescription 21\nint styleable Toolbar_navigationIcon 20\nint styleable Toolbar_popupTheme 9\nint styleable Toolbar_subtitle 3\nint styleable Toolbar_subtitleTextAppearance 11\nint styleable Toolbar_subtitleTextColor 24\nint styleable Toolbar_title 2\nint styleable Toolbar_titleMarginBottom 16\nint styleable Toolbar_titleMarginEnd 14\nint styleable Toolbar_titleMarginStart 13\nint styleable Toolbar_titleMarginTop 15\nint styleable Toolbar_titleMargins 12\nint styleable Toolbar_titleTextAppearance 10\nint styleable Toolbar_titleTextColor 23\nint[] styleable View { 0x01010000, 0x010100da, 0x7f0100e2, 0x7f0100e3, 0x7f0100e4 }\nint styleable View_android_focusable 1\nint styleable View_android_theme 0\nint styleable View_paddingEnd 3\nint styleable View_paddingStart 2\nint styleable View_theme 4\nint[] styleable ViewBackgroundHelper { 0x010100d4, 0x7f0100e5, 0x7f0100e6 }\nint styleable ViewBackgroundHelper_android_background 0\nint styleable ViewBackgroundHelper_backgroundTint 1\nint styleable ViewBackgroundHelper_backgroundTintMode 2\nint[] styleable ViewStubCompat { 0x010100d0, 0x010100f2, 0x010100f3 }\nint styleable ViewStubCompat_android_id 0\nint styleable ViewStubCompat_android_inflatedId 2\nint styleable ViewStubCompat_android_layout 1\nint xml preferences 0x7f050000\n"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/aapt/AndroidManifest.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    package=\"com.facebook.react\"\n    android:versionCode=\"1\"\n    android:versionName=\"1.0\" >\n\n    <uses-sdk\n        android:minSdkVersion=\"16\"\n        android:targetSdkVersion=\"22\" />\n\n    <uses-permission android:name=\"android.permission.SYSTEM_ALERT_WINDOW\" />\n\n    <application />\n\n</manifest>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/anim/catalyst_push_up_in.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<set xmlns:android=\"http://schemas.android.com/apk/res/android\">\n     <translate\n          android:fromYDelta=\"100%p\"\n          android:toYDelta=\"0\"\n          android:duration=\"@android:integer/config_shortAnimTime\"\n          />\n     <alpha\n          android:fromAlpha=\"0.0\"\n          android:toAlpha=\"1.0\"\n          android:duration=\"@android:integer/config_shortAnimTime\"\n          />\n</set>\n"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/anim/catalyst_push_up_out.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<set xmlns:android=\"http://schemas.android.com/apk/res/android\">\n     <translate\n          android:fromYDelta=\"0\"\n          android:toYDelta=\"-100%p\"\n          android:duration=\"@android:integer/config_shortAnimTime\"\n          />\n     <alpha\n          android:fromAlpha=\"1.0\"\n          android:toAlpha=\"0.0\"\n          android:duration=\"@android:integer/config_shortAnimTime\"\n          />\n</set>\n"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/anim/slide_down.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<translate xmlns:android=\"http://schemas.android.com/apk/res/android\"\n           android:duration=\"@android:integer/config_shortAnimTime\"\n           android:fromYDelta=\"0%p\"\n           android:toYDelta=\"100%p\"\n    />\n"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/anim/slide_up.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<translate xmlns:android=\"http://schemas.android.com/apk/res/android\"\n           android:duration=\"@android:integer/config_shortAnimTime\"\n           android:fromYDelta=\"100%p\"\n           android:toYDelta=\"0%p\"\n    />\n"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/layout/fps_view.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n\n<merge\n    xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    >\n  <TextView\n      android:id=\"@+id/fps_text\"\n      android:layout_width=\"wrap_content\"\n      android:layout_height=\"wrap_content\"\n      android:layout_margin=\"3dp\"\n      android:background=\"#a4141823\"\n      android:gravity=\"right\"\n      android:layout_gravity=\"top|right\"\n      android:padding=\"3dp\"\n      android:textColor=\"@android:color/white\"\n      android:textSize=\"11sp\"\n      />\n</merge>\n"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/layout/redbox_item_frame.xml",
    "content": "<LinearLayout xmlns:android=\"http://schemas.android.com/apk/res/android\"\n  android:layout_width=\"match_parent\"\n  android:layout_height=\"match_parent\"\n  android:orientation=\"vertical\"\n  android:paddingTop=\"8dp\"\n  android:paddingBottom=\"8dp\"\n  android:paddingLeft=\"16dp\"\n  android:paddingRight=\"16dp\"\n    >\n  <TextView\n    android:id=\"@+id/rn_frame_method\"\n    android:layout_width=\"match_parent\"\n    android:layout_height=\"wrap_content\"\n    android:textColor=\"@android:color/white\"\n    android:textSize=\"14sp\"\n    android:fontFamily=\"monospace\"\n    />\n  <TextView\n    android:id=\"@+id/rn_frame_file\"\n    android:layout_width=\"match_parent\"\n    android:layout_height=\"wrap_content\"\n    android:textColor=\"#E6B8B8\"\n    android:textSize=\"12sp\"\n    android:fontFamily=\"monospace\"\n    />\n</LinearLayout>\n"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/layout/redbox_item_title.xml",
    "content": "<TextView xmlns:android=\"http://schemas.android.com/apk/res/android\"\n  android:id=\"@+id/catalyst_redbox_title\"\n  android:layout_width=\"match_parent\"\n  android:layout_height=\"wrap_content\"\n  android:padding=\"16dp\"\n  android:gravity=\"center_vertical\"\n  android:textColor=\"@android:color/white\"\n  android:textSize=\"16sp\"\n  android:textStyle=\"bold\"\n  />\n"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/layout/redbox_view.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<LinearLayout xmlns:android=\"http://schemas.android.com/apk/res/android\"\n  android:layout_width=\"match_parent\"\n  android:layout_height=\"match_parent\"\n  android:orientation=\"vertical\"\n  android:background=\"#E80000\"\n  >\n  <ListView\n    android:id=\"@+id/rn_redbox_stack\"\n    android:layout_width=\"match_parent\"\n    android:layout_height=\"0dp\"\n    android:layout_weight=\"1\"\n    />\n  <Button\n    android:id=\"@+id/rn_redbox_reloadjs\"\n    android:layout_width=\"match_parent\"\n    android:layout_height=\"wrap_content\"\n    android:layout_margin=\"8dp\"\n    android:text=\"@string/catalyst_reloadjs\"\n    />\n</LinearLayout>\n"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/values/values.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <color name=\"catalyst_redbox_background\">#eecc0000</color>\n    <string name=\"catalyst_debugjs\" project=\"catalyst\" translatable=\"false\">Debug in Chrome</string>\n    <string name=\"catalyst_debugjs_off\" project=\"catalyst\" translatable=\"false\">Stop Chrome Debugging</string>\n    <string name=\"catalyst_element_inspector\" project=\"catalyst\" translatable=\"false\">Show Inspector</string>\n    <string name=\"catalyst_element_inspector_off\" project=\"catalyst\" translatable=\"false\">Hide Inspector</string>\n    <string name=\"catalyst_hot_module_replacement\" project=\"catalyst\" translatable=\"false\">Enable Hot Reloading</string>\n    <string name=\"catalyst_hot_module_replacement_off\" project=\"catalyst\" translatable=\"false\">Disable Hot Reloading</string>\n    <string name=\"catalyst_jsload_error\" project=\"catalyst\" translatable=\"false\">Unable to download JS bundle. Did you forget to start the development server or connect your device?</string>\n    <string name=\"catalyst_jsload_message\" project=\"catalyst\" translatable=\"false\">Fetching JS bundle</string>\n    <string name=\"catalyst_jsload_title\" project=\"catalyst\" translatable=\"false\">Please wait…</string>\n    <string name=\"catalyst_live_reload\" project=\"catalyst\" translatable=\"false\">Enable Live Reload</string>\n    <string name=\"catalyst_live_reload_off\" project=\"catalyst\" translatable=\"false\">Disable Live Reload</string>\n    <string name=\"catalyst_perf_monitor\" project=\"catalyst\" translatable=\"false\">Enable Perf Monitor</string>\n    <string name=\"catalyst_perf_monitor_off\" project=\"catalyst\" translatable=\"false\">Disable Perf Monitor</string>\n    <string name=\"catalyst_reloadjs\" project=\"catalyst\" translatable=\"false\">Reload JS</string>\n    <string name=\"catalyst_remotedbg_error\" project=\"catalyst\" translatable=\"false\">Unable to connect with remote debugger</string>\n    <string name=\"catalyst_remotedbg_message\" project=\"catalyst\" translatable=\"false\">Connecting to remote debugger</string>\n    <string name=\"catalyst_settings\" project=\"catalyst\" translatable=\"false\">Dev Settings</string>\n    <string name=\"catalyst_settings_title\" project=\"catalyst\" translatable=\"false\">Catalyst Dev Settings</string>\n    <string name=\"catalyst_start_profile\" project=\"catalyst\" translatable=\"false\">Start Profile</string>\n    <string name=\"catalyst_stop_profile\" project=\"catalyst\" translatable=\"false\">Stop Profile</string>\n    <style name=\"Animation.Catalyst.RedBox\" parent=\"@android:style/Animation\">\n    <item name=\"android:windowEnterAnimation\">@anim/catalyst_push_up_in</item>\n    <item name=\"android:windowExitAnimation\">@anim/catalyst_push_up_out</item>\n  </style>\n    <style name=\"DialogAnimation\">\n    <item name=\"android:windowEnterAnimation\">@anim/slide_up</item>\n    <item name=\"android:windowExitAnimation\">@anim/slide_down</item>\n  </style>\n    <style name=\"Theme\"/>\n    <style name=\"Theme.Catalyst\"/>\n    <style name=\"Theme.Catalyst.RedBox\" parent=\"@style/Theme.AppCompat.DialogWhenLarge\">\n    <item name=\"android:windowBackground\">@color/catalyst_redbox_background</item>\n    <item name=\"android:windowAnimationStyle\">@style/Animation.Catalyst.RedBox</item>\n    <item name=\"android:inAnimation\">@android:anim/fade_in</item>\n    <item name=\"android:outAnimation\">@android:anim/fade_out</item>\n    <item name=\"android:textColor\">@android:color/white</item>\n  </style>\n    <style name=\"Theme.FullScreenDialog\">\n    <item name=\"android:windowNoTitle\">true</item>\n    <item name=\"android:windowIsFloating\">false</item>\n    <item name=\"android:windowBackground\">@android:color/transparent</item>\n  </style>\n    <style name=\"Theme.FullScreenDialogAnimated\" parent=\"Theme.FullScreenDialog\">\n    <item name=\"android:windowAnimationStyle\">@style/DialogAnimation</item>\n  </style>\n    <style name=\"Theme.ReactNative.AppCompat.Light\" parent=\"@style/Theme.AppCompat.Light.NoActionBar\">\n        <item name=\"android:textColor\">@android:color/black</item>\n    </style>\n    <style name=\"Theme.ReactNative.AppCompat.Light.NoActionBar.FullScreen\" parent=\"@style/Theme.ReactNative.AppCompat.Light\">\n        <item name=\"android:windowNoTitle\">true</item>\n        <item name=\"windowActionBar\">false</item>\n        <item name=\"android:windowFullscreen\">true</item>\n        <item name=\"android:windowContentOverlay\">@null</item>\n    </style>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/values-cs/values-cs.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <string name=\"catalyst_debugjs\">Debug JS</string>\n    <string name=\"catalyst_element_inspector\">Prozkoumat prvek</string>\n    <string name=\"catalyst_jsload_error\">Unable to download JS bundle</string>\n    <string name=\"catalyst_jsload_message\">Fetching JS bundle</string>\n    <string name=\"catalyst_jsload_title\">Čekejte prosím...</string>\n    <string name=\"catalyst_reloadjs\">Reload JS</string>\n    <string name=\"catalyst_settings\">Dev Settings</string>\n    <string name=\"catalyst_settings_title\">Catalyst Dev Settings</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/values-da/values-da.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <string name=\"catalyst_debugjs\">Debug JS</string>\n    <string name=\"catalyst_element_inspector\">Inspicer element</string>\n    <string name=\"catalyst_jsload_error\">Unable to download JS bundle</string>\n    <string name=\"catalyst_jsload_message\">Fetching JS bundle</string>\n    <string name=\"catalyst_jsload_title\">Vent venligst...</string>\n    <string name=\"catalyst_reloadjs\">Reload JS</string>\n    <string name=\"catalyst_settings\">Dev Settings</string>\n    <string name=\"catalyst_settings_title\">Catalyst Dev Settings</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/values-de/values-de.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <string name=\"catalyst_debugjs\">Debug JS</string>\n    <string name=\"catalyst_element_inspector\">Element untersuchen</string>\n    <string name=\"catalyst_jsload_error\">Unable to download JS bundle</string>\n    <string name=\"catalyst_jsload_message\">Fetching JS bundle</string>\n    <string name=\"catalyst_jsload_title\">Bitte warten Sie ...</string>\n    <string name=\"catalyst_reloadjs\">Reload JS</string>\n    <string name=\"catalyst_settings\">Dev Settings</string>\n    <string name=\"catalyst_settings_title\">Catalyst Dev Settings</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/values-el/values-el.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <string name=\"catalyst_debugjs\">Debug JS</string>\n    <string name=\"catalyst_element_inspector\">Εξέταση στοιχείου</string>\n    <string name=\"catalyst_jsload_error\">Unable to download JS bundle</string>\n    <string name=\"catalyst_jsload_message\">Fetching JS bundle</string>\n    <string name=\"catalyst_jsload_title\">Περιμένετε...</string>\n    <string name=\"catalyst_reloadjs\">Reload JS</string>\n    <string name=\"catalyst_settings\">Dev Settings</string>\n    <string name=\"catalyst_settings_title\">Catalyst Dev Settings</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/values-en-rGB/values-en-rGB.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <string name=\"catalyst_debugjs\">Debug JS</string>\n    <string name=\"catalyst_element_inspector\">Show Inspector</string>\n    <string name=\"catalyst_jsload_error\">Unable to download JS bundle</string>\n    <string name=\"catalyst_jsload_message\">Fetching JS bundle</string>\n    <string name=\"catalyst_jsload_title\">Please wait...</string>\n    <string name=\"catalyst_reloadjs\">Reload JS</string>\n    <string name=\"catalyst_settings\">Dev Settings</string>\n    <string name=\"catalyst_settings_title\">Catalyst Dev Settings</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/values-es/values-es.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <string name=\"catalyst_debugjs\">Debug JS</string>\n    <string name=\"catalyst_element_inspector\">Inspeccionar elemento</string>\n    <string name=\"catalyst_jsload_error\">Unable to download JS bundle</string>\n    <string name=\"catalyst_jsload_message\">Fetching JS bundle</string>\n    <string name=\"catalyst_jsload_title\">Espera...</string>\n    <string name=\"catalyst_reloadjs\">Reload JS</string>\n    <string name=\"catalyst_settings\">Dev Settings</string>\n    <string name=\"catalyst_settings_title\">Catalyst Dev Settings</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/values-es-rES/values-es-rES.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <string name=\"catalyst_debugjs\">Debug JS</string>\n    <string name=\"catalyst_element_inspector\">Inspeccionar elemento</string>\n    <string name=\"catalyst_jsload_error\">Unable to download JS bundle</string>\n    <string name=\"catalyst_jsload_message\">Fetching JS bundle</string>\n    <string name=\"catalyst_jsload_title\">Espera...</string>\n    <string name=\"catalyst_reloadjs\">Reload JS</string>\n    <string name=\"catalyst_settings\">Dev Settings</string>\n    <string name=\"catalyst_settings_title\">Catalyst Dev Settings</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/values-fb/values-fb.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <string name=\"catalyst_debugjs\">[Debug JS#2010fa256bd28603b686da2713bb843a:1]</string>\n    <string name=\"catalyst_element_inspector\">[Show Inspector#c1b106c92869437ebd88f326d632b973:1]</string>\n    <string name=\"catalyst_jsload_error\">[Unable to download JS bundle#51057ecd2555f91873cce4c452e1ea03:1]</string>\n    <string name=\"catalyst_jsload_message\">[Fetching JS bundle#0de4127d4fc6e7d1e265e07433f26e25:1]</string>\n    <string name=\"catalyst_jsload_title\">[Please wait...#71bad104a80f916d3bfb1ffa23a487af:1]</string>\n    <string name=\"catalyst_reloadjs\">[Reload JS#cd6b54f9f3c2e4ae7de6fdaf163ef79b:1]</string>\n    <string name=\"catalyst_settings\">[Dev Settings#6b65fc308a2da07fa01ad6fcbaa57002:1]</string>\n    <string name=\"catalyst_settings_title\">[Catalyst Dev Settings#bf44a606175d084d4c8d283938dd041d:1]</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/values-fb-rLL/values-fb-rLL.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <string name=\"catalyst_debugjs\">Debug JS</string>\n    <string name=\"catalyst_element_inspector\">(तत्व निरीक्षण गर्नुहोस्)</string>\n    <string name=\"catalyst_jsload_error\">Unable to download JS bundle</string>\n    <string name=\"catalyst_jsload_message\">Fetching JS bundle</string>\n    <string name=\"catalyst_jsload_title\">(অনুগ্রহ করে অপেক্ষা করুন….)</string>\n    <string name=\"catalyst_reloadjs\">Reload JS</string>\n    <string name=\"catalyst_settings\">Dev Settings</string>\n    <string name=\"catalyst_settings_title\">Catalyst Dev Settings</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/values-fi/values-fi.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <string name=\"catalyst_debugjs\">Debug JS</string>\n    <string name=\"catalyst_element_inspector\">Tarkista elementti</string>\n    <string name=\"catalyst_jsload_error\">Unable to download JS bundle</string>\n    <string name=\"catalyst_jsload_message\">Fetching JS bundle</string>\n    <string name=\"catalyst_jsload_title\">Odota…</string>\n    <string name=\"catalyst_reloadjs\">Reload JS</string>\n    <string name=\"catalyst_settings\">Dev Settings</string>\n    <string name=\"catalyst_settings_title\">Catalyst Dev Settings</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/values-fr/values-fr.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <string name=\"catalyst_debugjs\">Debug JS</string>\n    <string name=\"catalyst_element_inspector\">Inspecter l’élément</string>\n    <string name=\"catalyst_jsload_error\">Unable to download JS bundle</string>\n    <string name=\"catalyst_jsload_message\">Fetching JS bundle</string>\n    <string name=\"catalyst_jsload_title\">Veuillez patienter...</string>\n    <string name=\"catalyst_reloadjs\">Reload JS</string>\n    <string name=\"catalyst_settings\">Dev Settings</string>\n    <string name=\"catalyst_settings_title\">Catalyst Dev Settings</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/values-hu/values-hu.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <string name=\"catalyst_debugjs\">Debug JS</string>\n    <string name=\"catalyst_element_inspector\">Elem megtekintése</string>\n    <string name=\"catalyst_jsload_error\">Unable to download JS bundle</string>\n    <string name=\"catalyst_jsload_message\">Fetching JS bundle</string>\n    <string name=\"catalyst_jsload_title\">Kérjük, várj...</string>\n    <string name=\"catalyst_reloadjs\">Reload JS</string>\n    <string name=\"catalyst_settings\">Dev Settings</string>\n    <string name=\"catalyst_settings_title\">Catalyst Dev Settings</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/values-in/values-in.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <string name=\"catalyst_debugjs\">Debug JS</string>\n    <string name=\"catalyst_element_inspector\">Periksa Elemen</string>\n    <string name=\"catalyst_jsload_error\">Unable to download JS bundle</string>\n    <string name=\"catalyst_jsload_message\">Fetching JS bundle</string>\n    <string name=\"catalyst_jsload_title\">Harap tunggu...</string>\n    <string name=\"catalyst_reloadjs\">Reload JS</string>\n    <string name=\"catalyst_settings\">Dev Settings</string>\n    <string name=\"catalyst_settings_title\">Catalyst Dev Settings</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/values-it/values-it.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <string name=\"catalyst_debugjs\">Debug JS</string>\n    <string name=\"catalyst_element_inspector\">Esamina elemento</string>\n    <string name=\"catalyst_jsload_error\">Unable to download JS bundle</string>\n    <string name=\"catalyst_jsload_message\">Fetching JS bundle</string>\n    <string name=\"catalyst_jsload_title\">Attendi...</string>\n    <string name=\"catalyst_reloadjs\">Reload JS</string>\n    <string name=\"catalyst_settings\">Dev Settings</string>\n    <string name=\"catalyst_settings_title\">Catalyst Dev Settings</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/values-ja/values-ja.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <string name=\"catalyst_debugjs\">Debug JS</string>\n    <string name=\"catalyst_element_inspector\">要素を確認</string>\n    <string name=\"catalyst_jsload_error\">Unable to download JS bundle</string>\n    <string name=\"catalyst_jsload_message\">Fetching JS bundle</string>\n    <string name=\"catalyst_jsload_title\">しばらくお待ちください</string>\n    <string name=\"catalyst_reloadjs\">Reload JS</string>\n    <string name=\"catalyst_settings\">Dev Settings</string>\n    <string name=\"catalyst_settings_title\">Catalyst Dev Settings</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/values-ko/values-ko.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <string name=\"catalyst_debugjs\">Debug JS</string>\n    <string name=\"catalyst_element_inspector\">요소 검사</string>\n    <string name=\"catalyst_jsload_error\">Unable to download JS bundle</string>\n    <string name=\"catalyst_jsload_message\">Fetching JS bundle</string>\n    <string name=\"catalyst_jsload_title\">기다려주세요...</string>\n    <string name=\"catalyst_reloadjs\">Reload JS</string>\n    <string name=\"catalyst_settings\">Dev Settings</string>\n    <string name=\"catalyst_settings_title\">Catalyst Dev Settings</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/values-nb/values-nb.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <string name=\"catalyst_debugjs\">Debug JS</string>\n    <string name=\"catalyst_element_inspector\">Inspiser element</string>\n    <string name=\"catalyst_jsload_error\">Unable to download JS bundle</string>\n    <string name=\"catalyst_jsload_message\">Fetching JS bundle</string>\n    <string name=\"catalyst_jsload_title\">Vent litt ...</string>\n    <string name=\"catalyst_reloadjs\">Reload JS</string>\n    <string name=\"catalyst_settings\">Dev Settings</string>\n    <string name=\"catalyst_settings_title\">Catalyst Dev Settings</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/values-nl/values-nl.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <string name=\"catalyst_debugjs\">Debug JS</string>\n    <string name=\"catalyst_element_inspector\">Element inspecteren</string>\n    <string name=\"catalyst_jsload_error\">Unable to download JS bundle</string>\n    <string name=\"catalyst_jsload_message\">Fetching JS bundle</string>\n    <string name=\"catalyst_jsload_title\">Even geduld...</string>\n    <string name=\"catalyst_reloadjs\">Reload JS</string>\n    <string name=\"catalyst_settings\">Dev Settings</string>\n    <string name=\"catalyst_settings_title\">Catalyst Dev Settings</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/values-pl/values-pl.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <string name=\"catalyst_debugjs\">Debug JS</string>\n    <string name=\"catalyst_element_inspector\">Zbadaj element</string>\n    <string name=\"catalyst_jsload_error\">Unable to download JS bundle</string>\n    <string name=\"catalyst_jsload_message\">Fetching JS bundle</string>\n    <string name=\"catalyst_jsload_title\">Zaczekaj...</string>\n    <string name=\"catalyst_reloadjs\">Reload JS</string>\n    <string name=\"catalyst_settings\">Dev Settings</string>\n    <string name=\"catalyst_settings_title\">Catalyst Dev Settings</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/values-pt/values-pt.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <string name=\"catalyst_debugjs\">Debug JS</string>\n    <string name=\"catalyst_element_inspector\">Show Inspector</string>\n    <string name=\"catalyst_jsload_error\">Unable to download JS bundle</string>\n    <string name=\"catalyst_jsload_message\">Fetching JS bundle</string>\n    <string name=\"catalyst_jsload_title\">Aguarde...</string>\n    <string name=\"catalyst_reloadjs\">Reload JS</string>\n    <string name=\"catalyst_settings\">Dev Settings</string>\n    <string name=\"catalyst_settings_title\">Catalyst Dev Settings</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/values-pt-rPT/values-pt-rPT.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <string name=\"catalyst_debugjs\">Debug JS</string>\n    <string name=\"catalyst_element_inspector\">Show Inspector</string>\n    <string name=\"catalyst_jsload_error\">Unable to download JS bundle</string>\n    <string name=\"catalyst_jsload_message\">Fetching JS bundle</string>\n    <string name=\"catalyst_jsload_title\">Aguarda...</string>\n    <string name=\"catalyst_reloadjs\">Reload JS</string>\n    <string name=\"catalyst_settings\">Dev Settings</string>\n    <string name=\"catalyst_settings_title\">Catalyst Dev Settings</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/values-ro/values-ro.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <string name=\"catalyst_debugjs\">Debug JS</string>\n    <string name=\"catalyst_element_inspector\">Show Inspector</string>\n    <string name=\"catalyst_jsload_error\">Unable to download JS bundle</string>\n    <string name=\"catalyst_jsload_message\">Fetching JS bundle</string>\n    <string name=\"catalyst_jsload_title\">Please wait...</string>\n    <string name=\"catalyst_reloadjs\">Reload JS</string>\n    <string name=\"catalyst_settings\">Dev Settings</string>\n    <string name=\"catalyst_settings_title\">Catalyst Dev Settings</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/values-ru/values-ru.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <string name=\"catalyst_debugjs\">Debug JS</string>\n    <string name=\"catalyst_element_inspector\">Проверить элемент</string>\n    <string name=\"catalyst_jsload_error\">Unable to download JS bundle</string>\n    <string name=\"catalyst_jsload_message\">Fetching JS bundle</string>\n    <string name=\"catalyst_jsload_title\">Подождите...</string>\n    <string name=\"catalyst_reloadjs\">Reload JS</string>\n    <string name=\"catalyst_settings\">Dev Settings</string>\n    <string name=\"catalyst_settings_title\">Catalyst Dev Settings</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/values-sv/values-sv.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <string name=\"catalyst_debugjs\">Debug JS</string>\n    <string name=\"catalyst_element_inspector\">Inspektionselement</string>\n    <string name=\"catalyst_jsload_error\">Unable to download JS bundle</string>\n    <string name=\"catalyst_jsload_message\">Fetching JS bundle</string>\n    <string name=\"catalyst_jsload_title\">Vänta ...</string>\n    <string name=\"catalyst_reloadjs\">Reload JS</string>\n    <string name=\"catalyst_settings\">Dev Settings</string>\n    <string name=\"catalyst_settings_title\">Catalyst Dev Settings</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/values-th/values-th.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <string name=\"catalyst_debugjs\">Debug JS</string>\n    <string name=\"catalyst_element_inspector\">ตรวจสอบอิลิเมนต์</string>\n    <string name=\"catalyst_jsload_error\">Unable to download JS bundle</string>\n    <string name=\"catalyst_jsload_message\">Fetching JS bundle</string>\n    <string name=\"catalyst_jsload_title\">โปรดรอ...</string>\n    <string name=\"catalyst_reloadjs\">Reload JS</string>\n    <string name=\"catalyst_settings\">Dev Settings</string>\n    <string name=\"catalyst_settings_title\">Catalyst Dev Settings</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/values-tr/values-tr.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <string name=\"catalyst_debugjs\">Debug JS</string>\n    <string name=\"catalyst_element_inspector\">Öğeyi Denetle</string>\n    <string name=\"catalyst_jsload_error\">Unable to download JS bundle</string>\n    <string name=\"catalyst_jsload_message\">Fetching JS bundle</string>\n    <string name=\"catalyst_jsload_title\">Lütfen bekleyin...</string>\n    <string name=\"catalyst_reloadjs\">Reload JS</string>\n    <string name=\"catalyst_settings\">Dev Settings</string>\n    <string name=\"catalyst_settings_title\">Catalyst Dev Settings</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/values-vi/values-vi.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <string name=\"catalyst_debugjs\">Debug JS</string>\n    <string name=\"catalyst_element_inspector\">Kiểm tra phần tử</string>\n    <string name=\"catalyst_jsload_error\">Unable to download JS bundle</string>\n    <string name=\"catalyst_jsload_message\">Fetching JS bundle</string>\n    <string name=\"catalyst_jsload_title\">Vui lòng đợi...</string>\n    <string name=\"catalyst_reloadjs\">Reload JS</string>\n    <string name=\"catalyst_settings\">Dev Settings</string>\n    <string name=\"catalyst_settings_title\">Catalyst Dev Settings</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/values-zh-rCN/values-zh-rCN.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <string name=\"catalyst_debugjs\">Debug JS</string>\n    <string name=\"catalyst_element_inspector\">检查元素</string>\n    <string name=\"catalyst_jsload_error\">Unable to download JS bundle</string>\n    <string name=\"catalyst_jsload_message\">Fetching JS bundle</string>\n    <string name=\"catalyst_jsload_title\">请稍等...</string>\n    <string name=\"catalyst_reloadjs\">Reload JS</string>\n    <string name=\"catalyst_settings\">Dev Settings</string>\n    <string name=\"catalyst_settings_title\">Catalyst Dev Settings</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/values-zh-rHK/values-zh-rHK.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <string name=\"catalyst_debugjs\">Debug JS</string>\n    <string name=\"catalyst_element_inspector\">檢查項目</string>\n    <string name=\"catalyst_jsload_error\">Unable to download JS bundle</string>\n    <string name=\"catalyst_jsload_message\">Fetching JS bundle</string>\n    <string name=\"catalyst_jsload_title\">請稍候……</string>\n    <string name=\"catalyst_reloadjs\">Reload JS</string>\n    <string name=\"catalyst_settings\">Dev Settings</string>\n    <string name=\"catalyst_settings_title\">Catalyst Dev Settings</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/values-zh-rTW/values-zh-rTW.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <string name=\"catalyst_debugjs\">Debug JS</string>\n    <string name=\"catalyst_element_inspector\">檢查元素</string>\n    <string name=\"catalyst_jsload_error\">Unable to download JS bundle</string>\n    <string name=\"catalyst_jsload_message\">Fetching JS bundle</string>\n    <string name=\"catalyst_jsload_title\">請稍候……</string>\n    <string name=\"catalyst_reloadjs\">Reload JS</string>\n    <string name=\"catalyst_settings\">Dev Settings</string>\n    <string name=\"catalyst_settings_title\">Catalyst Dev Settings</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/xml/preferences.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n\n<PreferenceScreen\n    xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    >\n  <PreferenceCategory\n      android:key=\"catalyst_perf\"\n      android:title=\"Performance\"\n      >\n    <CheckBoxPreference\n        android:key=\"js_dev_mode_debug\"\n        android:title=\"JS Dev Mode\"\n        android:summary=\"Load JavaScript bundle with __DEV__ = true for easier debugging.  Disable for performance testing.\"\n        android:defaultValue=\"true\"\n        />\n    <CheckBoxPreference\n        android:key=\"js_minify_debug\"\n        android:title=\"JS Minify\"\n        android:summary=\"Load JavaScript bundle with minify=true for debugging minification issues.\"\n        android:defaultValue=\"false\"\n        />\n    <CheckBoxPreference\n        android:key=\"animations_debug\"\n        android:title=\"Animations FPS Summaries\"\n        android:summary=\"At the end of animations, Toasts and logs to logcat debug information about the FPS during that transition. Currently only supported for transitions (animated navigations).\"\n        android:defaultValue=\"false\"\n        />\n  </PreferenceCategory>\n  <PreferenceCategory\n      android:key=\"pref_key_catalyst_debug\"\n      android:title=\"Debugging\"\n      >\n    <EditTextPreference\n        android:key=\"debug_http_host\"\n        android:title=\"Debug server host &amp; port for device\"\n        android:summary=\"Debug server host &amp; port for downloading JS bundle or communicating with JS debugger. With this setting empty launcher should work fine when running on emulator (or genymotion) and connection to debug server running on emulator's host.\"\n        android:defaultValue=\"\"\n        />\n  </PreferenceCategory>\n</PreferenceScreen>\n"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/org.webkit/android-jsc/r174650/AndroidManifest.xml",
    "content": "<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\" android:versionCode=\"1\" android:versionName=\"1.0\" package=\"org.webkit.android_jsc\">\n  <application/>\n</manifest>\n"
  },
  {
    "path": "android/app/build/intermediates/exploded-aar/org.webkit/android-jsc/r174650/R.txt",
    "content": ""
  },
  {
    "path": "android/app/build/intermediates/incremental/mergeAssets/androidTest/debug/merger.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<merger version=\"3\"><dataSet config=\"main\"><source path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/src/androidTest/assets\"/></dataSet></merger>"
  },
  {
    "path": "android/app/build/intermediates/incremental/mergeAssets/debug/merger.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<merger version=\"3\"><dataSet config=\"23.0.1\"><source path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/support-v4/23.0.1/assets\"/></dataSet><dataSet config=\"23.0.1\"><source path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/assets\"/></dataSet><dataSet config=\"23.0.1\"><source path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/recyclerview-v7/23.0.1/assets\"/></dataSet><dataSet config=\"0.8.1\"><source path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.fresco/fbcore/0.8.1/assets\"/></dataSet><dataSet config=\"0.8.1\"><source path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/assets\"/></dataSet><dataSet config=\"0.8.1\"><source path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline-okhttp/0.8.1/assets\"/></dataSet><dataSet config=\"0.8.1\"><source path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.fresco/drawee/0.8.1/assets\"/></dataSet><dataSet config=\"0.8.1\"><source path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.fresco/fresco/0.8.1/assets\"/></dataSet><dataSet config=\"r174650\"><source path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/org.webkit/android-jsc/r174650/assets\"/></dataSet><dataSet config=\"0.24.1\"><source path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/assets\"/></dataSet><dataSet config=\"main\"><source path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/src/main/assets\"/></dataSet><dataSet config=\"debug\"><source path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/src/debug/assets\"/></dataSet></merger>"
  },
  {
    "path": "android/app/build/intermediates/incremental/mergeResourcesandroidTest/debug/merger.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<merger version=\"3\"><dataSet config=\"main\"><source path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/src/androidTest/res\"/><source path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/generated/res/rs/androidTest/debug\"/><source path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/generated/res/resValues/androidTest/debug\"/></dataSet><mergedItems/></merger>"
  },
  {
    "path": "android/app/build/intermediates/incremental/mergeResourcesdebug/merger.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<merger version=\"3\"><dataSet config=\"unspecified\"><source path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/GoReact/demo/unspecified/res\"/></dataSet><dataSet config=\"23.0.1\"><source path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/support-v4/23.0.1/res\"/></dataSet><dataSet config=\"23.0.1\"><source path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res\"><file name=\"abc_fade_in\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/anim/abc_fade_in.xml\" qualifiers=\"\" type=\"anim\"/><file name=\"abc_fade_out\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/anim/abc_fade_out.xml\" qualifiers=\"\" type=\"anim\"/><file name=\"abc_grow_fade_in_from_bottom\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/anim/abc_grow_fade_in_from_bottom.xml\" qualifiers=\"\" type=\"anim\"/><file name=\"abc_popup_enter\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/anim/abc_popup_enter.xml\" qualifiers=\"\" type=\"anim\"/><file name=\"abc_popup_exit\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/anim/abc_popup_exit.xml\" qualifiers=\"\" type=\"anim\"/><file name=\"abc_shrink_fade_out_from_bottom\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/anim/abc_shrink_fade_out_from_bottom.xml\" qualifiers=\"\" type=\"anim\"/><file name=\"abc_slide_in_bottom\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/anim/abc_slide_in_bottom.xml\" qualifiers=\"\" type=\"anim\"/><file name=\"abc_slide_in_top\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/anim/abc_slide_in_top.xml\" qualifiers=\"\" type=\"anim\"/><file name=\"abc_slide_out_bottom\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/anim/abc_slide_out_bottom.xml\" qualifiers=\"\" type=\"anim\"/><file name=\"abc_slide_out_top\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/anim/abc_slide_out_top.xml\" qualifiers=\"\" type=\"anim\"/><file name=\"abc_background_cache_hint_selector_material_dark\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color/abc_background_cache_hint_selector_material_dark.xml\" qualifiers=\"\" type=\"color\"/><file name=\"abc_background_cache_hint_selector_material_light\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color/abc_background_cache_hint_selector_material_light.xml\" qualifiers=\"\" type=\"color\"/><file name=\"abc_primary_text_disable_only_material_dark\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color/abc_primary_text_disable_only_material_dark.xml\" qualifiers=\"\" type=\"color\"/><file name=\"abc_primary_text_disable_only_material_light\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color/abc_primary_text_disable_only_material_light.xml\" qualifiers=\"\" type=\"color\"/><file name=\"abc_primary_text_material_dark\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color/abc_primary_text_material_dark.xml\" qualifiers=\"\" type=\"color\"/><file name=\"abc_primary_text_material_light\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color/abc_primary_text_material_light.xml\" qualifiers=\"\" type=\"color\"/><file name=\"abc_search_url_text\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color/abc_search_url_text.xml\" qualifiers=\"\" type=\"color\"/><file name=\"abc_secondary_text_material_dark\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color/abc_secondary_text_material_dark.xml\" qualifiers=\"\" type=\"color\"/><file name=\"abc_secondary_text_material_light\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color/abc_secondary_text_material_light.xml\" qualifiers=\"\" type=\"color\"/><file name=\"switch_thumb_material_dark\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color/switch_thumb_material_dark.xml\" qualifiers=\"\" type=\"color\"/><file name=\"switch_thumb_material_light\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color/switch_thumb_material_light.xml\" qualifiers=\"\" type=\"color\"/><file name=\"abc_background_cache_hint_selector_material_dark\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color-v11/abc_background_cache_hint_selector_material_dark.xml\" qualifiers=\"v11\" type=\"color\"/><file name=\"abc_background_cache_hint_selector_material_light\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color-v11/abc_background_cache_hint_selector_material_light.xml\" qualifiers=\"v11\" type=\"color\"/><file name=\"abc_color_highlight_material\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color-v23/abc_color_highlight_material.xml\" qualifiers=\"v23\" type=\"color\"/><file name=\"abc_btn_borderless_material\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_btn_borderless_material.xml\" qualifiers=\"\" type=\"drawable\"/><file name=\"abc_btn_check_material\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_btn_check_material.xml\" qualifiers=\"\" type=\"drawable\"/><file name=\"abc_btn_colored_material\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_btn_colored_material.xml\" qualifiers=\"\" type=\"drawable\"/><file name=\"abc_btn_default_mtrl_shape\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_btn_default_mtrl_shape.xml\" qualifiers=\"\" type=\"drawable\"/><file name=\"abc_btn_radio_material\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_btn_radio_material.xml\" qualifiers=\"\" type=\"drawable\"/><file name=\"abc_cab_background_internal_bg\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_cab_background_internal_bg.xml\" qualifiers=\"\" type=\"drawable\"/><file name=\"abc_cab_background_top_material\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_cab_background_top_material.xml\" qualifiers=\"\" type=\"drawable\"/><file name=\"abc_dialog_material_background_dark\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_dialog_material_background_dark.xml\" qualifiers=\"\" type=\"drawable\"/><file name=\"abc_dialog_material_background_light\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_dialog_material_background_light.xml\" qualifiers=\"\" type=\"drawable\"/><file name=\"abc_edit_text_material\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_edit_text_material.xml\" qualifiers=\"\" type=\"drawable\"/><file name=\"abc_item_background_holo_dark\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_item_background_holo_dark.xml\" qualifiers=\"\" type=\"drawable\"/><file name=\"abc_item_background_holo_light\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_item_background_holo_light.xml\" qualifiers=\"\" type=\"drawable\"/><file name=\"abc_list_selector_background_transition_holo_dark\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_list_selector_background_transition_holo_dark.xml\" qualifiers=\"\" type=\"drawable\"/><file name=\"abc_list_selector_background_transition_holo_light\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_list_selector_background_transition_holo_light.xml\" qualifiers=\"\" type=\"drawable\"/><file name=\"abc_list_selector_holo_dark\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_list_selector_holo_dark.xml\" qualifiers=\"\" type=\"drawable\"/><file name=\"abc_list_selector_holo_light\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_list_selector_holo_light.xml\" qualifiers=\"\" type=\"drawable\"/><file name=\"abc_ratingbar_full_material\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_ratingbar_full_material.xml\" qualifiers=\"\" type=\"drawable\"/><file name=\"abc_spinner_textfield_background_material\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_spinner_textfield_background_material.xml\" qualifiers=\"\" type=\"drawable\"/><file name=\"abc_switch_thumb_material\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_switch_thumb_material.xml\" qualifiers=\"\" type=\"drawable\"/><file name=\"abc_tab_indicator_material\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_tab_indicator_material.xml\" qualifiers=\"\" type=\"drawable\"/><file name=\"abc_text_cursor_material\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_text_cursor_material.xml\" qualifiers=\"\" type=\"drawable\"/><file name=\"abc_textfield_search_material\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_textfield_search_material.xml\" qualifiers=\"\" type=\"drawable\"/><file name=\"abc_ab_share_pack_mtrl_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_ab_share_pack_mtrl_alpha.9.png\" qualifiers=\"hdpi\" type=\"drawable\"/><file name=\"abc_btn_check_to_on_mtrl_000\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_btn_check_to_on_mtrl_000.png\" qualifiers=\"hdpi\" type=\"drawable\"/><file name=\"abc_btn_check_to_on_mtrl_015\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_btn_check_to_on_mtrl_015.png\" qualifiers=\"hdpi\" type=\"drawable\"/><file name=\"abc_btn_radio_to_on_mtrl_000\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_btn_radio_to_on_mtrl_000.png\" qualifiers=\"hdpi\" type=\"drawable\"/><file name=\"abc_btn_radio_to_on_mtrl_015\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_btn_radio_to_on_mtrl_015.png\" qualifiers=\"hdpi\" type=\"drawable\"/><file name=\"abc_btn_rating_star_off_mtrl_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_btn_rating_star_off_mtrl_alpha.png\" qualifiers=\"hdpi\" type=\"drawable\"/><file name=\"abc_btn_rating_star_on_mtrl_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_btn_rating_star_on_mtrl_alpha.png\" qualifiers=\"hdpi\" type=\"drawable\"/><file name=\"abc_btn_switch_to_on_mtrl_00001\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_btn_switch_to_on_mtrl_00001.9.png\" qualifiers=\"hdpi\" type=\"drawable\"/><file name=\"abc_btn_switch_to_on_mtrl_00012\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_btn_switch_to_on_mtrl_00012.9.png\" qualifiers=\"hdpi\" type=\"drawable\"/><file name=\"abc_cab_background_top_mtrl_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_cab_background_top_mtrl_alpha.9.png\" qualifiers=\"hdpi\" type=\"drawable\"/><file name=\"abc_ic_ab_back_mtrl_am_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_ic_ab_back_mtrl_am_alpha.png\" qualifiers=\"hdpi\" type=\"drawable\"/><file name=\"abc_ic_clear_mtrl_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_ic_clear_mtrl_alpha.png\" qualifiers=\"hdpi\" type=\"drawable\"/><file name=\"abc_ic_commit_search_api_mtrl_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_ic_commit_search_api_mtrl_alpha.png\" qualifiers=\"hdpi\" type=\"drawable\"/><file name=\"abc_ic_go_search_api_mtrl_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_ic_go_search_api_mtrl_alpha.png\" qualifiers=\"hdpi\" type=\"drawable\"/><file name=\"abc_ic_menu_copy_mtrl_am_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_ic_menu_copy_mtrl_am_alpha.png\" qualifiers=\"hdpi\" type=\"drawable\"/><file name=\"abc_ic_menu_cut_mtrl_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_ic_menu_cut_mtrl_alpha.png\" qualifiers=\"hdpi\" type=\"drawable\"/><file name=\"abc_ic_menu_moreoverflow_mtrl_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png\" qualifiers=\"hdpi\" type=\"drawable\"/><file name=\"abc_ic_menu_paste_mtrl_am_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_ic_menu_paste_mtrl_am_alpha.png\" qualifiers=\"hdpi\" type=\"drawable\"/><file name=\"abc_ic_menu_selectall_mtrl_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_ic_menu_selectall_mtrl_alpha.png\" qualifiers=\"hdpi\" type=\"drawable\"/><file name=\"abc_ic_menu_share_mtrl_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_ic_menu_share_mtrl_alpha.png\" qualifiers=\"hdpi\" type=\"drawable\"/><file name=\"abc_ic_search_api_mtrl_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_ic_search_api_mtrl_alpha.png\" qualifiers=\"hdpi\" type=\"drawable\"/><file name=\"abc_ic_voice_search_api_mtrl_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_ic_voice_search_api_mtrl_alpha.png\" qualifiers=\"hdpi\" type=\"drawable\"/><file name=\"abc_list_divider_mtrl_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_list_divider_mtrl_alpha.9.png\" qualifiers=\"hdpi\" type=\"drawable\"/><file name=\"abc_list_focused_holo\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_list_focused_holo.9.png\" qualifiers=\"hdpi\" type=\"drawable\"/><file name=\"abc_list_longpressed_holo\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_list_longpressed_holo.9.png\" qualifiers=\"hdpi\" type=\"drawable\"/><file name=\"abc_list_pressed_holo_dark\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_list_pressed_holo_dark.9.png\" qualifiers=\"hdpi\" type=\"drawable\"/><file name=\"abc_list_pressed_holo_light\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_list_pressed_holo_light.9.png\" qualifiers=\"hdpi\" type=\"drawable\"/><file name=\"abc_list_selector_disabled_holo_dark\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_list_selector_disabled_holo_dark.9.png\" qualifiers=\"hdpi\" type=\"drawable\"/><file name=\"abc_list_selector_disabled_holo_light\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_list_selector_disabled_holo_light.9.png\" qualifiers=\"hdpi\" type=\"drawable\"/><file name=\"abc_menu_hardkey_panel_mtrl_mult\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_menu_hardkey_panel_mtrl_mult.9.png\" qualifiers=\"hdpi\" type=\"drawable\"/><file name=\"abc_popup_background_mtrl_mult\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_popup_background_mtrl_mult.9.png\" qualifiers=\"hdpi\" type=\"drawable\"/><file name=\"abc_spinner_mtrl_am_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_spinner_mtrl_am_alpha.9.png\" qualifiers=\"hdpi\" type=\"drawable\"/><file name=\"abc_switch_track_mtrl_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_switch_track_mtrl_alpha.9.png\" qualifiers=\"hdpi\" type=\"drawable\"/><file name=\"abc_tab_indicator_mtrl_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_tab_indicator_mtrl_alpha.9.png\" qualifiers=\"hdpi\" type=\"drawable\"/><file name=\"abc_textfield_activated_mtrl_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_textfield_activated_mtrl_alpha.9.png\" qualifiers=\"hdpi\" type=\"drawable\"/><file name=\"abc_textfield_default_mtrl_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_textfield_default_mtrl_alpha.9.png\" qualifiers=\"hdpi\" type=\"drawable\"/><file name=\"abc_textfield_search_activated_mtrl_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_textfield_search_activated_mtrl_alpha.9.png\" qualifiers=\"hdpi\" type=\"drawable\"/><file name=\"abc_textfield_search_default_mtrl_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-hdpi/abc_textfield_search_default_mtrl_alpha.9.png\" qualifiers=\"hdpi\" type=\"drawable\"/><file name=\"abc_ic_ab_back_mtrl_am_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-hdpi/abc_ic_ab_back_mtrl_am_alpha.png\" qualifiers=\"ldrtl-hdpi\" type=\"drawable\"/><file name=\"abc_ic_menu_copy_mtrl_am_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-hdpi/abc_ic_menu_copy_mtrl_am_alpha.png\" qualifiers=\"ldrtl-hdpi\" type=\"drawable\"/><file name=\"abc_ic_menu_cut_mtrl_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-hdpi/abc_ic_menu_cut_mtrl_alpha.png\" qualifiers=\"ldrtl-hdpi\" type=\"drawable\"/><file name=\"abc_spinner_mtrl_am_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-hdpi/abc_spinner_mtrl_am_alpha.9.png\" qualifiers=\"ldrtl-hdpi\" type=\"drawable\"/><file name=\"abc_ic_ab_back_mtrl_am_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-mdpi/abc_ic_ab_back_mtrl_am_alpha.png\" qualifiers=\"ldrtl-mdpi\" type=\"drawable\"/><file name=\"abc_ic_menu_copy_mtrl_am_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-mdpi/abc_ic_menu_copy_mtrl_am_alpha.png\" qualifiers=\"ldrtl-mdpi\" type=\"drawable\"/><file name=\"abc_ic_menu_cut_mtrl_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-mdpi/abc_ic_menu_cut_mtrl_alpha.png\" qualifiers=\"ldrtl-mdpi\" type=\"drawable\"/><file name=\"abc_spinner_mtrl_am_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-mdpi/abc_spinner_mtrl_am_alpha.9.png\" qualifiers=\"ldrtl-mdpi\" type=\"drawable\"/><file name=\"abc_ic_ab_back_mtrl_am_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-xhdpi/abc_ic_ab_back_mtrl_am_alpha.png\" qualifiers=\"ldrtl-xhdpi\" type=\"drawable\"/><file name=\"abc_ic_menu_copy_mtrl_am_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-xhdpi/abc_ic_menu_copy_mtrl_am_alpha.png\" qualifiers=\"ldrtl-xhdpi\" type=\"drawable\"/><file name=\"abc_ic_menu_cut_mtrl_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-xhdpi/abc_ic_menu_cut_mtrl_alpha.png\" qualifiers=\"ldrtl-xhdpi\" type=\"drawable\"/><file name=\"abc_spinner_mtrl_am_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-xhdpi/abc_spinner_mtrl_am_alpha.9.png\" qualifiers=\"ldrtl-xhdpi\" type=\"drawable\"/><file name=\"abc_ic_ab_back_mtrl_am_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-xxhdpi/abc_ic_ab_back_mtrl_am_alpha.png\" qualifiers=\"ldrtl-xxhdpi\" type=\"drawable\"/><file name=\"abc_ic_menu_copy_mtrl_am_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-xxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png\" qualifiers=\"ldrtl-xxhdpi\" type=\"drawable\"/><file name=\"abc_ic_menu_cut_mtrl_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-xxhdpi/abc_ic_menu_cut_mtrl_alpha.png\" qualifiers=\"ldrtl-xxhdpi\" type=\"drawable\"/><file name=\"abc_spinner_mtrl_am_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-xxhdpi/abc_spinner_mtrl_am_alpha.9.png\" qualifiers=\"ldrtl-xxhdpi\" type=\"drawable\"/><file name=\"abc_ic_ab_back_mtrl_am_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-xxxhdpi/abc_ic_ab_back_mtrl_am_alpha.png\" qualifiers=\"ldrtl-xxxhdpi\" type=\"drawable\"/><file name=\"abc_ic_menu_copy_mtrl_am_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-xxxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png\" qualifiers=\"ldrtl-xxxhdpi\" type=\"drawable\"/><file name=\"abc_ic_menu_cut_mtrl_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-xxxhdpi/abc_ic_menu_cut_mtrl_alpha.png\" qualifiers=\"ldrtl-xxxhdpi\" type=\"drawable\"/><file name=\"abc_spinner_mtrl_am_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-ldrtl-xxxhdpi/abc_spinner_mtrl_am_alpha.9.png\" qualifiers=\"ldrtl-xxxhdpi\" type=\"drawable\"/><file name=\"abc_ab_share_pack_mtrl_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_ab_share_pack_mtrl_alpha.9.png\" qualifiers=\"mdpi\" type=\"drawable\"/><file name=\"abc_btn_check_to_on_mtrl_000\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_btn_check_to_on_mtrl_000.png\" qualifiers=\"mdpi\" type=\"drawable\"/><file name=\"abc_btn_check_to_on_mtrl_015\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_btn_check_to_on_mtrl_015.png\" qualifiers=\"mdpi\" type=\"drawable\"/><file name=\"abc_btn_radio_to_on_mtrl_000\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_btn_radio_to_on_mtrl_000.png\" qualifiers=\"mdpi\" type=\"drawable\"/><file name=\"abc_btn_radio_to_on_mtrl_015\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_btn_radio_to_on_mtrl_015.png\" qualifiers=\"mdpi\" type=\"drawable\"/><file name=\"abc_btn_rating_star_off_mtrl_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_btn_rating_star_off_mtrl_alpha.png\" qualifiers=\"mdpi\" type=\"drawable\"/><file name=\"abc_btn_rating_star_on_mtrl_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_btn_rating_star_on_mtrl_alpha.png\" qualifiers=\"mdpi\" type=\"drawable\"/><file name=\"abc_btn_switch_to_on_mtrl_00001\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_btn_switch_to_on_mtrl_00001.9.png\" qualifiers=\"mdpi\" type=\"drawable\"/><file name=\"abc_btn_switch_to_on_mtrl_00012\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_btn_switch_to_on_mtrl_00012.9.png\" qualifiers=\"mdpi\" type=\"drawable\"/><file name=\"abc_cab_background_top_mtrl_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_cab_background_top_mtrl_alpha.9.png\" qualifiers=\"mdpi\" type=\"drawable\"/><file name=\"abc_ic_ab_back_mtrl_am_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_ic_ab_back_mtrl_am_alpha.png\" qualifiers=\"mdpi\" type=\"drawable\"/><file name=\"abc_ic_clear_mtrl_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_ic_clear_mtrl_alpha.png\" qualifiers=\"mdpi\" type=\"drawable\"/><file name=\"abc_ic_commit_search_api_mtrl_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_ic_commit_search_api_mtrl_alpha.png\" qualifiers=\"mdpi\" type=\"drawable\"/><file name=\"abc_ic_go_search_api_mtrl_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_ic_go_search_api_mtrl_alpha.png\" qualifiers=\"mdpi\" type=\"drawable\"/><file name=\"abc_ic_menu_copy_mtrl_am_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_ic_menu_copy_mtrl_am_alpha.png\" qualifiers=\"mdpi\" type=\"drawable\"/><file name=\"abc_ic_menu_cut_mtrl_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_ic_menu_cut_mtrl_alpha.png\" qualifiers=\"mdpi\" type=\"drawable\"/><file name=\"abc_ic_menu_moreoverflow_mtrl_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png\" qualifiers=\"mdpi\" type=\"drawable\"/><file name=\"abc_ic_menu_paste_mtrl_am_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_ic_menu_paste_mtrl_am_alpha.png\" qualifiers=\"mdpi\" type=\"drawable\"/><file name=\"abc_ic_menu_selectall_mtrl_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_ic_menu_selectall_mtrl_alpha.png\" qualifiers=\"mdpi\" type=\"drawable\"/><file name=\"abc_ic_menu_share_mtrl_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_ic_menu_share_mtrl_alpha.png\" qualifiers=\"mdpi\" type=\"drawable\"/><file name=\"abc_ic_search_api_mtrl_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_ic_search_api_mtrl_alpha.png\" qualifiers=\"mdpi\" type=\"drawable\"/><file name=\"abc_ic_voice_search_api_mtrl_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_ic_voice_search_api_mtrl_alpha.png\" qualifiers=\"mdpi\" type=\"drawable\"/><file name=\"abc_list_divider_mtrl_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_list_divider_mtrl_alpha.9.png\" qualifiers=\"mdpi\" type=\"drawable\"/><file name=\"abc_list_focused_holo\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_list_focused_holo.9.png\" qualifiers=\"mdpi\" type=\"drawable\"/><file name=\"abc_list_longpressed_holo\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_list_longpressed_holo.9.png\" qualifiers=\"mdpi\" type=\"drawable\"/><file name=\"abc_list_pressed_holo_dark\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_list_pressed_holo_dark.9.png\" qualifiers=\"mdpi\" type=\"drawable\"/><file name=\"abc_list_pressed_holo_light\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_list_pressed_holo_light.9.png\" qualifiers=\"mdpi\" type=\"drawable\"/><file name=\"abc_list_selector_disabled_holo_dark\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_list_selector_disabled_holo_dark.9.png\" qualifiers=\"mdpi\" type=\"drawable\"/><file name=\"abc_list_selector_disabled_holo_light\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_list_selector_disabled_holo_light.9.png\" qualifiers=\"mdpi\" type=\"drawable\"/><file name=\"abc_menu_hardkey_panel_mtrl_mult\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_menu_hardkey_panel_mtrl_mult.9.png\" qualifiers=\"mdpi\" type=\"drawable\"/><file name=\"abc_popup_background_mtrl_mult\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_popup_background_mtrl_mult.9.png\" qualifiers=\"mdpi\" type=\"drawable\"/><file name=\"abc_spinner_mtrl_am_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_spinner_mtrl_am_alpha.9.png\" qualifiers=\"mdpi\" type=\"drawable\"/><file name=\"abc_switch_track_mtrl_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_switch_track_mtrl_alpha.9.png\" qualifiers=\"mdpi\" type=\"drawable\"/><file name=\"abc_tab_indicator_mtrl_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_tab_indicator_mtrl_alpha.9.png\" qualifiers=\"mdpi\" type=\"drawable\"/><file name=\"abc_textfield_activated_mtrl_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_textfield_activated_mtrl_alpha.9.png\" qualifiers=\"mdpi\" type=\"drawable\"/><file name=\"abc_textfield_default_mtrl_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_textfield_default_mtrl_alpha.9.png\" qualifiers=\"mdpi\" type=\"drawable\"/><file name=\"abc_textfield_search_activated_mtrl_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_textfield_search_activated_mtrl_alpha.9.png\" qualifiers=\"mdpi\" type=\"drawable\"/><file name=\"abc_textfield_search_default_mtrl_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-mdpi/abc_textfield_search_default_mtrl_alpha.9.png\" qualifiers=\"mdpi\" type=\"drawable\"/><file name=\"abc_action_bar_item_background_material\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-v21/abc_action_bar_item_background_material.xml\" qualifiers=\"v21\" type=\"drawable\"/><file name=\"abc_btn_colored_material\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-v21/abc_btn_colored_material.xml\" qualifiers=\"v21\" type=\"drawable\"/><file name=\"abc_control_background_material\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-v23/abc_control_background_material.xml\" qualifiers=\"v23\" type=\"drawable\"/><file name=\"abc_ab_share_pack_mtrl_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_ab_share_pack_mtrl_alpha.9.png\" qualifiers=\"xhdpi\" type=\"drawable\"/><file name=\"abc_btn_check_to_on_mtrl_000\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_btn_check_to_on_mtrl_000.png\" qualifiers=\"xhdpi\" type=\"drawable\"/><file name=\"abc_btn_check_to_on_mtrl_015\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_btn_check_to_on_mtrl_015.png\" qualifiers=\"xhdpi\" type=\"drawable\"/><file name=\"abc_btn_radio_to_on_mtrl_000\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_btn_radio_to_on_mtrl_000.png\" qualifiers=\"xhdpi\" type=\"drawable\"/><file name=\"abc_btn_radio_to_on_mtrl_015\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_btn_radio_to_on_mtrl_015.png\" qualifiers=\"xhdpi\" type=\"drawable\"/><file name=\"abc_btn_rating_star_off_mtrl_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_btn_rating_star_off_mtrl_alpha.png\" qualifiers=\"xhdpi\" type=\"drawable\"/><file name=\"abc_btn_rating_star_on_mtrl_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_btn_rating_star_on_mtrl_alpha.png\" qualifiers=\"xhdpi\" type=\"drawable\"/><file name=\"abc_btn_switch_to_on_mtrl_00001\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_btn_switch_to_on_mtrl_00001.9.png\" qualifiers=\"xhdpi\" type=\"drawable\"/><file name=\"abc_btn_switch_to_on_mtrl_00012\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_btn_switch_to_on_mtrl_00012.9.png\" qualifiers=\"xhdpi\" type=\"drawable\"/><file name=\"abc_cab_background_top_mtrl_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_cab_background_top_mtrl_alpha.9.png\" qualifiers=\"xhdpi\" type=\"drawable\"/><file name=\"abc_ic_ab_back_mtrl_am_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_ic_ab_back_mtrl_am_alpha.png\" qualifiers=\"xhdpi\" type=\"drawable\"/><file name=\"abc_ic_clear_mtrl_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_ic_clear_mtrl_alpha.png\" qualifiers=\"xhdpi\" type=\"drawable\"/><file name=\"abc_ic_commit_search_api_mtrl_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_ic_commit_search_api_mtrl_alpha.png\" qualifiers=\"xhdpi\" type=\"drawable\"/><file name=\"abc_ic_go_search_api_mtrl_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_ic_go_search_api_mtrl_alpha.png\" qualifiers=\"xhdpi\" type=\"drawable\"/><file name=\"abc_ic_menu_copy_mtrl_am_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_ic_menu_copy_mtrl_am_alpha.png\" qualifiers=\"xhdpi\" type=\"drawable\"/><file name=\"abc_ic_menu_cut_mtrl_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_ic_menu_cut_mtrl_alpha.png\" qualifiers=\"xhdpi\" type=\"drawable\"/><file name=\"abc_ic_menu_moreoverflow_mtrl_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png\" qualifiers=\"xhdpi\" type=\"drawable\"/><file name=\"abc_ic_menu_paste_mtrl_am_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_ic_menu_paste_mtrl_am_alpha.png\" qualifiers=\"xhdpi\" type=\"drawable\"/><file name=\"abc_ic_menu_selectall_mtrl_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_ic_menu_selectall_mtrl_alpha.png\" qualifiers=\"xhdpi\" type=\"drawable\"/><file name=\"abc_ic_menu_share_mtrl_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_ic_menu_share_mtrl_alpha.png\" qualifiers=\"xhdpi\" type=\"drawable\"/><file name=\"abc_ic_search_api_mtrl_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_ic_search_api_mtrl_alpha.png\" qualifiers=\"xhdpi\" type=\"drawable\"/><file name=\"abc_ic_voice_search_api_mtrl_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_ic_voice_search_api_mtrl_alpha.png\" qualifiers=\"xhdpi\" type=\"drawable\"/><file name=\"abc_list_divider_mtrl_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_list_divider_mtrl_alpha.9.png\" qualifiers=\"xhdpi\" type=\"drawable\"/><file name=\"abc_list_focused_holo\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_list_focused_holo.9.png\" qualifiers=\"xhdpi\" type=\"drawable\"/><file name=\"abc_list_longpressed_holo\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_list_longpressed_holo.9.png\" qualifiers=\"xhdpi\" type=\"drawable\"/><file name=\"abc_list_pressed_holo_dark\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_list_pressed_holo_dark.9.png\" qualifiers=\"xhdpi\" type=\"drawable\"/><file name=\"abc_list_pressed_holo_light\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_list_pressed_holo_light.9.png\" qualifiers=\"xhdpi\" type=\"drawable\"/><file name=\"abc_list_selector_disabled_holo_dark\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_list_selector_disabled_holo_dark.9.png\" qualifiers=\"xhdpi\" type=\"drawable\"/><file name=\"abc_list_selector_disabled_holo_light\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_list_selector_disabled_holo_light.9.png\" qualifiers=\"xhdpi\" type=\"drawable\"/><file name=\"abc_menu_hardkey_panel_mtrl_mult\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_menu_hardkey_panel_mtrl_mult.9.png\" qualifiers=\"xhdpi\" type=\"drawable\"/><file name=\"abc_popup_background_mtrl_mult\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_popup_background_mtrl_mult.9.png\" qualifiers=\"xhdpi\" type=\"drawable\"/><file name=\"abc_spinner_mtrl_am_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_spinner_mtrl_am_alpha.9.png\" qualifiers=\"xhdpi\" type=\"drawable\"/><file name=\"abc_switch_track_mtrl_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_switch_track_mtrl_alpha.9.png\" qualifiers=\"xhdpi\" type=\"drawable\"/><file name=\"abc_tab_indicator_mtrl_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_tab_indicator_mtrl_alpha.9.png\" qualifiers=\"xhdpi\" type=\"drawable\"/><file name=\"abc_textfield_activated_mtrl_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_textfield_activated_mtrl_alpha.9.png\" qualifiers=\"xhdpi\" type=\"drawable\"/><file name=\"abc_textfield_default_mtrl_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_textfield_default_mtrl_alpha.9.png\" qualifiers=\"xhdpi\" type=\"drawable\"/><file name=\"abc_textfield_search_activated_mtrl_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_textfield_search_activated_mtrl_alpha.9.png\" qualifiers=\"xhdpi\" type=\"drawable\"/><file name=\"abc_textfield_search_default_mtrl_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xhdpi/abc_textfield_search_default_mtrl_alpha.9.png\" qualifiers=\"xhdpi\" type=\"drawable\"/><file name=\"abc_ab_share_pack_mtrl_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_ab_share_pack_mtrl_alpha.9.png\" qualifiers=\"xxhdpi\" type=\"drawable\"/><file name=\"abc_btn_check_to_on_mtrl_000\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_btn_check_to_on_mtrl_000.png\" qualifiers=\"xxhdpi\" type=\"drawable\"/><file name=\"abc_btn_check_to_on_mtrl_015\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_btn_check_to_on_mtrl_015.png\" qualifiers=\"xxhdpi\" type=\"drawable\"/><file name=\"abc_btn_radio_to_on_mtrl_000\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_btn_radio_to_on_mtrl_000.png\" qualifiers=\"xxhdpi\" type=\"drawable\"/><file name=\"abc_btn_radio_to_on_mtrl_015\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_btn_radio_to_on_mtrl_015.png\" qualifiers=\"xxhdpi\" type=\"drawable\"/><file name=\"abc_btn_rating_star_off_mtrl_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_btn_rating_star_off_mtrl_alpha.png\" qualifiers=\"xxhdpi\" type=\"drawable\"/><file name=\"abc_btn_rating_star_on_mtrl_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_btn_rating_star_on_mtrl_alpha.png\" qualifiers=\"xxhdpi\" type=\"drawable\"/><file name=\"abc_btn_switch_to_on_mtrl_00001\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_btn_switch_to_on_mtrl_00001.9.png\" qualifiers=\"xxhdpi\" type=\"drawable\"/><file name=\"abc_btn_switch_to_on_mtrl_00012\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_btn_switch_to_on_mtrl_00012.9.png\" qualifiers=\"xxhdpi\" type=\"drawable\"/><file name=\"abc_cab_background_top_mtrl_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_cab_background_top_mtrl_alpha.9.png\" qualifiers=\"xxhdpi\" type=\"drawable\"/><file name=\"abc_ic_ab_back_mtrl_am_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_ic_ab_back_mtrl_am_alpha.png\" qualifiers=\"xxhdpi\" type=\"drawable\"/><file name=\"abc_ic_clear_mtrl_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_ic_clear_mtrl_alpha.png\" qualifiers=\"xxhdpi\" type=\"drawable\"/><file name=\"abc_ic_commit_search_api_mtrl_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_ic_commit_search_api_mtrl_alpha.png\" qualifiers=\"xxhdpi\" type=\"drawable\"/><file name=\"abc_ic_go_search_api_mtrl_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_ic_go_search_api_mtrl_alpha.png\" qualifiers=\"xxhdpi\" type=\"drawable\"/><file name=\"abc_ic_menu_copy_mtrl_am_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png\" qualifiers=\"xxhdpi\" type=\"drawable\"/><file name=\"abc_ic_menu_cut_mtrl_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_ic_menu_cut_mtrl_alpha.png\" qualifiers=\"xxhdpi\" type=\"drawable\"/><file name=\"abc_ic_menu_moreoverflow_mtrl_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png\" qualifiers=\"xxhdpi\" type=\"drawable\"/><file name=\"abc_ic_menu_paste_mtrl_am_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_ic_menu_paste_mtrl_am_alpha.png\" qualifiers=\"xxhdpi\" type=\"drawable\"/><file name=\"abc_ic_menu_selectall_mtrl_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_ic_menu_selectall_mtrl_alpha.png\" qualifiers=\"xxhdpi\" type=\"drawable\"/><file name=\"abc_ic_menu_share_mtrl_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_ic_menu_share_mtrl_alpha.png\" qualifiers=\"xxhdpi\" type=\"drawable\"/><file name=\"abc_ic_search_api_mtrl_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_ic_search_api_mtrl_alpha.png\" qualifiers=\"xxhdpi\" type=\"drawable\"/><file name=\"abc_ic_voice_search_api_mtrl_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_ic_voice_search_api_mtrl_alpha.png\" qualifiers=\"xxhdpi\" type=\"drawable\"/><file name=\"abc_list_divider_mtrl_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_list_divider_mtrl_alpha.9.png\" qualifiers=\"xxhdpi\" type=\"drawable\"/><file name=\"abc_list_focused_holo\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_list_focused_holo.9.png\" qualifiers=\"xxhdpi\" type=\"drawable\"/><file name=\"abc_list_longpressed_holo\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_list_longpressed_holo.9.png\" qualifiers=\"xxhdpi\" type=\"drawable\"/><file name=\"abc_list_pressed_holo_dark\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_list_pressed_holo_dark.9.png\" qualifiers=\"xxhdpi\" type=\"drawable\"/><file name=\"abc_list_pressed_holo_light\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_list_pressed_holo_light.9.png\" qualifiers=\"xxhdpi\" type=\"drawable\"/><file name=\"abc_list_selector_disabled_holo_dark\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_list_selector_disabled_holo_dark.9.png\" qualifiers=\"xxhdpi\" type=\"drawable\"/><file name=\"abc_list_selector_disabled_holo_light\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_list_selector_disabled_holo_light.9.png\" qualifiers=\"xxhdpi\" type=\"drawable\"/><file name=\"abc_menu_hardkey_panel_mtrl_mult\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_menu_hardkey_panel_mtrl_mult.9.png\" qualifiers=\"xxhdpi\" type=\"drawable\"/><file name=\"abc_popup_background_mtrl_mult\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_popup_background_mtrl_mult.9.png\" qualifiers=\"xxhdpi\" type=\"drawable\"/><file name=\"abc_spinner_mtrl_am_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_spinner_mtrl_am_alpha.9.png\" qualifiers=\"xxhdpi\" type=\"drawable\"/><file name=\"abc_switch_track_mtrl_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_switch_track_mtrl_alpha.9.png\" qualifiers=\"xxhdpi\" type=\"drawable\"/><file name=\"abc_tab_indicator_mtrl_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_tab_indicator_mtrl_alpha.9.png\" qualifiers=\"xxhdpi\" type=\"drawable\"/><file name=\"abc_textfield_activated_mtrl_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_textfield_activated_mtrl_alpha.9.png\" qualifiers=\"xxhdpi\" type=\"drawable\"/><file name=\"abc_textfield_default_mtrl_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_textfield_default_mtrl_alpha.9.png\" qualifiers=\"xxhdpi\" type=\"drawable\"/><file name=\"abc_textfield_search_activated_mtrl_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_textfield_search_activated_mtrl_alpha.9.png\" qualifiers=\"xxhdpi\" type=\"drawable\"/><file name=\"abc_textfield_search_default_mtrl_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxhdpi/abc_textfield_search_default_mtrl_alpha.9.png\" qualifiers=\"xxhdpi\" type=\"drawable\"/><file name=\"abc_btn_check_to_on_mtrl_000\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_btn_check_to_on_mtrl_000.png\" qualifiers=\"xxxhdpi\" type=\"drawable\"/><file name=\"abc_btn_check_to_on_mtrl_015\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_btn_check_to_on_mtrl_015.png\" qualifiers=\"xxxhdpi\" type=\"drawable\"/><file name=\"abc_btn_radio_to_on_mtrl_000\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_btn_radio_to_on_mtrl_000.png\" qualifiers=\"xxxhdpi\" type=\"drawable\"/><file name=\"abc_btn_radio_to_on_mtrl_015\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_btn_radio_to_on_mtrl_015.png\" qualifiers=\"xxxhdpi\" type=\"drawable\"/><file name=\"abc_btn_switch_to_on_mtrl_00001\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_btn_switch_to_on_mtrl_00001.9.png\" qualifiers=\"xxxhdpi\" type=\"drawable\"/><file name=\"abc_btn_switch_to_on_mtrl_00012\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_btn_switch_to_on_mtrl_00012.9.png\" qualifiers=\"xxxhdpi\" type=\"drawable\"/><file name=\"abc_ic_ab_back_mtrl_am_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_ic_ab_back_mtrl_am_alpha.png\" qualifiers=\"xxxhdpi\" type=\"drawable\"/><file name=\"abc_ic_clear_mtrl_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_ic_clear_mtrl_alpha.png\" qualifiers=\"xxxhdpi\" type=\"drawable\"/><file name=\"abc_ic_menu_copy_mtrl_am_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png\" qualifiers=\"xxxhdpi\" type=\"drawable\"/><file name=\"abc_ic_menu_cut_mtrl_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_ic_menu_cut_mtrl_alpha.png\" qualifiers=\"xxxhdpi\" type=\"drawable\"/><file name=\"abc_ic_menu_moreoverflow_mtrl_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png\" qualifiers=\"xxxhdpi\" type=\"drawable\"/><file name=\"abc_ic_menu_paste_mtrl_am_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_ic_menu_paste_mtrl_am_alpha.png\" qualifiers=\"xxxhdpi\" type=\"drawable\"/><file name=\"abc_ic_menu_selectall_mtrl_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_ic_menu_selectall_mtrl_alpha.png\" qualifiers=\"xxxhdpi\" type=\"drawable\"/><file name=\"abc_ic_menu_share_mtrl_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_ic_menu_share_mtrl_alpha.png\" qualifiers=\"xxxhdpi\" type=\"drawable\"/><file name=\"abc_ic_search_api_mtrl_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_ic_search_api_mtrl_alpha.png\" qualifiers=\"xxxhdpi\" type=\"drawable\"/><file name=\"abc_ic_voice_search_api_mtrl_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_ic_voice_search_api_mtrl_alpha.png\" qualifiers=\"xxxhdpi\" type=\"drawable\"/><file name=\"abc_spinner_mtrl_am_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_spinner_mtrl_am_alpha.9.png\" qualifiers=\"xxxhdpi\" type=\"drawable\"/><file name=\"abc_switch_track_mtrl_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_switch_track_mtrl_alpha.9.png\" qualifiers=\"xxxhdpi\" type=\"drawable\"/><file name=\"abc_tab_indicator_mtrl_alpha\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-xxxhdpi/abc_tab_indicator_mtrl_alpha.9.png\" qualifiers=\"xxxhdpi\" type=\"drawable\"/><file name=\"abc_action_bar_title_item\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_action_bar_title_item.xml\" qualifiers=\"\" type=\"layout\"/><file name=\"abc_action_bar_up_container\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_action_bar_up_container.xml\" qualifiers=\"\" type=\"layout\"/><file name=\"abc_action_bar_view_list_nav_layout\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_action_bar_view_list_nav_layout.xml\" qualifiers=\"\" type=\"layout\"/><file name=\"abc_action_menu_item_layout\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_action_menu_item_layout.xml\" qualifiers=\"\" type=\"layout\"/><file name=\"abc_action_menu_layout\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_action_menu_layout.xml\" qualifiers=\"\" type=\"layout\"/><file name=\"abc_action_mode_bar\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_action_mode_bar.xml\" qualifiers=\"\" type=\"layout\"/><file name=\"abc_action_mode_close_item_material\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_action_mode_close_item_material.xml\" qualifiers=\"\" type=\"layout\"/><file name=\"abc_activity_chooser_view\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_activity_chooser_view.xml\" qualifiers=\"\" type=\"layout\"/><file name=\"abc_activity_chooser_view_list_item\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_activity_chooser_view_list_item.xml\" qualifiers=\"\" type=\"layout\"/><file name=\"abc_alert_dialog_material\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_alert_dialog_material.xml\" qualifiers=\"\" type=\"layout\"/><file name=\"abc_dialog_title_material\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_dialog_title_material.xml\" qualifiers=\"\" type=\"layout\"/><file name=\"abc_expanded_menu_layout\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_expanded_menu_layout.xml\" qualifiers=\"\" type=\"layout\"/><file name=\"abc_list_menu_item_checkbox\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_list_menu_item_checkbox.xml\" qualifiers=\"\" type=\"layout\"/><file name=\"abc_list_menu_item_icon\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_list_menu_item_icon.xml\" qualifiers=\"\" type=\"layout\"/><file name=\"abc_list_menu_item_layout\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_list_menu_item_layout.xml\" qualifiers=\"\" type=\"layout\"/><file name=\"abc_list_menu_item_radio\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_list_menu_item_radio.xml\" qualifiers=\"\" type=\"layout\"/><file name=\"abc_popup_menu_item_layout\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_popup_menu_item_layout.xml\" qualifiers=\"\" type=\"layout\"/><file name=\"abc_screen_content_include\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_screen_content_include.xml\" qualifiers=\"\" type=\"layout\"/><file name=\"abc_screen_simple\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_screen_simple.xml\" qualifiers=\"\" type=\"layout\"/><file name=\"abc_screen_simple_overlay_action_mode\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_screen_simple_overlay_action_mode.xml\" qualifiers=\"\" type=\"layout\"/><file name=\"abc_screen_toolbar\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_screen_toolbar.xml\" qualifiers=\"\" type=\"layout\"/><file name=\"abc_search_dropdown_item_icons_2line\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_search_dropdown_item_icons_2line.xml\" qualifiers=\"\" type=\"layout\"/><file name=\"abc_search_view\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_search_view.xml\" qualifiers=\"\" type=\"layout\"/><file name=\"abc_select_dialog_material\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_select_dialog_material.xml\" qualifiers=\"\" type=\"layout\"/><file name=\"notification_media_action\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/notification_media_action.xml\" qualifiers=\"\" type=\"layout\"/><file name=\"notification_media_cancel_action\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/notification_media_cancel_action.xml\" qualifiers=\"\" type=\"layout\"/><file name=\"notification_template_big_media\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/notification_template_big_media.xml\" qualifiers=\"\" type=\"layout\"/><file name=\"notification_template_big_media_narrow\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/notification_template_big_media_narrow.xml\" qualifiers=\"\" type=\"layout\"/><file name=\"notification_template_lines\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/notification_template_lines.xml\" qualifiers=\"\" type=\"layout\"/><file name=\"notification_template_media\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/notification_template_media.xml\" qualifiers=\"\" type=\"layout\"/><file name=\"notification_template_part_chronometer\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/notification_template_part_chronometer.xml\" qualifiers=\"\" type=\"layout\"/><file name=\"notification_template_part_time\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/notification_template_part_time.xml\" qualifiers=\"\" type=\"layout\"/><file name=\"select_dialog_item_material\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/select_dialog_item_material.xml\" qualifiers=\"\" type=\"layout\"/><file name=\"select_dialog_multichoice_material\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/select_dialog_multichoice_material.xml\" qualifiers=\"\" type=\"layout\"/><file name=\"select_dialog_singlechoice_material\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/select_dialog_singlechoice_material.xml\" qualifiers=\"\" type=\"layout\"/><file name=\"support_simple_spinner_dropdown_item\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/support_simple_spinner_dropdown_item.xml\" qualifiers=\"\" type=\"layout\"/><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml\" qualifiers=\"\"><style name=\"Base.TextAppearance.AppCompat.Small.Inverse\">\n        <item name=\"android:textColor\">?android:attr/textColorTertiaryInverse</item>\n        <item name=\"android:textColorHint\">?android:attr/textColorHintInverse</item>\n    </style><style name=\"RtlOverlay.Widget.AppCompat.DialogTitle.Icon\" parent=\"android:Widget\">\n        <item name=\"android:layout_marginRight\">8dp</item>\n    </style><style name=\"Widget.AppCompat.Light.ActionBar.Solid.Inverse\"/><style name=\"TextAppearance.AppCompat.Widget.ActionMode.Subtitle.Inverse\" parent=\"TextAppearance.AppCompat.Widget.ActionMode.Subtitle\"/><dimen name=\"abc_text_size_title_material_toolbar\">20dp</dimen><dimen name=\"abc_text_size_button_material\">14sp</dimen><bool name=\"abc_config_closeDialogWhenTouchOutside\">true</bool><dimen name=\"abc_action_bar_default_height_material\">56dp</dimen><attr format=\"reference\" name=\"drawerArrowStyle\"/><color name=\"abc_search_url_text_pressed\">@android:color/black</color><declare-styleable name=\"MenuView\"><attr name=\"android:itemTextAppearance\"/><attr name=\"android:horizontalDivider\"/><attr name=\"android:verticalDivider\"/><attr name=\"android:headerBackground\"/><attr name=\"android:itemBackground\"/><attr name=\"android:windowAnimationStyle\"/><attr name=\"android:itemIconDisabledAlpha\"/><attr format=\"boolean\" name=\"preserveIconSpacing\"/></declare-styleable><dimen name=\"abc_button_padding_horizontal_material\">8dp</dimen><style name=\"Base.Widget.AppCompat.CompoundButton.RadioButton\" parent=\"android:Widget.CompoundButton.RadioButton\">\n        <item name=\"android:button\">?android:attr/listChoiceIndicatorSingle</item>\n        <item name=\"android:background\">?attr/controlBackground</item>\n    </style><color name=\"material_blue_grey_900\">#ff263238</color><dimen name=\"abc_control_corner_material\">2dp</dimen><dimen name=\"abc_text_size_subtitle_material_toolbar\">16dp</dimen><style name=\"Base.TextAppearance.AppCompat.Widget.ActionMode.Subtitle\" parent=\"TextAppearance.AppCompat.Widget.ActionBar.Subtitle\"/><style name=\"Widget.AppCompat.Light.ListPopupWindow\" parent=\"Widget.AppCompat.ListPopupWindow\"/><string name=\"abc_activity_chooser_view_see_all\">See all</string><dimen name=\"abc_dialog_list_padding_vertical_material\">8dp</dimen><style name=\"RtlOverlay.Widget.AppCompat.PopupMenuItem.InternalGroup\" parent=\"android:Widget\">\n        <item name=\"android:layout_marginLeft\">16dp</item>\n    </style><style name=\"TextAppearance.Widget.AppCompat.Toolbar.Title\" parent=\"Base.TextAppearance.Widget.AppCompat.Toolbar.Title\">\n    </style><style name=\"Widget.AppCompat.Light.ActionBar\" parent=\"Base.Widget.AppCompat.Light.ActionBar\">\n    </style><style name=\"Theme.AppCompat.DialogWhenLarge\" parent=\"Base.Theme.AppCompat.DialogWhenLarge\">\n    </style><color name=\"secondary_text_default_material_light\">#8a000000</color><style name=\"Widget.AppCompat.DrawerArrowToggle\" parent=\"Base.Widget.AppCompat.DrawerArrowToggle\">\n        <item name=\"color\">?attr/colorControlNormal</item>\n    </style><string name=\"abc_shareactionprovider_share_with_application\">Share with %s</string><style name=\"Base.TextAppearance.AppCompat.Medium.Inverse\">\n        <item name=\"android:textColor\">?android:attr/textColorSecondaryInverse</item>\n        <item name=\"android:textColorHint\">?android:attr/textColorHintInverse</item>\n    </style><dimen name=\"abc_action_button_min_height_material\">48dp</dimen><style name=\"ThemeOverlay.AppCompat.ActionBar\" parent=\"Base.ThemeOverlay.AppCompat.ActionBar\"/><style name=\"TextAppearance.AppCompat.Medium\" parent=\"Base.TextAppearance.AppCompat.Medium\"/><color name=\"ripple_material_light\">#1f000000</color><string name=\"abc_activitychooserview_choose_application\">Choose an app</string><style name=\"Base.TextAppearance.AppCompat.Large.Inverse\">\n        <item name=\"android:textColor\">?android:attr/textColorPrimaryInverse</item>\n        <item name=\"android:textColorHint\">?android:attr/textColorHintInverse</item>\n    </style><integer name=\"status_bar_notification_info_maxnum\">999</integer><style name=\"Theme.AppCompat.Light.DialogWhenLarge\" parent=\"Base.Theme.AppCompat.Light.DialogWhenLarge\">\n    </style><style name=\"TextAppearance.AppCompat.Widget.DropDownItem\" parent=\"Base.TextAppearance.AppCompat.Widget.DropDownItem\">\n    </style><color name=\"secondary_text_disabled_material_dark\">#36ffffff</color><style name=\"Base.Widget.AppCompat.Light.PopupMenu\" parent=\"@style/Widget.AppCompat.ListPopupWindow\">\n    </style><style name=\"Widget.AppCompat.CompoundButton.Switch\" parent=\"Base.Widget.AppCompat.CompoundButton.Switch\"/><style name=\"Theme.AppCompat.Light.Dialog\" parent=\"Base.Theme.AppCompat.Light.Dialog\"/><declare-styleable name=\"MenuItem\"><attr name=\"android:id\"/><attr name=\"android:menuCategory\"/><attr name=\"android:orderInCategory\"/><attr name=\"android:title\"/><attr name=\"android:titleCondensed\"/><attr name=\"android:icon\"/><attr name=\"android:alphabeticShortcut\"/><attr name=\"android:numericShortcut\"/><attr name=\"android:checkable\"/><attr name=\"android:checked\"/><attr name=\"android:visible\"/><attr name=\"android:enabled\"/><attr name=\"android:onClick\"/><attr name=\"showAsAction\"><flag name=\"never\" value=\"0\"/><flag name=\"ifRoom\" value=\"1\"/><flag name=\"always\" value=\"2\"/><flag name=\"withText\" value=\"4\"/><flag name=\"collapseActionView\" value=\"8\"/></attr><attr format=\"reference\" name=\"actionLayout\"/><attr format=\"string\" name=\"actionViewClass\"/><attr format=\"string\" name=\"actionProviderClass\"/></declare-styleable><style name=\"Base.Widget.AppCompat.ListView\" parent=\"android:Widget.ListView\">\n        <item name=\"android:listSelector\">?attr/listChoiceBackgroundIndicator</item>\n    </style><style name=\"TextAppearance.AppCompat.SearchResult.Subtitle\" parent=\"Base.TextAppearance.AppCompat.SearchResult.Subtitle\">\n    </style><style name=\"Widget.AppCompat.Light.ActivityChooserView\" parent=\"Widget.AppCompat.ActivityChooserView\"/><style name=\"RtlOverlay.DialogWindowTitle.AppCompat\" parent=\"Base.DialogWindowTitle.AppCompat\">\n    </style><style name=\"TextAppearance.AppCompat.Light.SearchResult.Title\" parent=\"TextAppearance.AppCompat.SearchResult.Title\"/><style name=\"Base.TextAppearance.AppCompat.Small\">\n        <item name=\"android:textSize\">@dimen/abc_text_size_small_material</item>\n        <item name=\"android:textColor\">?android:attr/textColorTertiary</item>\n    </style><color name=\"material_grey_100\">#fff5f5f5</color><style name=\"Base.TextAppearance.AppCompat.Widget.Button.Inverse\" parent=\"TextAppearance.AppCompat.Button\">\n        <item name=\"android:textColor\">?android:textColorPrimaryInverse</item>\n    </style><style name=\"Widget.AppCompat.Light.SearchView\" parent=\"Widget.AppCompat.SearchView\"/><color name=\"highlighted_text_material_dark\">#6680cbc4</color><style name=\"TextAppearance.AppCompat.Small\" parent=\"Base.TextAppearance.AppCompat.Small\"/><style name=\"Widget.AppCompat.Light.ActionButton\" parent=\"Widget.AppCompat.ActionButton\"/><style name=\"TextAppearance.AppCompat.Widget.Button\" parent=\"Base.TextAppearance.AppCompat.Widget.Button\"/><declare-styleable name=\"ActionBar\"><attr name=\"navigationMode\"><enum name=\"normal\" value=\"0\"/><enum name=\"listMode\" value=\"1\"/><enum name=\"tabMode\" value=\"2\"/></attr><attr name=\"displayOptions\"><flag name=\"none\" value=\"0\"/><flag name=\"useLogo\" value=\"0x1\"/><flag name=\"showHome\" value=\"0x2\"/><flag name=\"homeAsUp\" value=\"0x4\"/><flag name=\"showTitle\" value=\"0x8\"/><flag name=\"showCustom\" value=\"0x10\"/><flag name=\"disableHome\" value=\"0x20\"/></attr><attr name=\"title\"/><attr format=\"string\" name=\"subtitle\"/><attr format=\"reference\" name=\"titleTextStyle\"/><attr format=\"reference\" name=\"subtitleTextStyle\"/><attr format=\"reference\" name=\"icon\"/><attr format=\"reference\" name=\"logo\"/><attr format=\"reference\" name=\"divider\"/><attr format=\"reference\" name=\"background\"/><attr format=\"reference|color\" name=\"backgroundStacked\"/><attr format=\"reference|color\" name=\"backgroundSplit\"/><attr format=\"reference\" name=\"customNavigationLayout\"/><attr name=\"height\"/><attr format=\"reference\" name=\"homeLayout\"/><attr format=\"reference\" name=\"progressBarStyle\"/><attr format=\"reference\" name=\"indeterminateProgressStyle\"/><attr format=\"dimension\" name=\"progressBarPadding\"/><attr name=\"homeAsUpIndicator\"/><attr format=\"dimension\" name=\"itemPadding\"/><attr format=\"boolean\" name=\"hideOnContentScroll\"/><attr format=\"dimension\" name=\"contentInsetStart\"/><attr format=\"dimension\" name=\"contentInsetEnd\"/><attr format=\"dimension\" name=\"contentInsetLeft\"/><attr format=\"dimension\" name=\"contentInsetRight\"/><attr format=\"dimension\" name=\"elevation\"/><attr format=\"reference\" name=\"popupTheme\"/></declare-styleable><item name=\"action_bar_activity_content\" type=\"id\"/><color name=\"button_material_dark\">#ff5a595b</color><style name=\"Base.TextAppearance.AppCompat.Caption\">\n        <item name=\"android:textSize\">@dimen/abc_text_size_caption_material</item>\n        <item name=\"android:textColor\">?android:textColorSecondary</item>\n    </style><style name=\"Base.Widget.AppCompat.Light.ActionBar.Solid\">\n        <item name=\"background\">?attr/colorPrimary</item>\n        <item name=\"backgroundStacked\">?attr/colorPrimary</item>\n        <item name=\"backgroundSplit\">?attr/colorPrimary</item>\n    </style><style name=\"Widget.AppCompat.RatingBar\" parent=\"Base.Widget.AppCompat.RatingBar\"/><style name=\"Widget.AppCompat.ActionMode\" parent=\"Base.Widget.AppCompat.ActionMode\">\n    </style><style name=\"Widget.AppCompat.Toolbar.Button.Navigation\" parent=\"Base.Widget.AppCompat.Toolbar.Button.Navigation\"/><style name=\"Base.Theme.AppCompat.Light\" parent=\"Base.V7.Theme.AppCompat.Light\">\n    </style><style name=\"Base.Widget.AppCompat.Light.PopupMenu.Overflow\">\n        <item name=\"overlapAnchor\">true</item>\n        <item name=\"android:dropDownHorizontalOffset\">-4dip</item>\n    </style><style name=\"Base.TextAppearance.AppCompat.Widget.PopupMenu.Large\" parent=\"TextAppearance.AppCompat.Menu\">\n    </style><style name=\"Widget.AppCompat.ListPopupWindow\" parent=\"Base.Widget.AppCompat.ListPopupWindow\">\n    </style><style name=\"Widget.AppCompat.ListView\" parent=\"Base.Widget.AppCompat.ListView\"/><declare-styleable name=\"ActionMode\"><attr name=\"titleTextStyle\"/><attr name=\"subtitleTextStyle\"/><attr name=\"background\"/><attr name=\"backgroundSplit\"/><attr name=\"height\"/><attr format=\"reference\" name=\"closeItemLayout\"/></declare-styleable><style name=\"TextAppearance.AppCompat.Light.Widget.PopupMenu.Small\" parent=\"Base.TextAppearance.AppCompat.Light.Widget.PopupMenu.Small\">\n    </style><bool name=\"abc_config_allowActionMenuItemTextWithIcon\">false</bool><dimen name=\"abc_button_padding_vertical_material\">@dimen/abc_control_padding_material</dimen><style name=\"ThemeOverlay.AppCompat\" parent=\"Base.ThemeOverlay.AppCompat\"/><bool name=\"abc_action_bar_embed_tabs\">true</bool><style name=\"Base.V7.Theme.AppCompat.Light\" parent=\"Platform.AppCompat.Light\">\n        <item name=\"windowActionBar\">true</item>\n        <item name=\"windowActionBarOverlay\">false</item>\n        <item name=\"actionBarPopupTheme\">@null</item>\n\n        <!-- Used by MediaRouter -->\n        <item name=\"isLightTheme\">true</item>\n\n        <item name=\"selectableItemBackground\">@drawable/abc_item_background_holo_light</item>\n        <item name=\"selectableItemBackgroundBorderless\">?attr/selectableItemBackground</item>\n        <item name=\"borderlessButtonStyle\">@style/Widget.AppCompat.Button.Borderless</item>\n        <item name=\"homeAsUpIndicator\">@drawable/abc_ic_ab_back_mtrl_am_alpha</item>\n\n        <item name=\"dividerVertical\">@drawable/abc_list_divider_mtrl_alpha</item>\n        <item name=\"dividerHorizontal\">@drawable/abc_list_divider_mtrl_alpha</item>\n\n        <!-- Action Bar Styles -->\n        <item name=\"actionBarTabStyle\">@style/Widget.AppCompat.Light.ActionBar.TabView</item>\n        <item name=\"actionBarTabBarStyle\">@style/Widget.AppCompat.Light.ActionBar.TabBar</item>\n        <item name=\"actionBarTabTextStyle\">@style/Widget.AppCompat.Light.ActionBar.TabText</item>\n        <item name=\"actionButtonStyle\">@style/Widget.AppCompat.Light.ActionButton</item>\n        <item name=\"actionOverflowButtonStyle\">@style/Widget.AppCompat.Light.ActionButton.Overflow</item>\n        <item name=\"actionOverflowMenuStyle\">@style/Widget.AppCompat.Light.PopupMenu.Overflow</item>\n        <item name=\"actionBarStyle\">@style/Widget.AppCompat.Light.ActionBar.Solid</item>\n        <item name=\"actionBarSplitStyle\">?attr/actionBarStyle</item>\n        <item name=\"actionBarWidgetTheme\">@null</item>\n        <item name=\"actionBarTheme\">@style/ThemeOverlay.AppCompat.ActionBar</item>\n        <item name=\"actionBarSize\">@dimen/abc_action_bar_default_height_material</item>\n        <item name=\"actionBarDivider\">?attr/dividerVertical</item>\n        <item name=\"actionBarItemBackground\">?attr/selectableItemBackgroundBorderless</item>\n        <item name=\"actionMenuTextAppearance\">@style/TextAppearance.AppCompat.Widget.ActionBar.Menu</item>\n        <item name=\"actionMenuTextColor\">?android:attr/textColorPrimaryDisableOnly</item>\n\n        <!-- Action Mode -->\n        <item name=\"actionModeStyle\">@style/Widget.AppCompat.ActionMode</item>\n        <item name=\"actionModeBackground\">@drawable/abc_cab_background_top_material</item>\n        <item name=\"actionModeSplitBackground\">?attr/colorPrimaryDark</item>\n        <item name=\"actionModeCloseDrawable\">@drawable/abc_ic_ab_back_mtrl_am_alpha</item>\n        <item name=\"actionModeCloseButtonStyle\">@style/Widget.AppCompat.ActionButton.CloseMode</item>\n\n        <item name=\"actionModeCutDrawable\">@drawable/abc_ic_menu_cut_mtrl_alpha</item>\n        <item name=\"actionModeCopyDrawable\">@drawable/abc_ic_menu_copy_mtrl_am_alpha</item>\n        <item name=\"actionModePasteDrawable\">@drawable/abc_ic_menu_paste_mtrl_am_alpha</item>\n        <item name=\"actionModeSelectAllDrawable\">@drawable/abc_ic_menu_selectall_mtrl_alpha</item>\n        <item name=\"actionModeShareDrawable\">@drawable/abc_ic_menu_share_mtrl_alpha</item>\n\n        <!-- Dropdown Spinner Attributes -->\n        <item name=\"actionDropDownStyle\">@style/Widget.AppCompat.Light.Spinner.DropDown.ActionBar</item>\n\n        <!-- Panel attributes -->\n        <item name=\"panelMenuListWidth\">@dimen/abc_panel_menu_list_width</item>\n        <item name=\"panelMenuListTheme\">@style/Theme.AppCompat.CompactMenu</item>\n        <item name=\"panelBackground\">@drawable/abc_menu_hardkey_panel_mtrl_mult</item>\n        <item name=\"android:panelBackground\">@android:color/transparent</item>\n        <item name=\"listChoiceBackgroundIndicator\">@drawable/abc_list_selector_holo_light</item>\n\n        <!-- List attributes -->\n        <item name=\"textAppearanceListItem\">@style/TextAppearance.AppCompat.Subhead</item>\n        <item name=\"textAppearanceListItemSmall\">@style/TextAppearance.AppCompat.Subhead</item>\n        <item name=\"listPreferredItemHeight\">64dp</item>\n        <item name=\"listPreferredItemHeightSmall\">48dp</item>\n        <item name=\"listPreferredItemHeightLarge\">80dp</item>\n        <item name=\"listPreferredItemPaddingLeft\">@dimen/abc_list_item_padding_horizontal_material</item>\n        <item name=\"listPreferredItemPaddingRight\">@dimen/abc_list_item_padding_horizontal_material</item>\n\n        <!-- Spinner styles -->\n        <item name=\"spinnerStyle\">@style/Widget.AppCompat.Spinner</item>\n        <item name=\"android:spinnerItemStyle\">@style/Widget.AppCompat.TextView.SpinnerItem</item>\n        <item name=\"android:dropDownListViewStyle\">@style/Widget.AppCompat.ListView.DropDown</item>\n\n        <!-- Required for use of support_simple_spinner_dropdown_item.xml -->\n        <item name=\"spinnerDropDownItemStyle\">@style/Widget.AppCompat.DropDownItem.Spinner</item>\n        <item name=\"dropdownListPreferredItemHeight\">?attr/listPreferredItemHeightSmall</item>\n\n        <!-- Popup Menu styles -->\n        <item name=\"popupMenuStyle\">@style/Widget.AppCompat.Light.PopupMenu</item>\n        <item name=\"textAppearanceLargePopupMenu\">@style/TextAppearance.AppCompat.Light.Widget.PopupMenu.Large</item>\n        <item name=\"textAppearanceSmallPopupMenu\">@style/TextAppearance.AppCompat.Light.Widget.PopupMenu.Small</item>\n        <item name=\"listPopupWindowStyle\">@style/Widget.AppCompat.ListPopupWindow</item>\n        <item name=\"dropDownListViewStyle\">@style/Widget.AppCompat.ListView.DropDown</item>\n\n        <!-- SearchView attributes -->\n        <item name=\"searchViewStyle\">@style/Widget.AppCompat.Light.SearchView</item>\n        <item name=\"android:dropDownItemStyle\">@style/Widget.AppCompat.DropDownItem.Spinner</item>\n        <item name=\"textColorSearchUrl\">@color/abc_search_url_text</item>\n        <item name=\"textAppearanceSearchResultTitle\">@style/TextAppearance.AppCompat.SearchResult.Title</item>\n        <item name=\"textAppearanceSearchResultSubtitle\">@style/TextAppearance.AppCompat.SearchResult.Subtitle</item>\n\n        <!-- ShareActionProvider attributes -->\n        <item name=\"activityChooserViewStyle\">@style/Widget.AppCompat.ActivityChooserView</item>\n\n        <!-- Toolbar styles -->\n        <item name=\"toolbarStyle\">@style/Widget.AppCompat.Toolbar</item>\n        <item name=\"toolbarNavigationButtonStyle\">@style/Widget.AppCompat.Toolbar.Button.Navigation</item>\n\n        <item name=\"editTextStyle\">@style/Widget.AppCompat.EditText</item>\n        <item name=\"editTextBackground\">@drawable/abc_edit_text_material</item>\n        <item name=\"editTextColor\">?android:attr/textColorPrimary</item>\n        <item name=\"autoCompleteTextViewStyle\">@style/Widget.AppCompat.AutoCompleteTextView</item>\n\n        <!-- Color palette -->\n        <item name=\"colorPrimaryDark\">@color/primary_dark_material_light</item>\n        <item name=\"colorPrimary\">@color/primary_material_light</item>\n        <item name=\"colorAccent\">@color/accent_material_light</item>\n\n        <item name=\"colorControlNormal\">?android:attr/textColorSecondary</item>\n        <item name=\"colorControlActivated\">?attr/colorAccent</item>\n        <item name=\"colorControlHighlight\">@color/ripple_material_light</item>\n        <item name=\"colorButtonNormal\">@color/button_material_light</item>\n        <item name=\"colorSwitchThumbNormal\">@color/switch_thumb_material_light</item>\n        <item name=\"controlBackground\">?attr/selectableItemBackgroundBorderless</item>\n\n        <item name=\"drawerArrowStyle\">@style/Widget.AppCompat.DrawerArrowToggle</item>\n\n        <item name=\"checkboxStyle\">@style/Widget.AppCompat.CompoundButton.CheckBox</item>\n        <item name=\"radioButtonStyle\">@style/Widget.AppCompat.CompoundButton.RadioButton</item>\n        <item name=\"switchStyle\">@style/Widget.AppCompat.CompoundButton.Switch</item>\n\n        <item name=\"ratingBarStyle\">@style/Widget.AppCompat.RatingBar</item>\n\n        <!-- Button styles -->\n        <item name=\"buttonStyle\">@style/Widget.AppCompat.Button</item>\n        <item name=\"buttonStyleSmall\">@style/Widget.AppCompat.Button.Small</item>\n        <item name=\"android:textAppearanceButton\">@style/TextAppearance.AppCompat.Widget.Button</item>\n\n        <item name=\"buttonBarStyle\">@style/Widget.AppCompat.ButtonBar</item>\n        <item name=\"buttonBarButtonStyle\">@style/Widget.AppCompat.Button.ButtonBar.AlertDialog</item>\n        <item name=\"buttonBarPositiveButtonStyle\">?attr/buttonBarButtonStyle</item>\n        <item name=\"buttonBarNegativeButtonStyle\">?attr/buttonBarButtonStyle</item>\n        <item name=\"buttonBarNeutralButtonStyle\">?attr/buttonBarButtonStyle</item>\n\n        <!-- Dialog attributes -->\n        <item name=\"dialogTheme\">@style/Theme.AppCompat.Light.Dialog</item>\n        <item name=\"dialogPreferredPadding\">@dimen/abc_dialog_padding_material</item>\n\n        <item name=\"alertDialogTheme\">@style/Theme.AppCompat.Light.Dialog.Alert</item>\n        <item name=\"alertDialogStyle\">@style/AlertDialog.AppCompat.Light</item>\n        <item name=\"alertDialogCenterButtons\">false</item>\n        <item name=\"textColorAlertDialogListItem\">@color/abc_primary_text_material_light</item>\n        <item name=\"listDividerAlertDialog\">@null</item>\n\n        <!-- Define these here; ContextThemeWrappers around themes that define them should\n             always clear these values. -->\n        <item name=\"windowFixedWidthMajor\">0dp</item>\n        <item name=\"windowFixedWidthMinor\">0dp</item>\n        <item name=\"windowFixedHeightMajor\">0dp</item>\n        <item name=\"windowFixedHeightMinor\">0dp</item>\n    </style><declare-styleable name=\"ActionMenuItemView\"><attr name=\"android:minWidth\"/></declare-styleable><color name=\"bright_foreground_material_light\">@android:color/black</color><style name=\"Base.Widget.AppCompat.ActionBar\" parent=\"\">\n        <item name=\"displayOptions\">showTitle</item>\n        <item name=\"divider\">?attr/dividerVertical</item>\n        <item name=\"height\">?attr/actionBarSize</item>\n\n        <item name=\"titleTextStyle\">@style/TextAppearance.AppCompat.Widget.ActionBar.Title</item>\n        <item name=\"subtitleTextStyle\">@style/TextAppearance.AppCompat.Widget.ActionBar.Subtitle</item>\n\n        <item name=\"background\">@null</item>\n        <item name=\"backgroundStacked\">@null</item>\n        <item name=\"backgroundSplit\">@null</item>\n\n        <item name=\"actionButtonStyle\">@style/Widget.AppCompat.ActionButton</item>\n        <item name=\"actionOverflowButtonStyle\">@style/Widget.AppCompat.ActionButton.Overflow</item>\n\n        <item name=\"android:gravity\">center_vertical</item>\n        <item name=\"contentInsetStart\">@dimen/abc_action_bar_content_inset_material</item>\n        <item name=\"contentInsetEnd\">@dimen/abc_action_bar_content_inset_material</item>\n        <item name=\"elevation\">8dp</item>\n        <item name=\"popupTheme\">?attr/actionBarPopupTheme</item>\n    </style><color name=\"bright_foreground_disabled_material_dark\">#80ffffff</color><bool name=\"abc_action_bar_embed_tabs_pre_jb\">false</bool><color name=\"foreground_material_dark\">@android:color/white</color><dimen name=\"abc_action_bar_overflow_padding_end_material\">10dp</dimen><style name=\"Base.Theme.AppCompat.Light.Dialog\" parent=\"Base.V7.Theme.AppCompat.Light.Dialog\"/><style name=\"Base.Widget.AppCompat.DrawerArrowToggle\" parent=\"Base.Widget.AppCompat.DrawerArrowToggle.Common\">\n        <item name=\"barLength\">18dp</item>\n        <item name=\"gapBetweenBars\">3dp</item>\n        <item name=\"drawableSize\">24dp</item>\n    </style><string name=\"abc_action_mode_done\">Done</string><style name=\"Base.Widget.AppCompat.Spinner.Underlined\">\n        <item name=\"android:background\">@drawable/abc_spinner_textfield_background_material</item>\n    </style><style name=\"TextAppearance.AppCompat.Widget.TextView.SpinnerItem\" parent=\"Base.TextAppearance.AppCompat.Widget.TextView.SpinnerItem\"/><style name=\"Widget.AppCompat.PopupMenu\" parent=\"Base.Widget.AppCompat.PopupMenu\">\n    </style><color name=\"primary_text_default_material_dark\">#ffffffff</color><style name=\"TextAppearance.AppCompat.Light.Widget.PopupMenu.Large\" parent=\"Base.TextAppearance.AppCompat.Light.Widget.PopupMenu.Large\">\n    </style><style name=\"Base.Theme.AppCompat.Light.Dialog.MinWidth\">\n        <item name=\"windowMinWidthMajor\">@dimen/abc_dialog_min_width_major</item>\n        <item name=\"windowMinWidthMinor\">@dimen/abc_dialog_min_width_minor</item>\n    </style><color name=\"material_grey_300\">#ffe0e0e0</color><dimen name=\"abc_action_bar_default_padding_start_material\">0dp</dimen><item name=\"dialog_fixed_width_minor\" type=\"dimen\">320dp</item><dimen name=\"abc_edit_text_inset_horizontal_material\">4dp</dimen><style name=\"Widget.AppCompat.Button.Small\" parent=\"Base.Widget.AppCompat.Button.Small\"/><style name=\"Widget.AppCompat.PopupWindow\" parent=\"Base.Widget.AppCompat.PopupWindow\">\n    </style><style name=\"Base.Widget.AppCompat.SearchView\" parent=\"android:Widget\">\n        <item name=\"layout\">@layout/abc_search_view</item>\n        <item name=\"queryBackground\">@drawable/abc_textfield_search_material</item>\n        <item name=\"submitBackground\">@drawable/abc_textfield_search_material</item>\n        <item name=\"closeIcon\">@drawable/abc_ic_clear_mtrl_alpha</item>\n        <item name=\"searchIcon\">@drawable/abc_ic_search_api_mtrl_alpha</item>\n        <item name=\"searchHintIcon\">@drawable/abc_ic_search_api_mtrl_alpha</item>\n        <item name=\"goIcon\">@drawable/abc_ic_go_search_api_mtrl_alpha</item>\n        <item name=\"voiceIcon\">@drawable/abc_ic_voice_search_api_mtrl_alpha</item>\n        <item name=\"commitIcon\">@drawable/abc_ic_commit_search_api_mtrl_alpha</item>\n        <item name=\"suggestionRowLayout\">@layout/abc_search_dropdown_item_icons_2line</item>\n    </style><declare-styleable name=\"DrawerArrowToggle\"><attr format=\"color\" name=\"color\"/><attr format=\"boolean\" name=\"spinBars\"/><attr format=\"dimension\" name=\"drawableSize\"/><attr format=\"dimension\" name=\"gapBetweenBars\"/><attr format=\"dimension\" name=\"arrowHeadLength\"/><attr format=\"dimension\" name=\"arrowShaftLength\"/><attr format=\"dimension\" name=\"barLength\"/><attr format=\"dimension\" name=\"thickness\"/></declare-styleable><style name=\"Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle.Inverse\" parent=\"TextAppearance.AppCompat.Subhead.Inverse\">\n        <item name=\"android:textSize\">@dimen/abc_text_size_subtitle_material_toolbar</item>\n        <item name=\"android:textColor\">?android:attr/textColorSecondaryInverse</item>\n    </style><style name=\"Base.TextAppearance.AppCompat.Widget.TextView.SpinnerItem\" parent=\"TextAppearance.AppCompat.Menu\"/><style name=\"TextAppearance.AppCompat.Widget.ActionBar.Title.Inverse\" parent=\"Base.TextAppearance.AppCompat.Widget.ActionBar.Title.Inverse\">\n    </style><style name=\"ThemeOverlay.AppCompat.Light\" parent=\"Base.ThemeOverlay.AppCompat.Light\"/><style name=\"RtlOverlay.Widget.AppCompat.Search.DropDown.Icon2\" parent=\"android:Widget\">\n        <item name=\"android:layout_toLeftOf\">@id/edit_query</item>\n    </style><style name=\"RtlOverlay.Widget.AppCompat.Search.DropDown.Icon1\" parent=\"android:Widget\">\n        <item name=\"android:layout_alignParentLeft\">true</item>\n    </style><style name=\"Widget.AppCompat.Spinner.DropDown\"/><style name=\"TextAppearance.StatusBar.EventContent.Time\" parent=\"\"/><style name=\"Theme.AppCompat.Light.Dialog.MinWidth\" parent=\"Base.Theme.AppCompat.Light.Dialog.MinWidth\"/><declare-styleable name=\"Toolbar\"><attr format=\"reference\" name=\"titleTextAppearance\"/><attr format=\"reference\" name=\"subtitleTextAppearance\"/><attr name=\"title\"/><attr name=\"subtitle\"/><attr name=\"android:gravity\"/><attr format=\"dimension\" name=\"titleMargins\"/><attr format=\"dimension\" name=\"titleMarginStart\"/><attr format=\"dimension\" name=\"titleMarginEnd\"/><attr format=\"dimension\" name=\"titleMarginTop\"/><attr format=\"dimension\" name=\"titleMarginBottom\"/><attr name=\"contentInsetStart\"/><attr name=\"contentInsetEnd\"/><attr name=\"contentInsetLeft\"/><attr name=\"contentInsetRight\"/><attr format=\"dimension\" name=\"maxButtonHeight\"/><attr format=\"reference\" name=\"collapseIcon\"/><attr format=\"string\" name=\"collapseContentDescription\"/><attr name=\"popupTheme\"/><attr format=\"reference\" name=\"navigationIcon\"/><attr format=\"string\" name=\"navigationContentDescription\"/><attr name=\"android:minHeight\"/><attr name=\"logo\"/><attr format=\"string\" name=\"logoDescription\"/><attr format=\"color\" name=\"titleTextColor\"/><attr format=\"color\" name=\"subtitleTextColor\"/></declare-styleable><style name=\"Widget.AppCompat.ListView.DropDown\" parent=\"Base.Widget.AppCompat.ListView.DropDown\"/><integer name=\"abc_max_action_buttons\">2</integer><style name=\"Base.TextAppearance.AppCompat.Inverse\">\n        <item name=\"android:textColor\">?android:attr/textColorPrimaryInverse</item>\n        <item name=\"android:textColorHint\">?android:attr/textColorHintInverse</item>\n    </style><style name=\"Widget.AppCompat.Light.DropDownItem.Spinner\" parent=\"Widget.AppCompat.DropDownItem.Spinner\"/><dimen name=\"abc_dropdownitem_text_padding_left\">8dip</dimen><string name=\"abc_searchview_description_search\">Search</string><color name=\"switch_thumb_disabled_material_dark\">#ff616161</color><style name=\"RtlOverlay.Widget.AppCompat.PopupMenuItem\" parent=\"android:Widget\">\n        <item name=\"android:paddingRight\">16dp</item>\n    </style><item name=\"progress_horizontal\" type=\"id\"/><color name=\"primary_text_disabled_material_light\">#39000000</color><dimen name=\"notification_large_icon_height\">64dp</dimen><style name=\"Base.Widget.AppCompat.PopupMenu\" parent=\"@style/Widget.AppCompat.ListPopupWindow\">\n    </style><style name=\"Base.AlertDialog.AppCompat.Light\" parent=\"Base.AlertDialog.AppCompat\"/><declare-styleable name=\"ActionBarLayout\"><attr name=\"android:layout_gravity\"/></declare-styleable><style name=\"Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle\" parent=\"TextAppearance.AppCompat.Subhead\">\n        <item name=\"android:textSize\">@dimen/abc_text_size_subtitle_material_toolbar</item>\n        <item name=\"android:textColor\">?android:attr/textColorSecondary</item>\n    </style><style name=\"Widget.AppCompat.ListView.Menu\" parent=\"Base.Widget.AppCompat.ListView.Menu\">\n    </style><style name=\"Base.Theme.AppCompat.Dialog.MinWidth\">\n        <item name=\"windowMinWidthMajor\">@dimen/abc_dialog_min_width_major</item>\n        <item name=\"windowMinWidthMinor\">@dimen/abc_dialog_min_width_minor</item>\n    </style><style name=\"Base.ThemeOverlay.AppCompat.Dark.ActionBar\">\n        <item name=\"colorControlNormal\">?android:attr/textColorPrimary</item>\n        <item name=\"searchViewStyle\">@style/Widget.AppCompat.SearchView.ActionBar</item>\n    </style><style name=\"TextAppearance.Widget.AppCompat.Toolbar.Subtitle\" parent=\"Base.TextAppearance.Widget.AppCompat.Toolbar.Subtitle\">\n    </style><style name=\"Widget.AppCompat.Light.PopupMenu.Overflow\" parent=\"Base.Widget.AppCompat.Light.PopupMenu.Overflow\">\n    </style><color name=\"bright_foreground_material_dark\">@android:color/white</color><style name=\"TextAppearance.AppCompat.Subhead.Inverse\" parent=\"Base.TextAppearance.AppCompat.Subhead.Inverse\"/><dimen name=\"abc_edit_text_inset_bottom_material\">7dp</dimen><style name=\"Base.Widget.AppCompat.RatingBar\" parent=\"android:Widget.RatingBar\">\n        <item name=\"android:progressDrawable\">@drawable/abc_ratingbar_full_material</item>\n        <item name=\"android:indeterminateDrawable\">@drawable/abc_ratingbar_full_material</item>\n    </style><dimen name=\"notification_large_icon_width\">64dp</dimen><style name=\"Widget.AppCompat.ActionBar\" parent=\"Base.Widget.AppCompat.ActionBar\">\n    </style><item format=\"float\" name=\"disabled_alpha_material_light\" type=\"dimen\">0.26</item><style name=\"Base.TextAppearance.AppCompat.Widget.Switch\" parent=\"TextAppearance.AppCompat.Button\"/><declare-styleable name=\"MenuGroup\"><attr name=\"android:id\"/><attr name=\"android:menuCategory\"/><attr name=\"android:orderInCategory\"/><attr name=\"android:checkableBehavior\"/><attr name=\"android:visible\"/><attr name=\"android:enabled\"/></declare-styleable><declare-styleable name=\"TextAppearance\"><attr name=\"android:textSize\"/><attr name=\"android:textColor\"/><attr name=\"android:textStyle\"/><attr name=\"android:typeface\"/><attr name=\"textAllCaps\"/></declare-styleable><style name=\"Base.Widget.AppCompat.Light.ActionBar.TabText\" parent=\"Base.Widget.AppCompat.ActionBar.TabText\">\n    </style><style name=\"Widget.AppCompat.Spinner.Underlined\" parent=\"Base.Widget.AppCompat.Spinner.Underlined\"/><style name=\"TextAppearance.AppCompat.Title.Inverse\" parent=\"Base.TextAppearance.AppCompat.Title.Inverse\"/><color name=\"highlighted_text_material_light\">#66009688</color><style name=\"Base.TextAppearance.AppCompat.Display2\">\n        <item name=\"android:textSize\">@dimen/abc_text_size_display_2_material</item>\n        <item name=\"android:textColor\">?android:textColorSecondary</item>\n    </style><style name=\"Base.ThemeOverlay.AppCompat\" parent=\"Platform.ThemeOverlay.AppCompat\"/><style name=\"Base.TextAppearance.AppCompat.Display1\">\n        <item name=\"android:textSize\">@dimen/abc_text_size_display_1_material</item>\n        <item name=\"android:textColor\">?android:textColorSecondary</item>\n    </style><style name=\"Base.TextAppearance.AppCompat.Display4\">\n        <item name=\"android:textSize\">@dimen/abc_text_size_display_4_material</item>\n        <item name=\"android:textColor\">?android:textColorSecondary</item>\n    </style><color name=\"primary_text_default_material_light\">#de000000</color><style name=\"Base.TextAppearance.AppCompat.Display3\">\n        <item name=\"android:textSize\">@dimen/abc_text_size_display_3_material</item>\n        <item name=\"android:textColor\">?android:textColorSecondary</item>\n    </style><declare-styleable name=\"SearchView\"><attr format=\"reference\" name=\"layout\"/><attr format=\"boolean\" name=\"iconifiedByDefault\"/><attr name=\"android:maxWidth\"/><attr format=\"string\" name=\"queryHint\"/><attr format=\"string\" name=\"defaultQueryHint\"/><attr name=\"android:imeOptions\"/><attr name=\"android:inputType\"/><attr format=\"reference\" name=\"closeIcon\"/><attr format=\"reference\" name=\"goIcon\"/><attr format=\"reference\" name=\"searchIcon\"/><attr format=\"reference\" name=\"searchHintIcon\"/><attr format=\"reference\" name=\"voiceIcon\"/><attr format=\"reference\" name=\"commitIcon\"/><attr format=\"reference\" name=\"suggestionRowLayout\"/><attr format=\"reference\" name=\"queryBackground\"/><attr format=\"reference\" name=\"submitBackground\"/><attr name=\"android:focusable\"/></declare-styleable><item name=\"action_bar_spinner\" type=\"id\"/><dimen name=\"abc_text_size_caption_material\">12sp</dimen><style name=\"Widget.AppCompat.ActionBar.TabBar\" parent=\"Base.Widget.AppCompat.ActionBar.TabBar\">\n    </style><color name=\"accent_material_dark\">@color/material_deep_teal_200</color><dimen name=\"abc_action_button_min_width_material\">48dp</dimen><declare-styleable name=\"ViewBackgroundHelper\"><attr name=\"android:background\"/><attr format=\"color\" name=\"backgroundTint\"/><attr name=\"backgroundTintMode\"><enum name=\"src_over\" value=\"3\"/><enum name=\"src_in\" value=\"5\"/><enum name=\"src_atop\" value=\"9\"/><enum name=\"multiply\" value=\"14\"/><enum name=\"screen\" value=\"15\"/></attr></declare-styleable><style name=\"TextAppearance.AppCompat.Large\" parent=\"Base.TextAppearance.AppCompat.Large\"/><style name=\"Widget.AppCompat.DropDownItem.Spinner\" parent=\"RtlOverlay.Widget.AppCompat.Search.DropDown.Text\"/><declare-styleable name=\"LinearLayoutCompat\"><attr name=\"android:orientation\"/><attr name=\"android:gravity\"/><attr name=\"android:baselineAligned\"/><attr name=\"android:baselineAlignedChildIndex\"/><attr name=\"android:weightSum\"/><attr format=\"boolean\" name=\"measureWithLargestChild\"/><attr name=\"divider\"/><attr name=\"showDividers\"><flag name=\"none\" value=\"0\"/><flag name=\"beginning\" value=\"1\"/><flag name=\"middle\" value=\"2\"/><flag name=\"end\" value=\"4\"/></attr><attr format=\"dimension\" name=\"dividerPadding\"/></declare-styleable><style name=\"TextAppearance.AppCompat.Small.Inverse\" parent=\"Base.TextAppearance.AppCompat.Small.Inverse\"/><style name=\"Base.Widget.AppCompat.ActionBar.Solid\">\n        <item name=\"background\">?attr/colorPrimary</item>\n        <item name=\"backgroundStacked\">?attr/colorPrimary</item>\n        <item name=\"backgroundSplit\">?attr/colorPrimary</item>\n    </style><style name=\"TextAppearance.StatusBar.EventContent\" parent=\"\"/><style name=\"Base.TextAppearance.AppCompat.Body2\">\n        <item name=\"android:textSize\">@dimen/abc_text_size_body_2_material</item>\n        <item name=\"android:textColor\">?android:textColorPrimary</item>\n    </style><style name=\"Base.TextAppearance.AppCompat.Body1\">\n        <item name=\"android:textSize\">@dimen/abc_text_size_body_1_material</item>\n        <item name=\"android:textColor\">?android:textColorPrimary</item>\n    </style><style name=\"Widget.AppCompat.ActivityChooserView\" parent=\"Base.Widget.AppCompat.ActivityChooserView\">\n    </style><style name=\"TextAppearance.AppCompat.Menu\" parent=\"Base.TextAppearance.AppCompat.Menu\"/><style name=\"Theme.AppCompat.Light\" parent=\"Base.Theme.AppCompat.Light\"/><color name=\"material_deep_teal_200\">#ff80cbc4</color><style name=\"Base.DialogWindowTitle.AppCompat\" parent=\"android:Widget\">\n        <item name=\"android:maxLines\">1</item>\n        <item name=\"android:scrollHorizontally\">true</item>\n        <item name=\"android:textAppearance\">@style/TextAppearance.AppCompat.Title</item>\n    </style><dimen name=\"abc_action_button_min_width_overflow_material\">36dp</dimen><style name=\"Widget.AppCompat.Light.ActionBar.TabView\" parent=\"Base.Widget.AppCompat.Light.ActionBar.TabView\">\n    </style><style name=\"Base.Widget.AppCompat.ActionBar.TabBar\" parent=\"\">\n        <item name=\"divider\">?attr/actionBarDivider</item>\n        <item name=\"showDividers\">middle</item>\n        <item name=\"dividerPadding\">8dip</item>\n    </style><style name=\"TextAppearance.AppCompat.Inverse\" parent=\"Base.TextAppearance.AppCompat.Inverse\"/><style name=\"Theme.AppCompat.Dialog.MinWidth\" parent=\"Base.Theme.AppCompat.Dialog.MinWidth\"/><style name=\"Widget.AppCompat.CompoundButton.CheckBox\" parent=\"Base.Widget.AppCompat.CompoundButton.CheckBox\"/><style name=\"Base.Widget.AppCompat.ActivityChooserView\" parent=\"\">\n        <item name=\"android:gravity\">center</item>\n        <item name=\"android:background\">@drawable/abc_ab_share_pack_mtrl_alpha</item>\n        <item name=\"divider\">?attr/dividerVertical</item>\n        <item name=\"showDividers\">middle</item>\n        <item name=\"dividerPadding\">6dip</item>\n    </style><string name=\"abc_searchview_description_submit\">Submit query</string><dimen name=\"abc_search_view_preferred_width\">320dip</dimen><item name=\"action_menu_divider\" type=\"id\"/><style name=\"Base.TextAppearance.AppCompat.Widget.ActionBar.Menu\" parent=\"TextAppearance.AppCompat.Menu\">\n        <item name=\"android:textColor\">?attr/actionMenuTextColor</item>\n        <item name=\"textAllCaps\">@bool/abc_config_actionMenuItemAllCaps</item>\n    </style><dimen name=\"abc_text_size_body_1_material\">14sp</dimen><style name=\"TextAppearance.AppCompat.SearchResult.Title\" parent=\"Base.TextAppearance.AppCompat.SearchResult.Title\">\n    </style><color name=\"hint_foreground_material_light\">@color/bright_foreground_disabled_material_light</color><declare-styleable name=\"SwitchCompat\"><attr name=\"android:thumb\"/><attr format=\"reference\" name=\"track\"/><attr name=\"android:textOn\"/><attr name=\"android:textOff\"/><attr format=\"dimension\" name=\"thumbTextPadding\"/><attr format=\"reference\" name=\"switchTextAppearance\"/><attr format=\"dimension\" name=\"switchMinWidth\"/><attr format=\"dimension\" name=\"switchPadding\"/><attr format=\"boolean\" name=\"splitTrack\"/><attr format=\"boolean\" name=\"showText\"/></declare-styleable><style name=\"Theme.AppCompat.Dialog.Alert\" parent=\"Base.Theme.AppCompat.Dialog.Alert\"/><style name=\"Widget.AppCompat.ActionBar.Solid\" parent=\"Base.Widget.AppCompat.ActionBar.Solid\">\n    </style><style name=\"Animation.AppCompat.DropDownUp\" parent=\"Base.Animation.AppCompat.DropDownUp\"/><style name=\"Widget.AppCompat.ActionBar.TabText\" parent=\"Base.Widget.AppCompat.ActionBar.TabText\">\n    </style><item format=\"float\" name=\"highlight_alpha_material_dark\" type=\"dimen\">0.20</item><style name=\"Base.Widget.AppCompat.ActionMode\" parent=\"\">\n        <item name=\"background\">?attr/actionModeBackground</item>\n        <item name=\"backgroundSplit\">?attr/actionModeSplitBackground</item>\n        <item name=\"height\">?attr/actionBarSize</item>\n        <item name=\"titleTextStyle\">@style/TextAppearance.AppCompat.Widget.ActionMode.Title</item>\n        <item name=\"subtitleTextStyle\">@style/TextAppearance.AppCompat.Widget.ActionMode.Subtitle</item>\n        <item name=\"closeItemLayout\">@layout/abc_action_mode_close_item_material</item>\n    </style><style name=\"Platform.Widget.AppCompat.Spinner\" parent=\"android:Widget.Spinner\"/><style name=\"TextAppearance.AppCompat.Subhead\" parent=\"Base.TextAppearance.AppCompat.Subhead\"/><style name=\"Widget.AppCompat.Light.Spinner.DropDown.ActionBar\" parent=\"Widget.AppCompat.Spinner.DropDown.ActionBar\"/><attr format=\"dimension\" name=\"height\"/><style name=\"Widget.AppCompat.ActionButton.Overflow\" parent=\"RtlOverlay.Widget.AppCompat.ActionButton.Overflow\"/><color name=\"background_material_light\">@color/material_grey_50</color><dimen name=\"abc_alert_dialog_button_bar_height\">48dp</dimen><style name=\"ThemeOverlay.AppCompat.Dark.ActionBar\" parent=\"Base.ThemeOverlay.AppCompat.Dark.ActionBar\"/><style name=\"Base.AlertDialog.AppCompat\" parent=\"android:Widget\">\n        <item name=\"android:layout\">@layout/abc_alert_dialog_material</item>\n        <item name=\"listLayout\">@layout/abc_select_dialog_material</item>\n        <item name=\"listItemLayout\">@layout/select_dialog_item_material</item>\n        <item name=\"multiChoiceItemLayout\">@layout/select_dialog_multichoice_material</item>\n        <item name=\"singleChoiceItemLayout\">@layout/select_dialog_singlechoice_material</item>\n    </style><style name=\"Widget.AppCompat.Toolbar\" parent=\"Base.Widget.AppCompat.Toolbar\"/><color name=\"primary_dark_material_dark\">@android:color/black</color><style name=\"TextAppearance.AppCompat.Widget.PopupMenu.Large\" parent=\"Base.TextAppearance.AppCompat.Widget.PopupMenu.Large\">\n    </style><dimen name=\"abc_text_size_display_3_material\">56sp</dimen><dimen name=\"abc_text_size_small_material\">14sp</dimen><item name=\"abc_dialog_min_width_minor\" type=\"dimen\">95%</item><style name=\"Base.TextAppearance.AppCompat\" parent=\"android:TextAppearance\">\n        <item name=\"android:textColor\">?android:textColorPrimary</item>\n        <item name=\"android:textColorHint\">?android:textColorHint</item>\n        <item name=\"android:textColorHighlight\">?android:textColorHighlight</item>\n        <item name=\"android:textColorLink\">?android:textColorLink</item>\n        <item name=\"android:textSize\">@dimen/abc_text_size_body_1_material</item>\n    </style><dimen name=\"abc_text_size_menu_material\">16sp</dimen><style name=\"Base.Widget.AppCompat.ActionButton\" parent=\"\">\n        <item name=\"android:background\">?attr/actionBarItemBackground</item>\n        <item name=\"android:paddingLeft\">12dip</item>\n        <item name=\"android:paddingRight\">12dip</item>\n        <item name=\"android:minWidth\">@dimen/abc_action_button_min_width_material</item>\n        <item name=\"android:minHeight\">@dimen/abc_action_button_min_height_material</item>\n        <item name=\"android:scaleType\">center</item>\n        <item name=\"android:gravity\">center</item>\n        <item name=\"android:maxLines\">2</item>\n        <item name=\"textAllCaps\">@bool/abc_config_actionMenuItemAllCaps</item>\n    </style><style name=\"Base.Widget.AppCompat.EditText\" parent=\"Base.V7.Widget.AppCompat.EditText\"/><style name=\"Base.Widget.AppCompat.ButtonBar.AlertDialog\"/><string name=\"status_bar_notification_info_overflow\">999+</string><string name=\"abc_toolbar_collapse_description\">Collapse</string><style name=\"Base.Widget.AppCompat.Toolbar.Button.Navigation\" parent=\"android:Widget\">\n        <item name=\"android:background\">?attr/controlBackground</item>\n        <item name=\"android:minWidth\">56dp</item>\n        <item name=\"android:scaleType\">center</item>\n    </style><style name=\"Base.Widget.AppCompat.Spinner\" parent=\"Platform.Widget.AppCompat.Spinner\">\n        <item name=\"android:background\">@drawable/abc_spinner_mtrl_am_alpha</item>\n        <item name=\"android:popupBackground\">@drawable/abc_popup_background_mtrl_mult</item>\n        <item name=\"android:dropDownSelector\">?attr/listChoiceBackgroundIndicator</item>\n        <item name=\"android:dropDownVerticalOffset\">0dip</item>\n        <item name=\"android:dropDownHorizontalOffset\">0dip</item>\n        <item name=\"android:dropDownWidth\">wrap_content</item>\n        <item name=\"android:clickable\">true</item>\n        <item name=\"android:gravity\">left|start|center_vertical</item>\n        <item name=\"overlapAnchor\">true</item>\n    </style><item name=\"progress_circular\" type=\"id\"/><style name=\"Widget.AppCompat.Button.Colored\" parent=\"Base.Widget.AppCompat.Button.Colored\"/><style name=\"Widget.AppCompat.CompoundButton.RadioButton\" parent=\"Base.Widget.AppCompat.CompoundButton.RadioButton\"/><color name=\"button_material_light\">#ffd6d7d7</color><style name=\"Widget.AppCompat.ActionButton\" parent=\"Base.Widget.AppCompat.ActionButton\"/><style name=\"Base.TextAppearance.AppCompat.Medium\">\n        <item name=\"android:textSize\">@dimen/abc_text_size_medium_material</item>\n        <item name=\"android:textColor\">?android:attr/textColorSecondary</item>\n    </style><dimen name=\"abc_action_bar_subtitle_top_margin_material\">-3dp</dimen><string name=\"abc_action_bar_home_subtitle_description_format\">%1$s, %2$s, %3$s</string><style name=\"Base.V7.Widget.AppCompat.EditText\" parent=\"android:Widget.EditText\">\n        <item name=\"android:background\">?attr/editTextBackground</item>\n        <item name=\"android:textColor\">?attr/editTextColor</item>\n        <item name=\"android:textAppearance\">?android:attr/textAppearanceMediumInverse</item>\n    </style><style name=\"Base.Widget.AppCompat.Button\" parent=\"android:Widget\">\n        <item name=\"android:background\">@drawable/abc_btn_default_mtrl_shape</item>\n        <item name=\"android:textAppearance\">?android:attr/textAppearanceButton</item>\n        <item name=\"android:minHeight\">48dip</item>\n        <item name=\"android:minWidth\">88dip</item>\n        <item name=\"android:focusable\">true</item>\n        <item name=\"android:clickable\">true</item>\n        <item name=\"android:gravity\">center_vertical|center_horizontal</item>\n    </style><dimen name=\"abc_dropdownitem_text_padding_right\">8dip</dimen><color name=\"material_grey_50\">#fffafafa</color><item format=\"float\" name=\"disabled_alpha_material_dark\" type=\"dimen\">0.30</item><item name=\"dialog_fixed_height_major\" type=\"dimen\">80%</item><dimen name=\"abc_control_padding_material\">4dp</dimen><item name=\"up\" type=\"id\"/><style name=\"Base.TextAppearance.AppCompat.Light.Widget.PopupMenu.Large\" parent=\"TextAppearance.AppCompat.Menu\">\n    </style><style name=\"Base.TextAppearance.Widget.AppCompat.Toolbar.Subtitle\" parent=\"TextAppearance.AppCompat.Widget.ActionBar.Subtitle\">\n    </style><color name=\"abc_search_url_text_normal\">#7fa87f</color><item format=\"float\" name=\"highlight_alpha_material_light\" type=\"dimen\">0.12</item><style name=\"Widget.AppCompat.Light.ActionMode.Inverse\" parent=\"Widget.AppCompat.ActionMode\"/><style name=\"Widget.AppCompat.EditText\" parent=\"Base.Widget.AppCompat.EditText\"/><color name=\"background_material_dark\">@color/material_grey_850</color><style name=\"Base.TextAppearance.AppCompat.Subhead\">\n        <item name=\"android:textSize\">@dimen/abc_text_size_subhead_material</item>\n        <item name=\"android:textColor\">?android:textColorPrimary</item>\n    </style><dimen name=\"abc_action_bar_subtitle_bottom_margin_material\">5dp</dimen><style name=\"Base.Theme.AppCompat.Light.DarkActionBar\" parent=\"Base.Theme.AppCompat.Light\">\n        <item name=\"actionBarPopupTheme\">@style/ThemeOverlay.AppCompat.Light</item>\n        <item name=\"actionBarWidgetTheme\">@null</item>\n        <item name=\"actionBarTheme\">@style/ThemeOverlay.AppCompat.Dark.ActionBar</item>\n\n        <!-- Panel attributes -->\n        <item name=\"listChoiceBackgroundIndicator\">@drawable/abc_list_selector_holo_dark</item>\n\n        <item name=\"colorPrimaryDark\">@color/primary_dark_material_dark</item>\n        <item name=\"colorPrimary\">@color/primary_material_dark</item>\n    </style><style name=\"Animation.AppCompat.Dialog\" parent=\"Base.Animation.AppCompat.Dialog\"/><style name=\"TextAppearance.AppCompat.Caption\" parent=\"Base.TextAppearance.AppCompat.Caption\"/><color name=\"foreground_material_light\">@android:color/black</color><style name=\"Widget.AppCompat.Light.ActionBar.TabText.Inverse\" parent=\"Base.Widget.AppCompat.Light.ActionBar.TabText.Inverse\">\n    </style><style name=\"Base.ThemeOverlay.AppCompat.Dark\" parent=\"Platform.ThemeOverlay.AppCompat.Dark\">\n        <item name=\"android:windowBackground\">@color/background_material_dark</item>\n        <item name=\"android:colorForeground\">@color/foreground_material_dark</item>\n        <item name=\"android:colorForegroundInverse\">@color/foreground_material_light</item>\n        <item name=\"android:colorBackground\">@color/background_material_dark</item>\n        <item name=\"android:colorBackgroundCacheHint\">@color/abc_background_cache_hint_selector_material_dark</item>\n\n        <item name=\"android:textColorPrimary\">@color/abc_primary_text_material_dark</item>\n        <item name=\"android:textColorPrimaryInverse\">@color/abc_primary_text_material_light</item>\n        <item name=\"android:textColorPrimaryDisableOnly\">@color/abc_primary_text_disable_only_material_dark</item>\n        <item name=\"android:textColorSecondary\">@color/abc_secondary_text_material_dark</item>\n        <item name=\"android:textColorSecondaryInverse\">@color/abc_secondary_text_material_light</item>\n        <item name=\"android:textColorTertiary\">@color/abc_secondary_text_material_dark</item>\n        <item name=\"android:textColorTertiaryInverse\">@color/abc_secondary_text_material_light</item>\n        <item name=\"android:textColorHint\">@color/hint_foreground_material_dark</item>\n        <item name=\"android:textColorHintInverse\">@color/hint_foreground_material_light</item>\n        <item name=\"android:textColorHighlight\">@color/highlighted_text_material_dark</item>\n\n        <item name=\"colorControlNormal\">?android:attr/textColorSecondary</item>\n        <item name=\"colorControlHighlight\">@color/ripple_material_dark</item>\n        <item name=\"colorButtonNormal\">@color/button_material_dark</item>\n        <item name=\"colorSwitchThumbNormal\">@color/switch_thumb_material_dark</item>\n\n        <!-- Used by MediaRouter -->\n        <item name=\"isLightTheme\">false</item>\n    </style><style name=\"Base.Widget.AppCompat.Button.ButtonBar.AlertDialog\" parent=\"Widget.AppCompat.Button.Borderless.Colored\">\n        <item name=\"android:minWidth\">64dp</item>\n        <item name=\"android:maxLines\">2</item>\n        <item name=\"android:minHeight\">@dimen/abc_alert_dialog_button_bar_height</item>\n    </style><style name=\"TextAppearance.AppCompat.Button\" parent=\"Base.TextAppearance.AppCompat.Button\"/><declare-styleable name=\"AppCompatTextView\"><attr format=\"reference|boolean\" name=\"textAllCaps\"/><attr name=\"android:textAppearance\"/></declare-styleable><style name=\"Theme.AppCompat.Light.NoActionBar\">\n        <item name=\"windowActionBar\">false</item>\n        <item name=\"windowNoTitle\">true</item>\n    </style><color name=\"ripple_material_dark\">#42ffffff</color><dimen name=\"abc_panel_menu_list_width\">296dp</dimen><style name=\"Widget.AppCompat.ActionBar.TabView\" parent=\"Base.Widget.AppCompat.ActionBar.TabView\">\n    </style><style name=\"Base.Widget.AppCompat.DropDownItem.Spinner\" parent=\"\">\n        <item name=\"android:textAppearance\">@style/TextAppearance.AppCompat.Widget.DropDownItem</item>\n        <item name=\"android:paddingLeft\">8dp</item>\n        <item name=\"android:paddingRight\">8dp</item>\n        <item name=\"android:gravity\">center_vertical</item>\n    </style><style name=\"Base.Widget.AppCompat.AutoCompleteTextView\" parent=\"Base.V7.Widget.AppCompat.AutoCompleteTextView\"/><color name=\"bright_foreground_inverse_material_dark\">@color/bright_foreground_material_light</color><style name=\"Base.TextAppearance.AppCompat.Widget.ActionBar.Title\" parent=\"TextAppearance.AppCompat.Title\">\n        <item name=\"android:textSize\">@dimen/abc_text_size_title_material_toolbar</item>\n        <item name=\"android:textColor\">?android:attr/textColorPrimary</item>\n    </style><color name=\"secondary_text_disabled_material_light\">#24000000</color><style name=\"Base.TextAppearance.AppCompat.SearchResult\" parent=\"\">\n        <item name=\"android:textStyle\">normal</item>\n        <item name=\"android:textColor\">?android:textColorPrimary</item>\n        <item name=\"android:textColorHint\">?android:textColorHint</item>\n    </style><style name=\"Base.V7.Widget.AppCompat.AutoCompleteTextView\" parent=\"android:Widget.AutoCompleteTextView\">\n        <item name=\"android:dropDownSelector\">?attr/listChoiceBackgroundIndicator</item>\n        <item name=\"android:popupBackground\">@drawable/abc_popup_background_mtrl_mult</item>\n        <item name=\"android:background\">?attr/editTextBackground</item>\n        <item name=\"android:textColor\">?attr/editTextColor</item>\n        <item name=\"android:textAppearance\">?android:attr/textAppearanceMediumInverse</item>\n    </style><color name=\"dim_foreground_disabled_material_dark\">#80bebebe</color><dimen name=\"abc_action_bar_stacked_tab_max_width\">180dp</dimen><dimen name=\"abc_edit_text_inset_top_material\">10dp</dimen><style name=\"Base.Widget.AppCompat.PopupMenu.Overflow\">\n        <item name=\"overlapAnchor\">true</item>\n        <item name=\"android:dropDownHorizontalOffset\">-4dip</item>\n    </style><color name=\"background_floating_material_light\">@android:color/white</color><integer name=\"cancel_button_image_alpha\">127</integer><declare-styleable name=\"AlertDialog\"><attr name=\"android:layout\"/><attr format=\"reference\" name=\"buttonPanelSideLayout\"/><attr format=\"reference\" name=\"listLayout\"/><attr format=\"reference\" name=\"multiChoiceItemLayout\"/><attr format=\"reference\" name=\"singleChoiceItemLayout\"/><attr format=\"reference\" name=\"listItemLayout\"/></declare-styleable><style name=\"Widget.AppCompat.Button.Borderless.Colored\" parent=\"Base.Widget.AppCompat.Button.Borderless.Colored\"/><style name=\"TextAppearance.AppCompat.Widget.ActionBar.Menu\" parent=\"Base.TextAppearance.AppCompat.Widget.ActionBar.Menu\">\n    </style><style name=\"Widget.AppCompat.Spinner\" parent=\"Base.Widget.AppCompat.Spinner\"/><style name=\"Widget.AppCompat.ButtonBar\" parent=\"Base.Widget.AppCompat.ButtonBar\"/><style name=\"Base.TextAppearance.AppCompat.Widget.ActionBar.Title.Inverse\" parent=\"TextAppearance.AppCompat.Title.Inverse\">\n        <item name=\"android:textSize\">@dimen/abc_text_size_title_material_toolbar</item>\n        <item name=\"android:textColor\">?android:attr/textColorPrimaryInverse</item>\n    </style><style name=\"Base.Widget.AppCompat.Button.Borderless\">\n        <item name=\"android:background\">@drawable/abc_btn_borderless_material</item>\n    </style><dimen name=\"abc_text_size_body_2_material\">14sp</dimen><style name=\"RtlOverlay.Widget.AppCompat.Search.DropDown.Query\" parent=\"android:Widget\">\n        <item name=\"android:layout_alignParentRight\">true</item>\n    </style><style name=\"RtlOverlay.Widget.AppCompat.Search.DropDown.Text\" parent=\"Base.Widget.AppCompat.DropDownItem.Spinner\">\n        <item name=\"android:layout_toLeftOf\">@android:id/icon2</item>\n        <item name=\"android:layout_toRightOf\">@android:id/icon1</item>\n    </style><style name=\"Base.Widget.AppCompat.TextView.SpinnerItem\" parent=\"android:Widget.TextView.SpinnerItem\">\n        <item name=\"android:textAppearance\">@style/TextAppearance.AppCompat.Widget.TextView.SpinnerItem</item>\n        <item name=\"android:paddingLeft\">8dp</item>\n        <item name=\"android:paddingRight\">8dp</item>\n    </style><style name=\"Base.TextAppearance.Widget.AppCompat.ExpandedMenu.Item\" parent=\"android:TextAppearance.Medium\">\n        <item name=\"android:textColor\">?android:attr/textColorPrimaryDisableOnly</item>\n    </style><style name=\"Base.DialogWindowTitleBackground.AppCompat\" parent=\"android:Widget\">\n        <item name=\"android:background\">@null</item>\n        <item name=\"android:paddingLeft\">?attr/dialogPreferredPadding</item>\n        <item name=\"android:paddingRight\">?attr/dialogPreferredPadding</item>\n        <item name=\"android:paddingTop\">@dimen/abc_dialog_padding_top_material</item>\n    </style><dimen name=\"abc_list_item_padding_horizontal_material\">@dimen/abc_action_bar_content_inset_material</dimen><dimen name=\"abc_action_bar_progress_bar_size\">40dp</dimen><style name=\"AlertDialog.AppCompat\" parent=\"Base.AlertDialog.AppCompat\"/><style name=\"Widget.AppCompat.Light.ActionBar.TabBar.Inverse\"/><color name=\"primary_material_dark\">@color/material_grey_900</color><style name=\"Platform.AppCompat.Light\" parent=\"android:Theme.Light\">\n        <item name=\"android:windowNoTitle\">true</item>\n\n        <!-- Window colors -->\n        <item name=\"android:colorForeground\">@color/foreground_material_light</item>\n        <item name=\"android:colorForegroundInverse\">@color/foreground_material_dark</item>\n        <item name=\"android:colorBackground\">@color/background_material_light</item>\n        <item name=\"android:colorBackgroundCacheHint\">@color/abc_background_cache_hint_selector_material_light</item>\n        <item name=\"android:disabledAlpha\">@dimen/abc_disabled_alpha_material_light</item>\n        <item name=\"android:backgroundDimAmount\">0.6</item>\n        <item name=\"android:windowBackground\">@color/background_material_light</item>\n\n        <!-- Text colors -->\n        <item name=\"android:textColorPrimary\">@color/abc_primary_text_material_light</item>\n        <item name=\"android:textColorPrimaryInverse\">@color/abc_primary_text_material_dark</item>\n        <item name=\"android:textColorSecondary\">@color/abc_secondary_text_material_light</item>\n        <item name=\"android:textColorSecondaryInverse\">@color/abc_secondary_text_material_dark</item>\n        <item name=\"android:textColorTertiary\">@color/abc_secondary_text_material_light</item>\n        <item name=\"android:textColorTertiaryInverse\">@color/abc_secondary_text_material_dark</item>\n        <item name=\"android:textColorPrimaryDisableOnly\">@color/abc_primary_text_disable_only_material_light</item>\n        <item name=\"android:textColorPrimaryInverseDisableOnly\">@color/abc_primary_text_disable_only_material_dark</item>\n        <item name=\"android:textColorHint\">@color/hint_foreground_material_light</item>\n        <item name=\"android:textColorHintInverse\">@color/hint_foreground_material_dark</item>\n        <item name=\"android:textColorHighlight\">@color/highlighted_text_material_light</item>\n        <item name=\"android:textColorLink\">?attr/colorAccent</item>\n\n        <!-- Text styles -->\n        <item name=\"android:textAppearance\">@style/TextAppearance.AppCompat</item>\n        <item name=\"android:textAppearanceInverse\">@style/TextAppearance.AppCompat.Inverse</item>\n        <item name=\"android:textAppearanceLarge\">@style/TextAppearance.AppCompat.Large</item>\n        <item name=\"android:textAppearanceLargeInverse\">@style/TextAppearance.AppCompat.Large.Inverse</item>\n        <item name=\"android:textAppearanceMedium\">@style/TextAppearance.AppCompat.Medium</item>\n        <item name=\"android:textAppearanceMediumInverse\">@style/TextAppearance.AppCompat.Medium.Inverse</item>\n        <item name=\"android:textAppearanceSmall\">@style/TextAppearance.AppCompat.Small</item>\n        <item name=\"android:textAppearanceSmallInverse\">@style/TextAppearance.AppCompat.Small.Inverse</item>\n\n        <item name=\"android:listChoiceIndicatorSingle\">@drawable/abc_btn_radio_material</item>\n        <item name=\"android:listChoiceIndicatorMultiple\">@drawable/abc_btn_check_material</item>\n    </style><style name=\"Base.Widget.AppCompat.Button.Colored\">\n        <item name=\"android:background\">@drawable/abc_btn_colored_material</item>\n        <item name=\"android:textAppearance\">@style/TextAppearance.AppCompat.Widget.Button.Inverse</item>\n    </style><color name=\"abc_search_url_text_selected\">@android:color/black</color><style name=\"RtlOverlay.Widget.AppCompat.SearchView.MagIcon\" parent=\"android:Widget\">\n        <item name=\"android:layout_marginLeft\">@dimen/abc_dropdownitem_text_padding_left</item>\n    </style><color name=\"primary_material_light\">@color/material_grey_100</color><style name=\"Base.TextAppearance.AppCompat.Title.Inverse\">\n        <item name=\"android:textColor\">?android:attr/textColorPrimaryInverse</item>\n        <item name=\"android:textColorHint\">?android:attr/textColorHintInverse</item>\n    </style><item name=\"home\" type=\"id\"/><style name=\"Base.TextAppearance.AppCompat.Menu\">\n        <item name=\"android:textSize\">@dimen/abc_text_size_menu_material</item>\n        <item name=\"android:textColor\">?android:textColorPrimary</item>\n    </style><dimen name=\"abc_text_size_large_material\">22sp</dimen><style name=\"Base.Theme.AppCompat.CompactMenu\" parent=\"\">\n        <item name=\"android:itemTextAppearance\">?android:attr/textAppearanceMedium</item>\n        <item name=\"android:listViewStyle\">@style/Widget.AppCompat.ListView.Menu</item>\n        <item name=\"android:windowAnimationStyle\">@style/Animation.AppCompat.DropDownUp</item>\n    </style><style name=\"TextAppearance.AppCompat.Display4\" parent=\"Base.TextAppearance.AppCompat.Display4\"/><style name=\"TextAppearance.AppCompat.Display1\" parent=\"Base.TextAppearance.AppCompat.Display1\"/><attr format=\"string\" name=\"title\"/><declare-styleable name=\"PopupWindow\"><attr format=\"boolean\" name=\"overlapAnchor\"/><attr name=\"android:popupBackground\"/></declare-styleable><style name=\"TextAppearance.AppCompat.Display2\" parent=\"Base.TextAppearance.AppCompat.Display2\"/><style name=\"TextAppearance.AppCompat.Title\" parent=\"Base.TextAppearance.AppCompat.Title\"/><style name=\"Base.V7.Theme.AppCompat.Dialog\" parent=\"Base.Theme.AppCompat\">\n        <item name=\"android:colorBackground\">@color/background_floating_material_dark</item>\n        <item name=\"android:colorBackgroundCacheHint\">@null</item>\n\n        <item name=\"android:windowFrame\">@null</item>\n        <item name=\"android:windowTitleStyle\">@style/RtlOverlay.DialogWindowTitle.AppCompat</item>\n        <item name=\"android:windowTitleBackgroundStyle\">@style/Base.DialogWindowTitleBackground.AppCompat</item>\n        <item name=\"android:windowBackground\">@drawable/abc_dialog_material_background_dark</item>\n        <item name=\"android:windowIsFloating\">true</item>\n        <item name=\"android:backgroundDimEnabled\">true</item>\n        <item name=\"android:windowContentOverlay\">@null</item>\n        <item name=\"android:windowAnimationStyle\">@style/Animation.AppCompat.Dialog</item>\n        <item name=\"android:windowSoftInputMode\">stateUnspecified|adjustPan</item>\n\n        <item name=\"windowActionBar\">false</item>\n        <item name=\"windowActionModeOverlay\">true</item>\n\n        <item name=\"listPreferredItemPaddingLeft\">24dip</item>\n        <item name=\"listPreferredItemPaddingRight\">24dip</item>\n\n        <item name=\"android:listDivider\">@null</item>\n    </style><style name=\"TextAppearance.AppCompat.Display3\" parent=\"Base.TextAppearance.AppCompat.Display3\"/><style name=\"Base.TextAppearance.AppCompat.Widget.DropDownItem\" parent=\"android:TextAppearance.Small\">\n        <item name=\"android:textColor\">?android:attr/textColorPrimaryDisableOnly</item>\n    </style><dimen name=\"abc_text_size_display_1_material\">34sp</dimen><dimen name=\"abc_text_size_subhead_material\">16sp</dimen><dimen name=\"abc_text_size_headline_material\">24sp</dimen><style name=\"Widget.AppCompat.AutoCompleteTextView\" parent=\"Base.Widget.AppCompat.AutoCompleteTextView\">\n    </style><style name=\"TextAppearance.Widget.AppCompat.ExpandedMenu.Item\" parent=\"Base.TextAppearance.Widget.AppCompat.ExpandedMenu.Item\">\n    </style><dimen name=\"notification_subtext_size\">12dp</dimen><string name=\"abc_searchview_description_query\">Search query</string><color name=\"material_deep_teal_500\">#ff009688</color><drawable name=\"notification_template_icon_bg\">#3333B5E5</drawable><style name=\"Widget.AppCompat.Light.ActionBar.TabBar\" parent=\"Base.Widget.AppCompat.Light.ActionBar.TabBar\">\n    </style><style name=\"TextAppearance.AppCompat.Large.Inverse\" parent=\"Base.TextAppearance.AppCompat.Large.Inverse\"/><style name=\"Base.Widget.AppCompat.ProgressBar\" parent=\"android:Widget.ProgressBar\">\n        <item name=\"android:minWidth\">@dimen/abc_action_bar_progress_bar_size</item>\n        <item name=\"android:maxWidth\">@dimen/abc_action_bar_progress_bar_size</item>\n        <item name=\"android:minHeight\">@dimen/abc_action_bar_progress_bar_size</item>\n        <item name=\"android:maxHeight\">@dimen/abc_action_bar_progress_bar_size</item>\n    </style><style name=\"TextAppearance.AppCompat.Light.SearchResult.Subtitle\" parent=\"TextAppearance.AppCompat.SearchResult.Subtitle\"/><style name=\"Widget.AppCompat.Light.ListView.DropDown\" parent=\"Widget.AppCompat.ListView.DropDown\"/><style name=\"Base.Widget.AppCompat.Button.Small\">\n        <item name=\"android:minHeight\">48dip</item>\n        <item name=\"android:minWidth\">48dip</item>\n    </style><style name=\"Base.Widget.AppCompat.Light.ActionBar.TabBar\" parent=\"Base.Widget.AppCompat.ActionBar.TabBar\">\n    </style><dimen name=\"abc_action_bar_overflow_padding_start_material\">6dp</dimen><string name=\"abc_action_bar_up_description\">Navigate up</string><dimen name=\"abc_switch_padding\">3dp</dimen><style name=\"Base.Theme.AppCompat.Dialog.Alert\">\n        <item name=\"windowMinWidthMajor\">@dimen/abc_dialog_min_width_major</item>\n        <item name=\"windowMinWidthMinor\">@dimen/abc_dialog_min_width_minor</item>\n    </style><item format=\"float\" name=\"highlight_alpha_material_colored\" type=\"dimen\">0.26</item><item name=\"action_menu_presenter\" type=\"id\"/><style name=\"Base.ThemeOverlay.AppCompat.ActionBar\">\n        <item name=\"colorControlNormal\">?android:attr/textColorPrimary</item>\n        <item name=\"searchViewStyle\">@style/Widget.AppCompat.SearchView.ActionBar</item>\n    </style><color name=\"dim_foreground_disabled_material_light\">#80323232</color><style name=\"Base.Widget.AppCompat.ListPopupWindow\" parent=\"\">\n        <item name=\"android:dropDownSelector\">?attr/listChoiceBackgroundIndicator</item>\n        <item name=\"android:popupBackground\">@drawable/abc_popup_background_mtrl_mult</item>\n        <item name=\"android:dropDownVerticalOffset\">0dip</item>\n        <item name=\"android:dropDownHorizontalOffset\">0dip</item>\n        <item name=\"android:dropDownWidth\">wrap_content</item>\n    </style><color name=\"switch_thumb_disabled_material_light\">#ffbdbdbd</color><string name=\"abc_action_menu_overflow_description\">More options</string><style name=\"Base.TextAppearance.AppCompat.Title\">\n        <item name=\"android:textSize\">@dimen/abc_text_size_title_material</item>\n        <item name=\"android:textColor\">?android:textColorPrimary</item>\n    </style><item name=\"dialog_fixed_width_major\" type=\"dimen\">320dp</item><declare-styleable name=\"LinearLayoutCompat_Layout\"><attr name=\"android:layout_width\"/><attr name=\"android:layout_height\"/><attr name=\"android:layout_weight\"/><attr name=\"android:layout_gravity\"/></declare-styleable><integer name=\"abc_config_activityDefaultDur\">220</integer><style name=\"Base.Widget.AppCompat.Toolbar\" parent=\"android:Widget\">\n        <item name=\"titleTextAppearance\">@style/TextAppearance.Widget.AppCompat.Toolbar.Title</item>\n        <item name=\"subtitleTextAppearance\">@style/TextAppearance.Widget.AppCompat.Toolbar.Subtitle</item>\n        <item name=\"android:minHeight\">?attr/actionBarSize</item>\n        <item name=\"titleMargins\">4dp</item>\n        <item name=\"maxButtonHeight\">56dp</item>\n        <item name=\"collapseIcon\">?attr/homeAsUpIndicator</item>\n        <item name=\"collapseContentDescription\">@string/abc_toolbar_collapse_description</item>\n        <item name=\"contentInsetStart\">16dp</item>\n        <item name=\"android:paddingLeft\">@dimen/abc_action_bar_default_padding_start_material</item>\n        <item name=\"android:paddingRight\">@dimen/abc_action_bar_default_padding_end_material</item>\n    </style><style name=\"Base.TextAppearance.AppCompat.Widget.PopupMenu.Small\" parent=\"TextAppearance.AppCompat.Menu\">\n    </style><style name=\"Base.Widget.AppCompat.ActionBar.TabText\" parent=\"\">\n        <item name=\"android:textAppearance\">@style/TextAppearance.AppCompat.Medium</item>\n        <item name=\"android:textColor\">?android:attr/textColorPrimary</item>\n        <item name=\"android:textSize\">12sp</item>\n        <item name=\"android:textStyle\">bold</item>\n        <item name=\"android:ellipsize\">marquee</item>\n        <item name=\"android:maxLines\">2</item>\n        <item name=\"android:maxWidth\">180dp</item>\n        <item name=\"textAllCaps\">true</item>\n    </style><style name=\"TextAppearance.AppCompat\" parent=\"Base.TextAppearance.AppCompat\"/><style name=\"Base.Widget.AppCompat.Light.ActionBar\" parent=\"Base.Widget.AppCompat.ActionBar\">\n        <item name=\"actionButtonStyle\">@style/Widget.AppCompat.Light.ActionButton</item>\n        <item name=\"actionOverflowButtonStyle\">@style/Widget.AppCompat.Light.ActionButton.Overflow</item>\n    </style><declare-styleable name=\"PopupWindowBackgroundState\"><attr format=\"boolean\" name=\"state_above_anchor\"/></declare-styleable><style name=\"Widget.AppCompat.Button.Borderless\" parent=\"Base.Widget.AppCompat.Button.Borderless\"/><declare-styleable name=\"ViewStubCompat\"><attr name=\"android:layout\"/><attr name=\"android:inflatedId\"/><attr name=\"android:id\"/></declare-styleable><item name=\"dialog_fixed_height_minor\" type=\"dimen\">100%</item><style name=\"Base.TextAppearance.AppCompat.Large\">\n        <item name=\"android:textSize\">@dimen/abc_text_size_large_material</item>\n        <item name=\"android:textColor\">?android:attr/textColorPrimary</item>\n    </style><declare-styleable name=\"Theme\"><attr format=\"boolean\" name=\"windowActionBar\"/><attr format=\"boolean\" name=\"windowNoTitle\"/><attr format=\"boolean\" name=\"windowActionBarOverlay\"/><attr format=\"boolean\" name=\"windowActionModeOverlay\"/><attr format=\"dimension|fraction\" name=\"windowFixedWidthMajor\"/><attr format=\"dimension|fraction\" name=\"windowFixedHeightMinor\"/><attr format=\"dimension|fraction\" name=\"windowFixedWidthMinor\"/><attr format=\"dimension|fraction\" name=\"windowFixedHeightMajor\"/><attr format=\"dimension|fraction\" name=\"windowMinWidthMajor\"/><attr format=\"dimension|fraction\" name=\"windowMinWidthMinor\"/><attr name=\"android:windowIsFloating\"/><attr name=\"android:windowAnimationStyle\"/><attr format=\"reference\" name=\"actionBarTabStyle\"/><attr format=\"reference\" name=\"actionBarTabBarStyle\"/><attr format=\"reference\" name=\"actionBarTabTextStyle\"/><attr format=\"reference\" name=\"actionOverflowButtonStyle\"/><attr format=\"reference\" name=\"actionOverflowMenuStyle\"/><attr format=\"reference\" name=\"actionBarPopupTheme\"/><attr format=\"reference\" name=\"actionBarStyle\"/><attr format=\"reference\" name=\"actionBarSplitStyle\"/><attr format=\"reference\" name=\"actionBarTheme\"/><attr format=\"reference\" name=\"actionBarWidgetTheme\"/><attr format=\"dimension\" name=\"actionBarSize\"><enum name=\"wrap_content\" value=\"0\"/></attr><attr format=\"reference\" name=\"actionBarDivider\"/><attr format=\"reference\" name=\"actionBarItemBackground\"/><attr format=\"reference\" name=\"actionMenuTextAppearance\"/><attr format=\"color|reference\" name=\"actionMenuTextColor\"/><attr format=\"reference\" name=\"actionModeStyle\"/><attr format=\"reference\" name=\"actionModeCloseButtonStyle\"/><attr format=\"reference\" name=\"actionModeBackground\"/><attr format=\"reference\" name=\"actionModeSplitBackground\"/><attr format=\"reference\" name=\"actionModeCloseDrawable\"/><attr format=\"reference\" name=\"actionModeCutDrawable\"/><attr format=\"reference\" name=\"actionModeCopyDrawable\"/><attr format=\"reference\" name=\"actionModePasteDrawable\"/><attr format=\"reference\" name=\"actionModeSelectAllDrawable\"/><attr format=\"reference\" name=\"actionModeShareDrawable\"/><attr format=\"reference\" name=\"actionModeFindDrawable\"/><attr format=\"reference\" name=\"actionModeWebSearchDrawable\"/><attr format=\"reference\" name=\"actionModePopupWindowStyle\"/><attr format=\"reference\" name=\"textAppearanceLargePopupMenu\"/><attr format=\"reference\" name=\"textAppearanceSmallPopupMenu\"/><attr format=\"reference\" name=\"dialogTheme\"/><attr format=\"dimension\" name=\"dialogPreferredPadding\"/><attr format=\"reference\" name=\"listDividerAlertDialog\"/><attr format=\"reference\" name=\"actionDropDownStyle\"/><attr format=\"dimension\" name=\"dropdownListPreferredItemHeight\"/><attr format=\"reference\" name=\"spinnerDropDownItemStyle\"/><attr format=\"reference\" name=\"homeAsUpIndicator\"/><attr format=\"reference\" name=\"actionButtonStyle\"/><attr format=\"reference\" name=\"buttonBarStyle\"/><attr format=\"reference\" name=\"buttonBarButtonStyle\"/><attr format=\"reference\" name=\"selectableItemBackground\"/><attr format=\"reference\" name=\"selectableItemBackgroundBorderless\"/><attr format=\"reference\" name=\"borderlessButtonStyle\"/><attr format=\"reference\" name=\"dividerVertical\"/><attr format=\"reference\" name=\"dividerHorizontal\"/><attr format=\"reference\" name=\"activityChooserViewStyle\"/><attr format=\"reference\" name=\"toolbarStyle\"/><attr format=\"reference\" name=\"toolbarNavigationButtonStyle\"/><attr format=\"reference\" name=\"popupMenuStyle\"/><attr format=\"reference\" name=\"popupWindowStyle\"/><attr format=\"reference|color\" name=\"editTextColor\"/><attr format=\"reference\" name=\"editTextBackground\"/><attr format=\"reference\" name=\"textAppearanceSearchResultTitle\"/><attr format=\"reference\" name=\"textAppearanceSearchResultSubtitle\"/><attr format=\"reference|color\" name=\"textColorSearchUrl\"/><attr format=\"reference\" name=\"searchViewStyle\"/><attr format=\"dimension\" name=\"listPreferredItemHeight\"/><attr format=\"dimension\" name=\"listPreferredItemHeightSmall\"/><attr format=\"dimension\" name=\"listPreferredItemHeightLarge\"/><attr format=\"dimension\" name=\"listPreferredItemPaddingLeft\"/><attr format=\"dimension\" name=\"listPreferredItemPaddingRight\"/><attr format=\"reference\" name=\"dropDownListViewStyle\"/><attr format=\"reference\" name=\"listPopupWindowStyle\"/><attr format=\"reference\" name=\"textAppearanceListItem\"/><attr format=\"reference\" name=\"textAppearanceListItemSmall\"/><attr format=\"reference\" name=\"panelBackground\"/><attr format=\"dimension\" name=\"panelMenuListWidth\"/><attr format=\"reference\" name=\"panelMenuListTheme\"/><attr format=\"reference\" name=\"listChoiceBackgroundIndicator\"/><attr format=\"color\" name=\"colorPrimary\"/><attr format=\"color\" name=\"colorPrimaryDark\"/><attr format=\"color\" name=\"colorAccent\"/><attr format=\"color\" name=\"colorControlNormal\"/><attr format=\"color\" name=\"colorControlActivated\"/><attr format=\"color\" name=\"colorControlHighlight\"/><attr format=\"color\" name=\"colorButtonNormal\"/><attr format=\"color\" name=\"colorSwitchThumbNormal\"/><attr format=\"reference\" name=\"controlBackground\"/><attr format=\"reference\" name=\"alertDialogStyle\"/><attr format=\"reference\" name=\"alertDialogButtonGroupStyle\"/><attr format=\"boolean\" name=\"alertDialogCenterButtons\"/><attr format=\"reference\" name=\"alertDialogTheme\"/><attr format=\"reference|color\" name=\"textColorAlertDialogListItem\"/><attr format=\"reference\" name=\"buttonBarPositiveButtonStyle\"/><attr format=\"reference\" name=\"buttonBarNegativeButtonStyle\"/><attr format=\"reference\" name=\"buttonBarNeutralButtonStyle\"/><attr format=\"reference\" name=\"autoCompleteTextViewStyle\"/><attr format=\"reference\" name=\"buttonStyle\"/><attr format=\"reference\" name=\"buttonStyleSmall\"/><attr format=\"reference\" name=\"checkboxStyle\"/><attr format=\"reference\" name=\"checkedTextViewStyle\"/><attr format=\"reference\" name=\"editTextStyle\"/><attr format=\"reference\" name=\"radioButtonStyle\"/><attr format=\"reference\" name=\"ratingBarStyle\"/><attr format=\"reference\" name=\"spinnerStyle\"/><attr format=\"reference\" name=\"switchStyle\"/></declare-styleable><style name=\"Base.Theme.AppCompat.Dialog.FixedSize\">\n        <item name=\"windowFixedWidthMajor\">@dimen/dialog_fixed_width_major</item>\n        <item name=\"windowFixedWidthMinor\">@dimen/dialog_fixed_width_minor</item>\n        <item name=\"windowFixedHeightMajor\">@dimen/dialog_fixed_height_major</item>\n        <item name=\"windowFixedHeightMinor\">@dimen/dialog_fixed_height_minor</item>\n    </style><style name=\"Base.Theme.AppCompat.Dialog\" parent=\"Base.V7.Theme.AppCompat.Dialog\"/><dimen name=\"abc_config_prefDialogWidth\">320dp</dimen><style name=\"Base.Widget.AppCompat.ButtonBar\" parent=\"android:Widget\">\n        <item name=\"android:background\">@null</item>\n    </style><dimen name=\"abc_text_size_title_material\">20sp</dimen><integer name=\"abc_config_activityShortDur\">150</integer><style name=\"Widget.AppCompat.Light.ActionBar.TabView.Inverse\"/><style name=\"Base.Widget.AppCompat.ListView.Menu\" parent=\"android:Widget.ListView.Menu\">\n        <item name=\"android:listSelector\">?attr/listChoiceBackgroundIndicator</item>\n        <item name=\"android:divider\">?attr/dividerHorizontal</item>\n    </style><dimen name=\"abc_dialog_padding_material\">24dp</dimen><style name=\"Base.Widget.AppCompat.ListView.DropDown\">\n        <item name=\"android:divider\">@null</item>\n    </style><style name=\"Widget.AppCompat.Light.ActionButton.Overflow\" parent=\"Widget.AppCompat.ActionButton.Overflow\"/><color name=\"primary_text_disabled_material_dark\">#4Dffffff</color><style name=\"Base.TextAppearance.Widget.AppCompat.Toolbar.Title\" parent=\"TextAppearance.AppCompat.Widget.ActionBar.Title\">\n    </style><style name=\"TextAppearance.AppCompat.Body1\" parent=\"Base.TextAppearance.AppCompat.Body1\"/><style name=\"TextAppearance.StatusBar.EventContent.Info\" parent=\"\"/><style name=\"TextAppearance.AppCompat.Body2\" parent=\"Base.TextAppearance.AppCompat.Body2\"/><style name=\"Widget.AppCompat.ActionButton.CloseMode\" parent=\"Base.Widget.AppCompat.ActionButton.CloseMode\"/><style name=\"Widget.AppCompat.Button.ButtonBar.AlertDialog\" parent=\"Base.Widget.AppCompat.Button.ButtonBar.AlertDialog\"/><color name=\"bright_foreground_inverse_material_light\">@color/bright_foreground_material_dark</color><dimen name=\"abc_dropdownitem_icon_width\">32dip</dimen><style name=\"Widget.AppCompat.Light.PopupMenu\" parent=\"Base.Widget.AppCompat.Light.PopupMenu\">\n    </style><string name=\"abc_action_bar_home_description\">Navigate home</string><item format=\"float\" name=\"abc_disabled_alpha_material_dark\" type=\"dimen\">0.30</item><style name=\"TextAppearance.AppCompat.Headline\" parent=\"Base.TextAppearance.AppCompat.Headline\"/><style name=\"RtlOverlay.Widget.AppCompat.PopupMenuItem.Text\" parent=\"android:Widget\">\n        <item name=\"android:layout_alignParentLeft\">true</item>\n    </style><dimen name=\"abc_text_size_display_4_material\">112sp</dimen><style name=\"Base.Widget.AppCompat.ProgressBar.Horizontal\" parent=\"android:Widget.ProgressBar.Horizontal\">\n    </style><style name=\"RtlOverlay.Widget.AppCompat.ActionBar.TitleItem\" parent=\"android:Widget\">\n        <item name=\"android:layout_gravity\">center_vertical|left</item>\n        <item name=\"android:paddingRight\">8dp</item>\n    </style><style name=\"Widget.AppCompat.PopupMenu.Overflow\" parent=\"Base.Widget.AppCompat.PopupMenu.Overflow\">\n    </style><dimen name=\"abc_floating_window_z\">16dp</dimen><style name=\"Base.Widget.AppCompat.SearchView.ActionBar\">\n        <item name=\"queryBackground\">@null</item>\n        <item name=\"submitBackground\">@null</item>\n        <item name=\"searchHintIcon\">@null</item>\n        <item name=\"defaultQueryHint\">@string/abc_search_hint</item>\n    </style><style name=\"RtlOverlay.Widget.AppCompat.ActionButton.Overflow\" parent=\"Base.Widget.AppCompat.ActionButton.Overflow\">\n        <item name=\"android:paddingLeft\">@dimen/abc_action_bar_overflow_padding_start_material</item>\n        <item name=\"android:paddingRight\">@dimen/abc_action_bar_overflow_padding_end_material</item>\n    </style><style name=\"TextAppearance.AppCompat.Widget.ActionMode.Subtitle\" parent=\"Base.TextAppearance.AppCompat.Widget.ActionMode.Subtitle\">\n    </style><style name=\"Base.V7.Theme.AppCompat\" parent=\"Platform.AppCompat\">\n        <item name=\"windowActionBar\">true</item>\n        <item name=\"windowActionBarOverlay\">false</item>\n        <item name=\"actionBarPopupTheme\">@null</item>\n\n        <!-- Used by MediaRouter -->\n        <item name=\"isLightTheme\">false</item>\n\n        <item name=\"selectableItemBackground\">@drawable/abc_item_background_holo_dark</item>\n        <item name=\"selectableItemBackgroundBorderless\">?attr/selectableItemBackground</item>\n        <item name=\"borderlessButtonStyle\">@style/Widget.AppCompat.Button.Borderless</item>\n        <item name=\"homeAsUpIndicator\">@drawable/abc_ic_ab_back_mtrl_am_alpha</item>\n\n        <item name=\"dividerVertical\">@drawable/abc_list_divider_mtrl_alpha</item>\n        <item name=\"dividerHorizontal\">@drawable/abc_list_divider_mtrl_alpha</item>\n\n        <!-- Action Bar Styles -->\n        <item name=\"actionBarTabStyle\">@style/Widget.AppCompat.ActionBar.TabView</item>\n        <item name=\"actionBarTabBarStyle\">@style/Widget.AppCompat.ActionBar.TabBar</item>\n        <item name=\"actionBarTabTextStyle\">@style/Widget.AppCompat.ActionBar.TabText</item>\n        <item name=\"actionButtonStyle\">@style/Widget.AppCompat.ActionButton</item>\n        <item name=\"actionOverflowButtonStyle\">@style/Widget.AppCompat.ActionButton.Overflow</item>\n        <item name=\"actionOverflowMenuStyle\">@style/Widget.AppCompat.PopupMenu.Overflow</item>\n        <item name=\"actionBarStyle\">@style/Widget.AppCompat.ActionBar.Solid</item>\n        <item name=\"actionBarSplitStyle\">?attr/actionBarStyle</item>\n        <item name=\"actionBarWidgetTheme\">@null</item>\n        <item name=\"actionBarTheme\">@style/ThemeOverlay.AppCompat.ActionBar</item>\n        <item name=\"actionBarSize\">@dimen/abc_action_bar_default_height_material</item>\n        <item name=\"actionBarDivider\">?attr/dividerVertical</item>\n        <item name=\"actionBarItemBackground\">?attr/selectableItemBackgroundBorderless</item>\n        <item name=\"actionMenuTextAppearance\">@style/TextAppearance.AppCompat.Widget.ActionBar.Menu</item>\n        <item name=\"actionMenuTextColor\">?android:attr/textColorPrimaryDisableOnly</item>\n\n        <!-- Dropdown Spinner Attributes -->\n        <item name=\"actionDropDownStyle\">@style/Widget.AppCompat.Spinner.DropDown.ActionBar</item>\n\n        <!-- Action Mode -->\n        <item name=\"actionModeStyle\">@style/Widget.AppCompat.ActionMode</item>\n        <item name=\"actionModeBackground\">@drawable/abc_cab_background_top_material</item>\n        <item name=\"actionModeSplitBackground\">?attr/colorPrimaryDark</item>\n        <item name=\"actionModeCloseDrawable\">@drawable/abc_ic_ab_back_mtrl_am_alpha</item>\n        <item name=\"actionModeCloseButtonStyle\">@style/Widget.AppCompat.ActionButton.CloseMode</item>\n\n        <item name=\"actionModeCutDrawable\">@drawable/abc_ic_menu_cut_mtrl_alpha</item>\n        <item name=\"actionModeCopyDrawable\">@drawable/abc_ic_menu_copy_mtrl_am_alpha</item>\n        <item name=\"actionModePasteDrawable\">@drawable/abc_ic_menu_paste_mtrl_am_alpha</item>\n        <item name=\"actionModeSelectAllDrawable\">@drawable/abc_ic_menu_selectall_mtrl_alpha</item>\n        <item name=\"actionModeShareDrawable\">@drawable/abc_ic_menu_share_mtrl_alpha</item>\n\n        <!-- Panel attributes -->\n        <item name=\"panelMenuListWidth\">@dimen/abc_panel_menu_list_width</item>\n        <item name=\"panelMenuListTheme\">@style/Theme.AppCompat.CompactMenu</item>\n        <item name=\"panelBackground\">@drawable/abc_menu_hardkey_panel_mtrl_mult</item>\n        <item name=\"android:panelBackground\">@android:color/transparent</item>\n        <item name=\"listChoiceBackgroundIndicator\">@drawable/abc_list_selector_holo_dark</item>\n\n        <!-- List attributes -->\n        <item name=\"textAppearanceListItem\">@style/TextAppearance.AppCompat.Subhead</item>\n        <item name=\"textAppearanceListItemSmall\">@style/TextAppearance.AppCompat.Subhead</item>\n        <item name=\"listPreferredItemHeight\">64dp</item>\n        <item name=\"listPreferredItemHeightSmall\">48dp</item>\n        <item name=\"listPreferredItemHeightLarge\">80dp</item>\n        <item name=\"listPreferredItemPaddingLeft\">@dimen/abc_list_item_padding_horizontal_material</item>\n        <item name=\"listPreferredItemPaddingRight\">@dimen/abc_list_item_padding_horizontal_material</item>\n\n        <!-- Spinner styles -->\n        <item name=\"spinnerStyle\">@style/Widget.AppCompat.Spinner</item>\n        <item name=\"android:spinnerItemStyle\">@style/Widget.AppCompat.TextView.SpinnerItem</item>\n        <item name=\"android:dropDownListViewStyle\">@style/Widget.AppCompat.ListView.DropDown</item>\n\n        <!-- Required for use of support_simple_spinner_dropdown_item.xml -->\n        <item name=\"spinnerDropDownItemStyle\">@style/Widget.AppCompat.DropDownItem.Spinner</item>\n        <item name=\"dropdownListPreferredItemHeight\">?attr/listPreferredItemHeightSmall</item>\n\n        <!-- Popup Menu styles -->\n        <item name=\"popupMenuStyle\">@style/Widget.AppCompat.PopupMenu</item>\n        <item name=\"textAppearanceLargePopupMenu\">@style/TextAppearance.AppCompat.Widget.PopupMenu.Large</item>\n        <item name=\"textAppearanceSmallPopupMenu\">@style/TextAppearance.AppCompat.Widget.PopupMenu.Small</item>\n        <item name=\"listPopupWindowStyle\">@style/Widget.AppCompat.ListPopupWindow</item>\n        <item name=\"dropDownListViewStyle\">@style/Widget.AppCompat.ListView.DropDown</item>\n\n        <!-- SearchView attributes -->\n        <item name=\"searchViewStyle\">@style/Widget.AppCompat.SearchView</item>\n        <item name=\"android:dropDownItemStyle\">@style/Widget.AppCompat.DropDownItem.Spinner</item>\n        <item name=\"textColorSearchUrl\">@color/abc_search_url_text</item>\n        <item name=\"textAppearanceSearchResultTitle\">@style/TextAppearance.AppCompat.SearchResult.Title</item>\n        <item name=\"textAppearanceSearchResultSubtitle\">@style/TextAppearance.AppCompat.SearchResult.Subtitle</item>\n\n        <!-- ShareActionProvider attributes -->\n        <item name=\"activityChooserViewStyle\">@style/Widget.AppCompat.ActivityChooserView</item>\n\n        <!-- Toolbar styles -->\n        <item name=\"toolbarStyle\">@style/Widget.AppCompat.Toolbar</item>\n        <item name=\"toolbarNavigationButtonStyle\">@style/Widget.AppCompat.Toolbar.Button.Navigation</item>\n\n        <item name=\"editTextStyle\">@style/Widget.AppCompat.EditText</item>\n        <item name=\"editTextBackground\">@drawable/abc_edit_text_material</item>\n        <item name=\"editTextColor\">?android:attr/textColorPrimary</item>\n        <item name=\"autoCompleteTextViewStyle\">@style/Widget.AppCompat.AutoCompleteTextView</item>\n\n        <!-- Color palette -->\n        <item name=\"colorPrimaryDark\">@color/primary_dark_material_dark</item>\n        <item name=\"colorPrimary\">@color/primary_material_dark</item>\n        <item name=\"colorAccent\">@color/accent_material_dark</item>\n\n        <item name=\"colorControlNormal\">?android:attr/textColorSecondary</item>\n        <item name=\"colorControlActivated\">?attr/colorAccent</item>\n        <item name=\"colorControlHighlight\">@color/ripple_material_dark</item>\n        <item name=\"colorButtonNormal\">@color/button_material_dark</item>\n        <item name=\"colorSwitchThumbNormal\">@color/switch_thumb_material_dark</item>\n        <item name=\"controlBackground\">?attr/selectableItemBackgroundBorderless</item>\n\n        <item name=\"drawerArrowStyle\">@style/Widget.AppCompat.DrawerArrowToggle</item>\n\n        <item name=\"checkboxStyle\">@style/Widget.AppCompat.CompoundButton.CheckBox</item>\n        <item name=\"radioButtonStyle\">@style/Widget.AppCompat.CompoundButton.RadioButton</item>\n        <item name=\"switchStyle\">@style/Widget.AppCompat.CompoundButton.Switch</item>\n\n        <item name=\"ratingBarStyle\">@style/Widget.AppCompat.RatingBar</item>\n\n        <!-- Button styles -->\n        <item name=\"buttonStyle\">@style/Widget.AppCompat.Button</item>\n        <item name=\"buttonStyleSmall\">@style/Widget.AppCompat.Button.Small</item>\n        <item name=\"android:textAppearanceButton\">@style/TextAppearance.AppCompat.Widget.Button</item>\n\n        <item name=\"buttonBarStyle\">@style/Widget.AppCompat.ButtonBar</item>\n        <item name=\"buttonBarButtonStyle\">@style/Widget.AppCompat.Button.ButtonBar.AlertDialog</item>\n        <item name=\"buttonBarPositiveButtonStyle\">?attr/buttonBarButtonStyle</item>\n        <item name=\"buttonBarNegativeButtonStyle\">?attr/buttonBarButtonStyle</item>\n        <item name=\"buttonBarNeutralButtonStyle\">?attr/buttonBarButtonStyle</item>\n\n        <!-- Dialog attributes -->\n        <item name=\"dialogTheme\">@style/Theme.AppCompat.Dialog</item>\n        <item name=\"dialogPreferredPadding\">@dimen/abc_dialog_padding_material</item>\n\n        <item name=\"alertDialogTheme\">@style/Theme.AppCompat.Dialog.Alert</item>\n        <item name=\"alertDialogStyle\">@style/AlertDialog.AppCompat</item>\n        <item name=\"alertDialogCenterButtons\">false</item>\n        <item name=\"textColorAlertDialogListItem\">@color/abc_primary_text_material_dark</item>\n        <item name=\"listDividerAlertDialog\">@null</item>\n\n        <!-- Define these here; ContextThemeWrappers around themes that define them should\n             always clear these values. -->\n        <item name=\"windowFixedWidthMajor\">0dp</item>\n        <item name=\"windowFixedWidthMinor\">0dp</item>\n        <item name=\"windowFixedHeightMajor\">0dp</item>\n        <item name=\"windowFixedHeightMinor\">0dp</item>\n    </style><item format=\"float\" name=\"abc_disabled_alpha_material_light\" type=\"dimen\">0.26</item><style name=\"Widget.AppCompat.Light.ActionBar.Solid\" parent=\"Base.Widget.AppCompat.Light.ActionBar.Solid\">\n    </style><dimen name=\"abc_action_bar_icon_vertical_padding_material\">16dp</dimen><color name=\"dim_foreground_material_light\">#ff323232</color><dimen name=\"abc_search_view_text_min_width\">160dip</dimen><style name=\"AlertDialog.AppCompat.Light\" parent=\"Base.AlertDialog.AppCompat.Light\"/><style name=\"Widget.AppCompat.Light.AutoCompleteTextView\" parent=\"Widget.AppCompat.AutoCompleteTextView\"/><color name=\"switch_thumb_normal_material_light\">#fff1f1f1</color><style name=\"Base.Theme.AppCompat.Light.DialogWhenLarge\" parent=\"Theme.AppCompat.Light\"/><style name=\"Base.Theme.AppCompat.Light.Dialog.Alert\">\n        <item name=\"windowMinWidthMajor\">@dimen/abc_dialog_min_width_major</item>\n        <item name=\"windowMinWidthMinor\">@dimen/abc_dialog_min_width_minor</item>\n    </style><color name=\"material_grey_850\">#ff303030</color><style name=\"Base.Theme.AppCompat.Light.Dialog.FixedSize\">\n        <item name=\"windowFixedWidthMajor\">@dimen/dialog_fixed_width_major</item>\n        <item name=\"windowFixedWidthMinor\">@dimen/dialog_fixed_width_minor</item>\n        <item name=\"windowFixedHeightMajor\">@dimen/dialog_fixed_height_major</item>\n        <item name=\"windowFixedHeightMinor\">@dimen/dialog_fixed_height_minor</item>\n    </style><style name=\"Base.Animation.AppCompat.Dialog\" parent=\"android:Animation\">\n        <item name=\"android:windowEnterAnimation\">@anim/abc_popup_enter</item>\n        <item name=\"android:windowExitAnimation\">@anim/abc_popup_exit</item>\n    </style><dimen name=\"abc_action_bar_default_padding_end_material\">0dp</dimen><declare-styleable name=\"View\"><attr format=\"dimension\" name=\"paddingStart\"/><attr format=\"dimension\" name=\"paddingEnd\"/><attr name=\"android:focusable\"/><attr format=\"reference\" name=\"theme\"/><attr name=\"android:theme\"/></declare-styleable><color name=\"secondary_text_default_material_dark\">#b3ffffff</color><style name=\"Widget.AppCompat.ProgressBar\" parent=\"Base.Widget.AppCompat.ProgressBar\">\n    </style><style name=\"Base.Theme.AppCompat\" parent=\"Base.V7.Theme.AppCompat\">\n    </style><color name=\"material_grey_600\">#ff757575</color><style name=\"Theme.AppCompat.NoActionBar\">\n        <item name=\"windowActionBar\">false</item>\n        <item name=\"windowNoTitle\">true</item>\n    </style><dimen name=\"abc_control_inset_material\">4dp</dimen><style name=\"Platform.ThemeOverlay.AppCompat.Light\">\n        <item name=\"actionBarItemBackground\">@drawable/abc_item_background_holo_light</item>\n        <item name=\"actionDropDownStyle\">@style/Widget.AppCompat.Light.Spinner.DropDown.ActionBar</item>\n        <item name=\"selectableItemBackground\">@drawable/abc_item_background_holo_light</item>\n\n        <!-- SearchView attributes -->\n        <item name=\"android:autoCompleteTextViewStyle\">@style/Widget.AppCompat.Light.AutoCompleteTextView</item>\n        <item name=\"android:dropDownItemStyle\">@style/Widget.AppCompat.DropDownItem.Spinner</item>\n    </style><style name=\"Platform.ThemeOverlay.AppCompat\" parent=\"\"/><style name=\"TextAppearance.AppCompat.Widget.ActionBar.Title\" parent=\"Base.TextAppearance.AppCompat.Widget.ActionBar.Title\"/><color name=\"material_blue_grey_950\">#ff21272b</color><dimen name=\"abc_action_bar_content_inset_material\">16dp</dimen><style name=\"Widget.AppCompat.Spinner.DropDown.ActionBar\"/><string name=\"abc_shareactionprovider_share_with\">Share with</string><style name=\"TextAppearance.AppCompat.Widget.PopupMenu.Small\" parent=\"Base.TextAppearance.AppCompat.Widget.PopupMenu.Small\">\n    </style><color name=\"accent_material_light\">@color/material_deep_teal_500</color><string name=\"abc_action_bar_home_description_format\">%1$s, %2$s</string><style name=\"Widget.AppCompat.Light.ActionBar.TabText\" parent=\"Base.Widget.AppCompat.Light.ActionBar.TabText\">\n    </style><dimen name=\"abc_text_size_display_2_material\">45sp</dimen><style name=\"Base.Widget.AppCompat.ActionBar.TabView\" parent=\"\">\n        <item name=\"android:background\">@drawable/abc_tab_indicator_material</item>\n        <item name=\"android:gravity\">center_horizontal</item>\n        <item name=\"android:paddingLeft\">16dip</item>\n        <item name=\"android:paddingRight\">16dip</item>\n        <item name=\"android:layout_width\">0dip</item>\n        <item name=\"android:layout_weight\">1</item>\n        <item name=\"android:minWidth\">80dip</item>\n    </style><attr format=\"boolean\" name=\"isLightTheme\"/><style name=\"Widget.AppCompat.Button\" parent=\"Base.Widget.AppCompat.Button\"/><style name=\"Base.TextAppearance.AppCompat.SearchResult.Title\">\n        <item name=\"android:textSize\">18sp</item>\n    </style><style name=\"Theme.AppCompat.Light.DarkActionBar\" parent=\"Base.Theme.AppCompat.Light.DarkActionBar\"/><style name=\"Platform.AppCompat\" parent=\"android:Theme\">\n        <item name=\"android:windowNoTitle\">true</item>\n\n        <!-- Window colors -->\n        <item name=\"android:colorForeground\">@color/foreground_material_dark</item>\n        <item name=\"android:colorForegroundInverse\">@color/foreground_material_light</item>\n        <item name=\"android:colorBackground\">@color/background_material_dark</item>\n        <item name=\"android:colorBackgroundCacheHint\">@color/abc_background_cache_hint_selector_material_dark</item>\n        <item name=\"android:disabledAlpha\">@dimen/abc_disabled_alpha_material_dark</item>\n        <item name=\"android:backgroundDimAmount\">0.6</item>\n        <item name=\"android:windowBackground\">@color/background_material_dark</item>\n\n        <!-- Text colors -->\n        <item name=\"android:textColorPrimary\">@color/abc_primary_text_material_dark</item>\n        <item name=\"android:textColorPrimaryInverse\">@color/abc_primary_text_material_light</item>\n        <item name=\"android:textColorPrimaryDisableOnly\">@color/abc_primary_text_disable_only_material_dark</item>\n        <item name=\"android:textColorSecondary\">@color/abc_secondary_text_material_dark</item>\n        <item name=\"android:textColorSecondaryInverse\">@color/abc_secondary_text_material_light</item>\n        <item name=\"android:textColorTertiary\">@color/abc_secondary_text_material_dark</item>\n        <item name=\"android:textColorTertiaryInverse\">@color/abc_secondary_text_material_light</item>\n        <item name=\"android:textColorHint\">@color/hint_foreground_material_dark</item>\n        <item name=\"android:textColorHintInverse\">@color/hint_foreground_material_light</item>\n        <item name=\"android:textColorHighlight\">@color/highlighted_text_material_dark</item>\n        <item name=\"android:textColorLink\">?attr/colorAccent</item>\n\n        <!-- Text styles -->\n        <item name=\"android:textAppearance\">@style/TextAppearance.AppCompat</item>\n        <item name=\"android:textAppearanceInverse\">@style/TextAppearance.AppCompat.Inverse</item>\n        <item name=\"android:textAppearanceLarge\">@style/TextAppearance.AppCompat.Large</item>\n        <item name=\"android:textAppearanceLargeInverse\">@style/TextAppearance.AppCompat.Large.Inverse</item>\n        <item name=\"android:textAppearanceMedium\">@style/TextAppearance.AppCompat.Medium</item>\n        <item name=\"android:textAppearanceMediumInverse\">@style/TextAppearance.AppCompat.Medium.Inverse</item>\n        <item name=\"android:textAppearanceSmall\">@style/TextAppearance.AppCompat.Small</item>\n        <item name=\"android:textAppearanceSmallInverse\">@style/TextAppearance.AppCompat.Small.Inverse</item>\n\n        <item name=\"android:listChoiceIndicatorSingle\">@drawable/abc_btn_radio_material</item>\n        <item name=\"android:listChoiceIndicatorMultiple\">@drawable/abc_btn_check_material</item>\n    </style><style name=\"Widget.AppCompat.ProgressBar.Horizontal\" parent=\"Base.Widget.AppCompat.ProgressBar.Horizontal\">\n    </style><style name=\"Base.Widget.AppCompat.CompoundButton.CheckBox\" parent=\"android:Widget.CompoundButton.CheckBox\">\n        <item name=\"android:button\">?android:attr/listChoiceIndicatorMultiple</item>\n        <item name=\"android:background\">?attr/controlBackground</item>\n    </style><style name=\"Theme.AppCompat\" parent=\"Base.Theme.AppCompat\"/><color name=\"abc_input_method_navigation_guard\">@android:color/black</color><style name=\"TextAppearance.AppCompat.Medium.Inverse\" parent=\"Base.TextAppearance.AppCompat.Medium.Inverse\"/><style name=\"Base.Theme.AppCompat.DialogWhenLarge\" parent=\"Theme.AppCompat\"/><color name=\"dim_foreground_material_dark\">#ffbebebe</color><color name=\"primary_dark_material_light\">@color/material_grey_600</color><style name=\"Widget.AppCompat.TextView.SpinnerItem\" parent=\"Base.Widget.AppCompat.TextView.SpinnerItem\"/><color name=\"material_grey_900\">#ff212121</color><style name=\"TextAppearance.StatusBar.EventContent.Line2\" parent=\"\"/><style name=\"Base.Widget.AppCompat.Button.Borderless.Colored\">\n        <item name=\"android:textColor\">?attr/colorAccent</item>\n    </style><declare-styleable name=\"Spinner\"><attr name=\"android:prompt\"/><attr name=\"popupTheme\"/><attr name=\"android:popupBackground\"/><attr name=\"android:dropDownWidth\"/></declare-styleable><style name=\"TextAppearance.AppCompat.Widget.Switch\" parent=\"Base.TextAppearance.AppCompat.Widget.Switch\"/><string name=\"abc_searchview_description_voice\">Voice search</string><style name=\"Base.V7.Theme.AppCompat.Light.Dialog\" parent=\"Base.Theme.AppCompat.Light\">\n        <item name=\"android:colorBackground\">@color/background_floating_material_light</item>\n        <item name=\"android:colorBackgroundCacheHint\">@null</item>\n\n        <item name=\"android:windowFrame\">@null</item>\n        <item name=\"android:windowTitleStyle\">@style/RtlOverlay.DialogWindowTitle.AppCompat</item>\n        <item name=\"android:windowTitleBackgroundStyle\">@style/Base.DialogWindowTitleBackground.AppCompat</item>\n        <item name=\"android:windowBackground\">@drawable/abc_dialog_material_background_light</item>\n        <item name=\"android:windowIsFloating\">true</item>\n        <item name=\"android:backgroundDimEnabled\">true</item>\n        <item name=\"android:windowContentOverlay\">@null</item>\n        <item name=\"android:windowAnimationStyle\">@style/Animation.AppCompat.Dialog</item>\n        <item name=\"android:windowSoftInputMode\">stateUnspecified|adjustPan</item>\n\n        <item name=\"windowActionBar\">false</item>\n        <item name=\"windowActionModeOverlay\">true</item>\n\n        <item name=\"listPreferredItemPaddingLeft\">24dip</item>\n        <item name=\"listPreferredItemPaddingRight\">24dip</item>\n\n        <item name=\"android:listDivider\">@null</item>\n    </style><bool name=\"abc_config_showMenuShortcutsWhenKeyboardPresent\">false</bool><color name=\"bright_foreground_disabled_material_light\">#80000000</color><style name=\"Base.Widget.AppCompat.Light.ActionBar.TabText.Inverse\" parent=\"Base.Widget.AppCompat.Light.ActionBar.TabText\">\n        <item name=\"android:textAppearance\">@style/TextAppearance.AppCompat.Medium.Inverse</item>\n    </style><style name=\"Widget.AppCompat.ButtonBar.AlertDialog\" parent=\"Base.Widget.AppCompat.ButtonBar.AlertDialog\"/><style name=\"Theme.AppCompat.CompactMenu\" parent=\"Base.Theme.AppCompat.CompactMenu\"/><style name=\"Base.Widget.AppCompat.PopupWindow\" parent=\"android:Widget.PopupWindow\">\n    </style><style name=\"Base.TextAppearance.AppCompat.Widget.ActionMode.Title\" parent=\"TextAppearance.AppCompat.Widget.ActionBar.Title\"/><style name=\"Base.ThemeOverlay.AppCompat.Light\" parent=\"Platform.ThemeOverlay.AppCompat.Light\">\n        <item name=\"android:windowBackground\">@color/background_material_light</item>\n        <item name=\"android:colorForeground\">@color/foreground_material_light</item>\n        <item name=\"android:colorForegroundInverse\">@color/foreground_material_dark</item>\n        <item name=\"android:colorBackground\">@color/background_material_light</item>\n        <item name=\"android:colorBackgroundCacheHint\">@color/abc_background_cache_hint_selector_material_light</item>\n\n        <item name=\"android:textColorPrimary\">@color/abc_primary_text_material_light</item>\n        <item name=\"android:textColorPrimaryInverse\">@color/abc_primary_text_material_dark</item>\n        <item name=\"android:textColorSecondary\">@color/abc_secondary_text_material_light</item>\n        <item name=\"android:textColorSecondaryInverse\">@color/abc_secondary_text_material_dark</item>\n        <item name=\"android:textColorTertiary\">@color/abc_secondary_text_material_light</item>\n        <item name=\"android:textColorTertiaryInverse\">@color/abc_secondary_text_material_dark</item>\n        <item name=\"android:textColorPrimaryDisableOnly\">@color/abc_primary_text_disable_only_material_light</item>\n        <item name=\"android:textColorPrimaryInverseDisableOnly\">@color/abc_primary_text_disable_only_material_dark</item>\n        <item name=\"android:textColorHint\">@color/hint_foreground_material_light</item>\n        <item name=\"android:textColorHintInverse\">@color/hint_foreground_material_dark</item>\n        <item name=\"android:textColorHighlight\">@color/highlighted_text_material_light</item>\n\n        <item name=\"colorControlNormal\">?android:attr/textColorSecondary</item>\n        <item name=\"colorControlHighlight\">@color/ripple_material_light</item>\n        <item name=\"colorButtonNormal\">@color/button_material_light</item>\n        <item name=\"colorSwitchThumbNormal\">@color/switch_thumb_material_light</item>\n\n        <!-- Used by MediaRouter -->\n        <item name=\"isLightTheme\">true</item>\n    </style><dimen name=\"abc_text_size_medium_material\">18sp</dimen><style name=\"Base.Widget.AppCompat.Light.ActionBar.TabView\" parent=\"Base.Widget.AppCompat.ActionBar.TabView\">\n        <item name=\"android:background\">@drawable/abc_tab_indicator_material</item>\n    </style><style name=\"RtlOverlay.Widget.AppCompat.Search.DropDown\" parent=\"android:Widget\">\n        <item name=\"android:paddingLeft\">@dimen/abc_dropdownitem_text_padding_left</item>\n        <item name=\"android:paddingRight\">4dp</item>\n    </style><style name=\"Widget.AppCompat.SearchView.ActionBar\" parent=\"Base.Widget.AppCompat.SearchView.ActionBar\"/><dimen name=\"abc_dialog_padding_top_material\">18dp</dimen><style name=\"Theme.AppCompat.Dialog\" parent=\"Base.Theme.AppCompat.Dialog\"/><style name=\"Base.TextAppearance.AppCompat.Widget.Button\" parent=\"TextAppearance.AppCompat.Button\"/><style name=\"ThemeOverlay.AppCompat.Dark\" parent=\"Base.ThemeOverlay.AppCompat.Dark\"/><style name=\"Base.TextAppearance.AppCompat.Light.Widget.PopupMenu.Small\" parent=\"TextAppearance.AppCompat.Menu\">\n    </style><color name=\"background_floating_material_dark\">@color/material_grey_800</color><style name=\"Base.Widget.AppCompat.DrawerArrowToggle.Common\" parent=\"\">\n        <item name=\"color\">?android:attr/textColorSecondary</item>\n        <item name=\"spinBars\">true</item>\n        <item name=\"thickness\">2dp</item>\n        <item name=\"arrowShaftLength\">16dp</item>\n        <item name=\"arrowHeadLength\">8dp</item>\n    </style><style name=\"Base.TextAppearance.AppCompat.Button\">\n        <item name=\"android:textSize\">@dimen/abc_text_size_button_material</item>\n        <item name=\"textAllCaps\">true</item>\n        <item name=\"android:textColor\">?android:textColorPrimary</item>\n    </style><dimen name=\"abc_action_bar_stacked_max_height\">48dp</dimen><item name=\"abc_dialog_min_width_major\" type=\"dimen\">65%</item><style name=\"Widget.AppCompat.Light.ActionButton.CloseMode\" parent=\"Widget.AppCompat.ActionButton.CloseMode\"/><style name=\"Base.Widget.AppCompat.ActionButton.CloseMode\">\n        <item name=\"android:background\">?attr/controlBackground</item>\n    </style><string name=\"abc_searchview_description_clear\">Clear query</string><bool name=\"abc_action_bar_expanded_action_views_exclusive\">true</bool><style name=\"Base.Widget.AppCompat.CompoundButton.Switch\" parent=\"android:Widget.CompoundButton\">\n        <item name=\"track\">@drawable/abc_switch_track_mtrl_alpha</item>\n        <item name=\"android:thumb\">@drawable/abc_switch_thumb_material</item>\n        <item name=\"switchTextAppearance\">@style/TextAppearance.AppCompat.Widget.Switch</item>\n        <item name=\"android:background\">?attr/controlBackground</item>\n        <item name=\"showText\">false</item>\n        <item name=\"switchPadding\">@dimen/abc_switch_padding</item>\n    </style><style name=\"TextAppearance.StatusBar.EventContent.Title\" parent=\"\"/><declare-styleable name=\"ActivityChooserView\"><attr format=\"string\" name=\"initialActivityCount\"/><attr format=\"reference\" name=\"expandActivityOverflowButtonDrawable\"/></declare-styleable><style name=\"TextAppearance.AppCompat.Widget.ActionMode.Title.Inverse\" parent=\"TextAppearance.AppCompat.Widget.ActionMode.Title\"/><color name=\"switch_thumb_normal_material_dark\">#ffbdbdbd</color><color name=\"material_grey_800\">#ff424242</color><style name=\"Widget.AppCompat.SearchView\" parent=\"Base.Widget.AppCompat.SearchView\"/><style name=\"Base.TextAppearance.AppCompat.Headline\">\n        <item name=\"android:textSize\">@dimen/abc_text_size_headline_material</item>\n        <item name=\"android:textColor\">?android:textColorPrimary</item>\n    </style><style name=\"TextAppearance.AppCompat.Widget.ActionBar.Subtitle\" parent=\"Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle\"/><dimen name=\"abc_button_inset_horizontal_material\">@dimen/abc_control_inset_material</dimen><color name=\"material_blue_grey_800\">#ff37474f</color><style name=\"Base.Widget.AppCompat.ActionButton.Overflow\">\n        <item name=\"android:src\">@drawable/abc_ic_menu_moreoverflow_mtrl_alpha</item>\n        <item name=\"android:background\">?attr/actionBarItemBackground</item>\n        <item name=\"android:contentDescription\">@string/abc_action_menu_overflow_description</item>\n        <item name=\"android:minWidth\">@dimen/abc_action_button_min_width_overflow_material</item>\n        <item name=\"android:minHeight\">@dimen/abc_action_button_min_height_material</item>\n    </style><style name=\"Base.TextAppearance.AppCompat.SearchResult.Subtitle\">\n        <item name=\"android:textSize\">14sp</item>\n        <item name=\"android:textColor\">?android:textColorSecondary</item>\n    </style><declare-styleable name=\"ActionMenuView\"/><style name=\"TextAppearance.AppCompat.Widget.ActionMode.Title\" parent=\"Base.TextAppearance.AppCompat.Widget.ActionMode.Title\">\n    </style><declare-styleable name=\"CompoundButton\"><attr name=\"android:button\"/><attr format=\"color\" name=\"buttonTint\"/><attr name=\"buttonTintMode\"><enum name=\"src_over\" value=\"3\"/><enum name=\"src_in\" value=\"5\"/><enum name=\"src_atop\" value=\"9\"/><enum name=\"multiply\" value=\"14\"/><enum name=\"screen\" value=\"15\"/></attr></declare-styleable><style name=\"Base.Animation.AppCompat.DropDownUp\" parent=\"android:Animation\">\n        <item name=\"android:windowEnterAnimation\">@anim/abc_grow_fade_in_from_bottom</item>\n        <item name=\"android:windowExitAnimation\">@anim/abc_shrink_fade_out_from_bottom</item>\n    </style><style name=\"TextAppearance.AppCompat.Widget.Button.Inverse\" parent=\"Base.TextAppearance.AppCompat.Widget.Button.Inverse\"/><item name=\"split_action_bar\" type=\"id\"/><style name=\"Theme.AppCompat.Light.Dialog.Alert\" parent=\"Base.Theme.AppCompat.Light.Dialog.Alert\"/><style name=\"Base.TextAppearance.AppCompat.Subhead.Inverse\">\n        <item name=\"android:textColor\">?android:attr/textColorPrimaryInverse</item>\n        <item name=\"android:textColorHint\">?android:attr/textColorHintInverse</item>\n    </style><style name=\"TextAppearance.AppCompat.Widget.ActionBar.Subtitle.Inverse\" parent=\"Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle.Inverse\">\n    </style><dimen name=\"abc_button_inset_vertical_material\">6dp</dimen><style name=\"Platform.ThemeOverlay.AppCompat.Dark\">\n        <!-- Action Bar styles -->\n        <item name=\"actionBarItemBackground\">@drawable/abc_item_background_holo_dark</item>\n        <item name=\"actionDropDownStyle\">@style/Widget.AppCompat.Spinner.DropDown.ActionBar</item>\n        <item name=\"selectableItemBackground\">@drawable/abc_item_background_holo_dark</item>\n\n        <!-- SearchView styles -->\n        <item name=\"android:autoCompleteTextViewStyle\">@style/Widget.AppCompat.AutoCompleteTextView</item>\n        <item name=\"android:dropDownItemStyle\">@style/Widget.AppCompat.DropDownItem.Spinner</item>\n    </style><declare-styleable name=\"ListPopupWindow\"><attr name=\"android:dropDownVerticalOffset\"/><attr name=\"android:dropDownHorizontalOffset\"/></declare-styleable><bool name=\"abc_config_actionMenuItemAllCaps\">true</bool><string name=\"abc_search_hint\">Search…</string><color name=\"hint_foreground_material_dark\">@color/bright_foreground_disabled_material_dark</color></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-af/values-af.xml\" qualifiers=\"af\"><string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Soeknavraag\"</string><string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Sien alles\"</string><string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string><string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Deel met\"</string><string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Kies \\'n program\"</string><string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Soek …\"</string><string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Soek\"</string><string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string><string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Stemsoektog\"</string><string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Deel met %s\"</string><string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Navigeer tuis\"</string><string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string><string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Nog opsies\"</string><string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Vou in\"</string><string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Vee navraag uit\"</string><string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Klaar\"</string><string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Dien navraag in\"</string><string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Navigeer op\"</string></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-am/values-am.xml\" qualifiers=\"am\"><string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"መጠይቅ ያስረክቡ\"</string><string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"የድምፅ ፍለጋ\"</string><string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"ከሚከተለው ጋር ያጋሩ\"</string><string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"ፈልግ…\"</string><string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"ወደ መነሻ ይዳስሱ\"</string><string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"መተግበሪያ ይምረጡ\"</string><string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"መጠይቅ አጽዳ\"</string><string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"ተጨማሪ አማራጮች\"</string><string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"የፍለጋ ጥያቄ\"</string><string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s፣ %2$s\"</string><string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"ወደ ላይ ይዳስሱ\"</string><string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"ከ%s ጋር ያጋሩ\"</string><string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"ተከናውኗል\"</string><string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string><string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s፣ %2$s፣ %3$s\"</string><string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"ፍለጋ\"</string><string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"ሰብስብ\"</string><string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"ሁሉንም ይመልከቱ\"</string></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ar/values-ar.xml\" qualifiers=\"ar\"><string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"محو طلب البحث\"</string><string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"خيارات إضافية\"</string><string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"تصغير\"</string><string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"التنقل إلى أعلى\"</string><string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"تم\"</string><string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"إرسال طلب البحث\"</string><string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"طلب البحث\"</string><string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s، %2$s، %3$s\"</string><string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"اختيار تطبيق\"</string><string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"بحث…\"</string><string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"التنقل إلى الشاشة الرئيسية\"</string><string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"+999\"</string><string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"‏مشاركة مع %s\"</string><string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"البحث الصوتي\"</string><string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"بحث\"</string><string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s، %2$s\"</string><string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"مشاركة مع\"</string><string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"عرض الكل\"</string></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-az-rAZ/values-az-rAZ.xml\" qualifiers=\"az-rAZ\"><string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string><string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Bununla paylaşın\"</string><string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string><string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Sorğunu təmizlə\"</string><string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Axtarış\"</string><string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Yuxarı get\"</string><string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Hamısına baxın\"</string><string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Axtarış sorğusu\"</string><string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Tətbiq seçin\"</string><string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Səsli axtarış\"</string><string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Evə get\"</string><string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string><string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Axtarış...\"</string><string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Daha çox seçim\"</string><string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Hazırdır\"</string><string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Dağıt\"</string><string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Sorğunu göndərin\"</string></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-bg/values-bg.xml\" qualifiers=\"bg\"><string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Търсене\"</string><string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"„%1$s“ – %2$s\"</string><string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Търсете…\"</string><string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Още опции\"</string><string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Заявка за търсене\"</string><string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string><string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Изчистване на заявката\"</string><string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Готово\"</string><string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Споделяне със: %s\"</string><string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Изпращане на заявката\"</string><string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"„%1$s“, „%2$s“ – %3$s\"</string><string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Изберете приложение\"</string><string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Гласово търсене\"</string><string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Придвижване нагоре\"</string><string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Придвижване към „Начало“\"</string><string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Вижте всички\"</string><string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Споделяне със:\"</string><string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Свиване\"</string></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-bn-rBD/values-bn-rBD.xml\" qualifiers=\"bn-rBD\"><string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"সঙ্কুচিত করুন\"</string><string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"হোম এ নেভিগেট করুন\"</string><string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"৯৯৯+\"</string><string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"একটি অ্যাপ্লিকেশান চয়ন করুন\"</string><string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"অনুসন্ধান...\"</string><string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"উপরের দিকে নেভিগেট করুন\"</string><string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"ক্যোয়ারী সাফ করুন\"</string><string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"এর সাথে ভাগ করুন\"</string><string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"ক্যোয়ারী জমা দিন\"</string><string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"%s এর সাথে ভাগ করুন\"</string><string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string><string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"ক্যোয়ারী অনুসন্ধান করুন\"</string><string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"আরো বিকল্প\"</string><string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string><string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"সবগুলো দেখুন\"</string><string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"সম্পন্ন হয়েছে\"</string><string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"অনুসন্ধান করুন\"</string><string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"ভয়েস অনুসন্ধান\"</string></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ca/values-ca.xml\" qualifiers=\"ca\"><string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Selecciona una aplicació\"</string><string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Replega\"</string><string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Esborra la consulta\"</string><string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Cerca...\"</string><string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Envia la consulta\"</string><string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string><string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Navega cap a dalt\"</string><string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string><string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Comparteix amb\"</string><string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Navega a la pàgina d\\'inici\"</string><string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Mostra\\'ls tots\"</string><string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Comparteix amb %s\"</string><string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Consulta de cerca\"</string><string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Cerca\"</string><string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Fet\"</string><string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Cerca per veu\"</string><string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"+999\"</string><string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Més opcions\"</string></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-cs/values-cs.xml\" qualifiers=\"cs\"><string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s – %3$s\"</string><string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Vyhledat…\"</string><string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Sdílet pomocí %s\"</string><string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Hledat\"</string><string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Zobrazit vše\"</string><string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Hlasové vyhledávání\"</string><string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Přejít na plochu\"</string><string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Odeslat dotaz\"</string><string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Sdílet pomocí\"</string><string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Hotovo\"</string><string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Sbalit\"</string><string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Více možností\"</string><string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s – %2$s\"</string><string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Smazat dotaz\"</string><string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Přejít nahoru\"</string><string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Vyhledávací dotaz\"</string><string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Vybrat aplikaci\"</string><string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-da/values-da.xml\" qualifiers=\"da\"><string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Vælg en app\"</string><string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string><string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Indsend forespørgslen\"</string><string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Ryd forespørgslen\"</string><string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Søgeforespørgsel\"</string><string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Naviger hjem\"</string><string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Søg…\"</string><string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string><string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Se alle\"</string><string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string><string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Søg\"</string><string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Del med\"</string><string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Naviger op\"</string><string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Skjul\"</string><string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Luk\"</string><string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Del med %s\"</string><string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Flere muligheder\"</string><string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Talesøgning\"</string></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-de/values-de.xml\" qualifiers=\"de\"><string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Sprachsuche\"</string><string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s: %2$s\"</string><string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Weitere Optionen\"</string><string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Minimieren\"</string><string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Suchanfrage löschen\"</string><string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Suchanfrage\"</string><string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Alle ansehen\"</string><string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Fertig\"</string><string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Zur Startseite\"</string><string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Suchen…\"</string><string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Freigeben für\"</string><string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Suchen\"</string><string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Freigeben für %s\"</string><string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Nach oben\"</string><string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string><string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"App auswählen\"</string><string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Suchanfrage senden\"</string><string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s: %3$s\"</string></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-el/values-el.xml\" qualifiers=\"el\"><string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Φωνητική αναζήτηση\"</string><string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Κοινή χρήση με %s\"</string><string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string><string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string><string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Υποβολή ερωτήματος\"</string><string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Αναζήτηση…\"</string><string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Κοινή χρήση με\"</string><string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string><string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Επιλέξτε κάποια εφαρμογή\"</string><string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Διαγραφή ερωτήματος\"</string><string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Πλοήγηση προς τα επάνω\"</string><string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Σύμπτυξη\"</string><string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Περισσότερες επιλογές\"</string><string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Τέλος\"</string><string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Πλοήγηση στην αρχική σελίδα\"</string><string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Ερώτημα αναζήτησης\"</string><string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Προβολή όλων\"</string><string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Αναζήτηση\"</string></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-en-rAU/values-en-rAU.xml\" qualifiers=\"en-rAU\"><string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Submit query\"</string><string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Voice search\"</string><string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string><string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"More options\"</string><string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Search…\"</string><string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string><string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Search query\"</string><string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Share with %s\"</string><string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Collapse\"</string><string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"See all\"</string><string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Choose an app\"</string><string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string><string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Done\"</string><string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Share with\"</string><string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Search\"</string><string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Clear query\"</string><string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Navigate home\"</string><string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Navigate up\"</string></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-en-rGB/values-en-rGB.xml\" qualifiers=\"en-rGB\"><string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string><string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Voice search\"</string><string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Submit query\"</string><string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"See all\"</string><string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Clear query\"</string><string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Navigate home\"</string><string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Done\"</string><string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"More options\"</string><string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Search\"</string><string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string><string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string><string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Search…\"</string><string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Search query\"</string><string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Collapse\"</string><string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Navigate up\"</string><string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Share with\"</string><string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Choose an app\"</string><string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Share with %s\"</string></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-en-rIN/values-en-rIN.xml\" qualifiers=\"en-rIN\"><string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string><string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Navigate home\"</string><string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Done\"</string><string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"See all\"</string><string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Voice search\"</string><string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Search\"</string><string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Choose an app\"</string><string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string><string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Clear query\"</string><string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Navigate up\"</string><string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Share with %s\"</string><string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Collapse\"</string><string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"More options\"</string><string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string><string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Search…\"</string><string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Submit query\"</string><string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Share with\"</string><string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Search query\"</string></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-es/values-es.xml\" qualifiers=\"es\"><string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Buscar…\"</string><string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Buscar\"</string><string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Ver todo\"</string><string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Consulta\"</string><string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Borrar consulta\"</string><string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Seleccionar una aplicación\"</string><string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Enviar consulta\"</string><string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Ir a la pantalla de inicio\"</string><string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"+999\"</string><string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Compartir con %s\"</string><string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Desplazarse hacia arriba\"</string><string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string><string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Búsqueda por voz\"</string><string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Listo\"</string><string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Contraer\"</string><string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string><string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Más opciones\"</string><string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Compartir con\"</string></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-es-rUS/values-es-rUS.xml\" qualifiers=\"es-rUS\"><string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Navegar a la página principal\"</string><string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Elige una aplicación.\"</string><string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Buscar…\"</string><string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Navegar hacia arriba\"</string><string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Búsqueda por voz\"</string><string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string><string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Consulta de búsqueda\"</string><string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string><string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Enviar consulta\"</string><string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Compartir con\"</string><string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Contraer\"</string><string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Listo\"</string><string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Compartir con %s\"</string><string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Más opciones\"</string><string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string><string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Eliminar la consulta\"</string><string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Ver todo\"</string><string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Búsqueda\"</string></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-et-rEE/values-et-rEE.xml\" qualifiers=\"et-rEE\"><string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Päringu tühistamine\"</string><string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string><string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Navigeerimine avaekraanile\"</string><string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Valmis\"</string><string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Jagamine kasutajaga %s\"</string><string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Ahendamine\"</string><string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Päringu esitamine\"</string><string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Jagamine:\"</string><string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Rohkem valikuid\"</string><string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Otsingupäring\"</string><string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string><string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Kuva kõik\"</string><string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Otsige …\"</string><string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Otsing\"</string><string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Valige rakendus\"</string><string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Navigeerimine üles\"</string><string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Häälotsing\"</string><string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-eu-rES/values-eu-rES.xml\" qualifiers=\"eu-rES\"><string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Bilatu\"</string><string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Tolestu\"</string><string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Joan orri nagusira\"</string><string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Garbitu kontsulta\"</string><string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Bilatu…\"</string><string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Partekatu hauekin\"</string><string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Aukera gehiago\"</string><string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Partekatu %s erabiltzailearekin\"</string><string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Bilaketa-kontsulta\"</string><string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Bidali kontsulta\"</string><string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string><string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Ahots bidezko bilaketa\"</string><string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string><string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Joan gora\"</string><string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Eginda\"</string><string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Aukeratu aplikazio bat\"</string><string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Ikusi guztiak\"</string><string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-fa/values-fa.xml\" qualifiers=\"fa\"><string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"اشتراک‌گذاری با\"</string><string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"انتخاب برنامه\"</string><string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"‏%1$s‏، %2$s\"</string><string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"‏%1$s‏، %2$s‏، %3$s\"</string><string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"ارسال عبارت جستجو\"</string><string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"کوچک کردن\"</string><string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"پیمایش به صفحه اصلی\"</string><string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"گزینه‌های بیشتر\"</string><string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"جستجو\"</string><string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"جستجوی شفاهی\"</string><string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"۹۹۹+\"</string><string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"عبارت جستجو\"</string><string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"‏اشتراک‌گذاری با %s\"</string><string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"جستجو…\"</string><string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"پیمایش به بالا\"</string><string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"مشاهده همه\"</string><string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"انجام شد\"</string><string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"پاک کردن عبارت جستجو\"</string></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-fi/values-fi.xml\" qualifiers=\"fi\"><string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Valmis\"</string><string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Lähetä kysely\"</string><string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Jakaminen:\"</string><string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Siirry ylös\"</string><string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Siirry etusivulle\"</string><string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Valitse sovellus\"</string><string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Lisää\"</string><string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Näytä kaikki\"</string><string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Haku\"</string><string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Kutista\"</string><string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string><string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Tyhjennä kysely\"</string><string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Puhehaku\"</string><string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string><string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Hakulauseke\"</string><string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Jakaminen: %s\"</string><string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string><string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Haku…\"</string></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-fr/values-fr.xml\" qualifiers=\"fr\"><string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Tout afficher\"</string><string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Partager avec\"</string><string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Rechercher\"</string><string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Sélectionner une application\"</string><string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Envoyer la requête\"</string><string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Revenir à l\\'accueil\"</string><string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Plus d\\'options\"</string><string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"OK\"</string><string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Requête de recherche\"</string><string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Revenir en haut de la page\"</string><string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string><string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Partager avec %s\"</string><string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Effacer la requête\"</string><string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Réduire\"</string><string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\">999\"</string><string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string><string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Rechercher…\"</string><string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Recherche vocale\"</string></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-fr-rCA/values-fr-rCA.xml\" qualifiers=\"fr-rCA\"><string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Recherche en cours...\"</string><string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Revenir à l\\'accueil\"</string><string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Partager avec %s\"</string><string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\">999\"</string><string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string><string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Terminé\"</string><string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string><string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Sélectionnez une application\"</string><string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Rechercher\"</string><string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Recherche vocale\"</string><string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Partager\"</string><string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Voir toutes les chaînes\"</string><string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Réduire\"</string><string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Effacer la requête\"</string><string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Envoyer la requête\"</string><string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Requête de recherche\"</string><string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Plus d\\'options\"</string><string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Revenir en haut de la page\"</string></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-gl-rES/values-gl-rES.xml\" qualifiers=\"gl-rES\"><string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Consulta de busca\"</string><string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Buscar\"</string><string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Compartir con %s\"</string><string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Desprazarse cara arriba\"</string><string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Borrar consulta\"</string><string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Feito\"</string><string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Enviar consulta\"</string><string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Contraer\"</string><string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Máis opcións\"</string><string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Compartir con\"</string><string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Ver todas\"</string><string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Buscar…\"</string><string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Ir á páxina de inicio\"</string><string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string><string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Busca de voz\"</string><string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\">999\"</string><string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string><string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Escoller unha aplicación\"</string></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-gu-rIN/values-gu-rIN.xml\" qualifiers=\"gu-rIN\"><string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"વૉઇસ શોધ\"</string><string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"ઉપર નેવિગેટ કરો\"</string><string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"આની સાથે શેર કરો\"</string><string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string><string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"થઈ ગયું\"</string><string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"સંકુચિત કરો\"</string><string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"શોધો\"</string><string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"હોમ પર નેવિગેટ કરો\"</string><string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"બધું જુઓ\"</string><string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"શોધો…\"</string><string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"%s સાથે શેર કરો\"</string><string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string><string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"એક એપ્લિકેશન પસંદ કરો\"</string><string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"શોધ ક્વેરી\"</string><string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"ક્વેરી સાફ કરો\"</string><string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"ક્વેરી સબમિટ કરો\"</string><string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"વધુ વિકલ્પો\"</string><string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-h720dp/values-h720dp.xml\" qualifiers=\"h720dp\"><dimen name=\"abc_alert_dialog_button_bar_height\">54dip</dimen></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hdpi/values-hdpi.xml\" qualifiers=\"hdpi\"><style name=\"Base.Widget.AppCompat.DrawerArrowToggle\" parent=\"Base.Widget.AppCompat.DrawerArrowToggle.Common\">\n          <item name=\"barLength\">18.66dp</item>\n          <item name=\"gapBetweenBars\">3.33dp</item>\n          <item name=\"drawableSize\">24dp</item>\n     </style></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hi/values-hi.xml\" qualifiers=\"hi\"><string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"पूर्ण\"</string><string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string><string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"ध्वनि खोज\"</string><string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"क्‍वेरी साफ़ करें\"</string><string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"%s के साथ साझा करें\"</string><string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"संक्षिप्त करें\"</string><string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"अधिक विकल्प\"</string><string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"कोई एप्‍लिकेशन चुनें\"</string><string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"सभी देखें\"</string><string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"खोज क्वेरी\"</string><string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"मुख्यपृष्ठ पर नेविगेट करें\"</string><string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"खोजें\"</string><string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string><string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"इसके द्वारा साझा करें\"</string><string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"ऊपर नेविगेट करें\"</string><string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string><string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"खोजा जा रहा है…\"</string><string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"क्वेरी सबमिट करें\"</string></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hr/values-hr.xml\" qualifiers=\"hr\"><string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Gotovo\"</string><string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Prikaži sve\"</string><string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Odabir aplikacije\"</string><string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Idi na početnu\"</string><string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Pretraživanje\"</string><string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string><string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Dodatne opcije\"</string><string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Sažmi\"</string><string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Glasovno pretraživanje\"</string><string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Dijeljenje sa: %s\"</string><string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string><string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string><string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Pretražite…\"</string><string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Upit za pretraživanje\"</string><string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Dijeljenje sa\"</string><string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Pošalji upit\"</string><string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Idi gore\"</string><string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Izbriši upit\"</string></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hu/values-hu.xml\" qualifiers=\"hu\"><string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Lekérdezés küldése\"</string><string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Ugrás a főoldalra\"</string><string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Lekérdezés törlése\"</string><string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Összecsukás\"</string><string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Megosztás a következővel: %s\"</string><string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string><string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Hangalapú keresés\"</string><string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string><string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Kész\"</string><string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"További lehetőségek\"</string><string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Megosztás a következővel:\"</string><string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Összes megtekintése\"</string><string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Felfelé mozgatás\"</string><string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Keresés…\"</string><string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string><string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Válasszon ki egy alkalmazást\"</string><string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Keresés\"</string><string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Keresési lekérdezés\"</string></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hy-rAM/values-hy-rAM.xml\" qualifiers=\"hy-rAM\"><string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Ուղարկել հարցումը\"</string><string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Տարածել\"</string><string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string><string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Տեսնել բոլորը\"</string><string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Այլ ընտրանքներ\"</string><string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Ուղղվել տուն\"</string><string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Կատարված է\"</string><string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Որոնել\"</string><string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Որոնում...\"</string><string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Մաքրել հարցումը\"</string><string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Ձայնային որոնում\"</string><string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Ուղղվել վերև\"</string><string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Որոնման հարցում\"</string><string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Թաքցնել\"</string><string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Ընտրել ծրագիր\"</string><string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Տարածել ըստ %s\"</string><string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string><string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-in/values-in.xml\" qualifiers=\"in\"><string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Navigasi ke beranda\"</string><string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Lihat semua\"</string><string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Bagikan dengan %s\"</string><string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Navigasi naik\"</string><string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Telusuri...\"</string><string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Ciutkan\"</string><string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Telusuri\"</string><string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Bagikan dengan\"</string><string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Opsi lain\"</string><string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Pilih aplikasi\"</string><string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Penelusuran suara\"</string><string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string><string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string><string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Selesai\"</string><string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string><string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Hapus kueri\"</string><string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Kirim kueri\"</string><string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Kueri penelusuran\"</string></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-is-rIS/values-is-rIS.xml\" qualifiers=\"is-rIS\"><string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string><string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Leita\"</string><string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Fara heim\"</string><string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string><string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Leitarfyrirspurn\"</string><string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Deila með\"</string><string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string><string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Leita…\"</string><string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Raddleit\"</string><string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Fleiri valkostir\"</string><string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Hreinsa fyrirspurn\"</string><string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Deila með %s\"</string><string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Senda fyrirspurn\"</string><string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Sjá allt\"</string><string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Minnka\"</string><string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Lokið\"</string><string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Fara upp\"</string><string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Veldu forrit\"</string></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-it/values-it.xml\" qualifiers=\"it\"><string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Scegli un\\'applicazione\"</string><string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Comprimi\"</string><string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Ricerca vocale\"</string><string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Cancella query\"</string><string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Altre opzioni\"</string><string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string><string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Fine\"</string><string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Condividi con %s\"</string><string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string><string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Visualizza tutte\"</string><string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Vai in alto\"</string><string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Cerca…\"</string><string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Cerca\"</string><string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Invia query\"</string><string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Condividi con\"</string><string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Query di ricerca\"</string><string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string><string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Vai alla home page\"</string></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-iw/values-iw.xml\" qualifiers=\"iw\"><string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"‏%1$s‏, %2$s‏, %3$s\"</string><string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"מחק שאילתה\"</string><string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"חפש\"</string><string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"בחר אפליקציה\"</string><string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"ראה הכל\"</string><string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"‏שתף עם %s\"</string><string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"עוד אפשרויות\"</string><string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"בוצע\"</string><string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"חפש…\"</string><string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"שלח שאילתה\"</string><string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"‎999+‎\"</string><string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"שאילתת חיפוש\"</string><string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"נווט לדף הבית\"</string><string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"‏%1$s‏, %2$s\"</string><string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"חיפוש קולי\"</string><string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"שתף עם\"</string><string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"נווט למעלה\"</string><string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"כווץ\"</string></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ja/values-ja.xml\" qualifiers=\"ja\"><string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s、%2$s\"</string><string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"アプリの選択\"</string><string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"検索…\"</string><string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"検索キーワードを削除\"</string><string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"折りたたむ\"</string><string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"共有\"</string><string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"検索キーワードを送信\"</string><string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"上へ移動\"</string><string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"%sと共有\"</string><string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"すべて表示\"</string><string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"その他のオプション\"</string><string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"検索キーワード\"</string><string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"検索\"</string><string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"完了\"</string><string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"音声検索\"</string><string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s、%2$s、%3$s\"</string><string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"ホームへ移動\"</string><string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ka-rGE/values-ka-rGE.xml\" qualifiers=\"ka-rGE\"><string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"მოთხოვნის გადაგზავნა\"</string><string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"ხმოვანი ძიება\"</string><string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string><string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"მოთხოვნის გასუფთავება\"</string><string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"გაზიარება:\"</string><string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"აკეცვა\"</string><string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string><string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"მეტი ვარიანტები\"</string><string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string><string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"%s-თან გაზიარება\"</string><string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"მთავარზე ნავიგაცია\"</string><string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"დასრულდა\"</string><string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"ძიება\"</string><string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"ზემოთ ნავიგაცია\"</string><string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"ყველას ნახვა\"</string><string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"აპის არჩევა\"</string><string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"ძიება...\"</string><string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"ძიების მოთხოვნა\"</string></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-kk-rKZ/values-kk-rKZ.xml\" qualifiers=\"kk-rKZ\"><string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Сұрақты іздеу\"</string><string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Іздеу\"</string><string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string><string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Дайын\"</string><string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"%s бөлісу\"</string><string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Дауыс арқылы іздеу\"</string><string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string><string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Жоғары қозғалу\"</string><string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Іздеу…\"</string><string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Тасалау\"</string><string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string><string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Сұрақты жіберу\"</string><string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Бөлісу\"</string><string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Сұрақты жою\"</string><string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Басқа опциялар\"</string><string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Қолданбаны таңдау\"</string><string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Барлығын көру\"</string><string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Негізгі бетте қозғалу\"</string></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-km-rKH/values-km-rKH.xml\" qualifiers=\"km-rKH\"><string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"ជម្រើស​ច្រើន​ទៀត\"</string><string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"រួចរាល់\"</string><string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"សម្អាត​សំណួរ\"</string><string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"ដាក់​​​ស្នើ​សំណួរ\"</string><string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"ស្វែងរក​សំណួរ\"</string><string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"ចែករំលែក​ជាមួយ %s\"</string><string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string><string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"មើល​ទាំងអស់\"</string><string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"ការស្វែងរក​សំឡេង\"</string><string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"រកមើល​ឡើងលើ\"</string><string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"ចែករំលែក​ជាមួយ\"</string><string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"រកមើល​ទៅ​ដើម\"</string><string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string><string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"ស្វែងរក\"</string><string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string><string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"បង្រួម\"</string><string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"ជ្រើស​កម្មវិធី​​\"</string><string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"ស្វែងរក…\"</string></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-kn-rIN/values-kn-rIN.xml\" qualifiers=\"kn-rIN\"><string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"ಪ್ರಶ್ನೆಯನ್ನು ಹುಡುಕಿ\"</string><string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"ಇವರೊಂದಿಗೆ ಹಂಚಿಕೊಳ್ಳಿ\"</string><string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"ಹುಡುಕು\"</string><string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"ಮುಗಿದಿದೆ\"</string><string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"ಎಲ್ಲವನ್ನೂ ನೋಡಿ\"</string><string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"ಹುಡುಕಿ…\"</string><string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"ಮುಖಪುಟವನ್ನು ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ\"</string><string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string><string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"%s ಜೊತೆಗೆ ಹಂಚಿಕೊಳ್ಳಿ\"</string><string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"ಇನ್ನಷ್ಟು ಆಯ್ಕೆಗಳು\"</string><string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"ಒಂದು ಅಪ್ಲಿಕೇಶನ್ ಆಯ್ಕೆಮಾಡಿ\"</string><string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string><string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"ಸಂಕುಚಿಸು\"</string><string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"ಮೇಲಕ್ಕೆ ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ\"</string><string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"ಪ್ರಶ್ನೆಯನ್ನು ಸಲ್ಲಿಸು\"</string><string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"ಪ್ರಶ್ನೆಯನ್ನು ತೆರವುಗೊಳಿಸು\"</string><string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string><string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"ಧ್ವನಿ ಹುಡುಕಾಟ\"</string></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ko/values-ko.xml\" qualifiers=\"ko\"><string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"옵션 더보기\"</string><string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"검색\"</string><string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"%s와(과) 공유\"</string><string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"검색어\"</string><string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"위로 탐색\"</string><string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"검색어 삭제\"</string><string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"검색...\"</string><string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string><string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"음성 검색\"</string><string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string><string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"검색어 보내기\"</string><string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"접기\"</string><string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"공유 대상\"</string><string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"완료\"</string><string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"홈 탐색\"</string><string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"전체 보기\"</string><string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"앱 선택\"</string><string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ky-rKG/values-ky-rKG.xml\" qualifiers=\"ky-rKG\"><string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Бөлүшүү\"</string><string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Издөө талаптары\"</string><string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"%s аркылуу бөлүшүү\"</string><string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string><string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Колдонмо тандоо\"</string><string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Издөө\"</string><string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Үйгө багыттоо\"</string><string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Үн аркылуу издөө\"</string><string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Бардыгын көрүү\"</string><string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Жыйнап коюу\"</string><string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Талаптарды тазалоо\"</string><string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Издөө…\"</string><string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Талап жөнөтүү\"</string><string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string><string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Даяр\"</string><string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Көбүрөөк мүмкүнчүлүктөр\"</string><string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string><string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Жогору\"</string></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-land/values-land.xml\" qualifiers=\"land\"><dimen name=\"abc_action_bar_progress_bar_size\">32dp</dimen><dimen name=\"abc_text_size_title_material_toolbar\">14dp</dimen><bool name=\"abc_config_allowActionMenuItemTextWithIcon\">true</bool><dimen name=\"abc_action_bar_default_height_material\">48dp</dimen><dimen name=\"abc_text_size_subtitle_material_toolbar\">12dp</dimen><bool name=\"abc_action_bar_embed_tabs_pre_jb\">true</bool></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-large/values-large.xml\" qualifiers=\"large\"><item name=\"dialog_fixed_height_major\" type=\"dimen\">60%</item><style name=\"Base.Theme.AppCompat.Light.DialogWhenLarge\" parent=\"Base.Theme.AppCompat.Light.Dialog.FixedSize\"/><item name=\"dialog_fixed_width_major\" type=\"dimen\">60%</item><style name=\"Base.Theme.AppCompat.DialogWhenLarge\" parent=\"Base.Theme.AppCompat.Dialog.FixedSize\"/><bool name=\"abc_config_allowActionMenuItemTextWithIcon\">true</bool><dimen name=\"abc_search_view_text_min_width\">192dip</dimen><item name=\"dialog_fixed_height_minor\" type=\"dimen\">90%</item><item name=\"dialog_fixed_width_minor\" type=\"dimen\">90%</item><integer name=\"abc_max_action_buttons\">4</integer><bool name=\"abc_action_bar_embed_tabs_pre_jb\">true</bool><dimen name=\"abc_config_prefDialogWidth\">440dp</dimen></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-lo-rLA/values-lo-rLA.xml\" qualifiers=\"lo-rLA\"><string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"ສົ່ງການຊອກຫາ\"</string><string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"ໂຕເລືອກອື່ນ\"</string><string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"ແບ່ງ​ປັນ​ກັບ​ %s\"</string><string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"ຫຍໍ້\"</string><string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"ລຶບຂໍ້ຄວາມຊອກຫາ\"</string><string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string><string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"ຊອກຫາດ້ວຍສຽງ\"</string><string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"ຂຶ້ນເທິງ\"</string><string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"ເລືອກແອັບຯ\"</string><string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"ຊອກຫາ\"</string><string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string><string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"ຊອກຫາ\"</string><string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"ແບ່ງປັນກັບ\"</string><string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"ກັບໄປໜ້າຫຼັກ\"</string><string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string><string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"ເບິ່ງທັງຫມົດ\"</string><string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"ແລ້ວໆ\"</string><string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"ຊອກຫາ\"</string></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-lt/values-lt.xml\" qualifiers=\"lt\"><string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Išvalyti užklausą\"</string><string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Pasirinkti programą\"</string><string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Pateikti užklausą\"</string><string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Sutraukti\"</string><string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Bendrinti naudojant „%s“\"</string><string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Eiti į viršų\"</string><string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Ieškoti...\"</string><string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Bendrinti naudojant\"</string><string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string><string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string><string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Paieška balsu\"</string><string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Atlikta\"</string><string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Paieškos užklausa\"</string><string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Eiti į pagrindinį puslapį\"</string><string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Paieška\"</string><string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string><string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Daugiau parinkčių\"</string><string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Peržiūrėti viską\"</string></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-lv/values-lv.xml\" qualifiers=\"lv\"><string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Meklējiet…\"</string><string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Skatīt visu\"</string><string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Izvēlieties lietotni\"</string><string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Pārvietoties uz sākuma ekrānu\"</string><string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Meklēt\"</string><string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Meklēšana ar balsi\"</string><string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Gatavs\"</string><string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Sakļaut\"</string><string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string><string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Meklēšanas vaicājums\"</string><string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Kopīgot ar:\"</string><string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s: %3$s\"</string><string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Iesniegt vaicājumu\"</string><string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Vairāk opciju\"</string><string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Pārvietoties augšup\"</string><string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Notīrīt vaicājumu\"</string><string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Kopīgot ar %s\"</string><string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s: %2$s\"</string></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-mk-rMK/values-mk-rMK.xml\" qualifiers=\"mk-rMK\"><string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Пребарај барање\"</string><string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Движи се нагоре\"</string><string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Избери апликација\"</string><string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Пребарај\"</string><string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Сподели со\"</string><string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Пребарување…\"</string><string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Гласовно пребарување\"</string><string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string><string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Собери\"</string><string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Готово\"</string><string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Движи се кон дома\"</string><string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string><string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Поднеси барање\"</string><string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Види ги сите\"</string><string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Повеќе опции\"</string><string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Исчисти барање\"</string></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ml-rIN/values-ml-rIN.xml\" qualifiers=\"ml-rIN\"><string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"ഇവരുമായി പങ്കിടുക\"</string><string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"തിരയുക…\"</string><string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"തിരയൽ\"</string><string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string><string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"തിരയൽ അന്വേഷണം\"</string><string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"%s എന്നതുമായി പങ്കിടുക\"</string><string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"മുകളിലേക്ക് നാവിഗേറ്റുചെയ്യുക\"</string><string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"എല്ലാം കാണുക\"</string><string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"ഒരു അപ്ലിക്കേഷൻ തിരഞ്ഞെടുക്കുക\"</string><string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string><string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"കൂടുതല്‍ ഓപ്‌ഷനുകള്‍\"</string><string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"പൂർത്തിയാക്കി\"</string><string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"ശബ്ദ തിരയൽ\"</string><string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string><string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"ചുരുക്കുക\"</string><string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"ഹോമിലേക്ക് നാവിഗേറ്റുചെയ്യുക\"</string><string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"അന്വേഷണം മായ്‌ക്കുക\"</string><string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"അന്വേഷണം സമർപ്പിക്കുക\"</string></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-mn-rMN/values-mn-rMN.xml\" qualifiers=\"mn-rMN\"><string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Хайх\"</string><string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Нүүр хуудас руу шилжих\"</string><string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Нэмэлт сонголтууд\"</string><string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Бүгдийг харах\"</string><string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Хайх...\"</string><string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Хайх асуулга\"</string><string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string><string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Хуваалцах\"</string><string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"%s-тай хуваалцах\"</string><string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Асуулгыг цэвэрлэх\"</string><string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string><string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Апп сонгох\"</string><string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string><string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Дууссан\"</string><string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Дуут хайлт\"</string><string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Дээш шилжих\"</string><string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Асуулгыг илгээх\"</string><string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Хумих\"</string></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-mr-rIN/values-mr-rIN.xml\" qualifiers=\"mr-rIN\"><string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"संक्षिप्त करा\"</string><string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"क्‍वेरी स्‍पष्‍ट करा\"</string><string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"शोध\"</string><string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"%s सह सामायिक करा\"</string><string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"सर्व पहा\"</string><string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"एक अ‍ॅप निवडा\"</string><string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string><string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"वर नेव्‍हिगेट करा\"</string><string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"शोधा…\"</string><string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"पूर्ण झाले\"</string><string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"क्वेरी सबमिट करा\"</string><string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"शोध क्वेरी\"</string><string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"यांच्यासह सामायिक करा\"</string><string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"मुख्‍यपृष्‍ठ नेव्‍हिगेट करा\"</string><string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"व्हॉइस शोध\"</string><string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string><string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"अधिक पर्याय\"</string><string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ms-rMY/values-ms-rMY.xml\" qualifiers=\"ms-rMY\"><string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Runtuhkan\"</string><string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Pilih apl\"</string><string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Selesai\"</string><string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string><string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Lagi pilihan\"</string><string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Lihat semua\"</string><string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Carian suara\"</string><string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Kongsi dengan %s\"</string><string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Navigasi skrin utama\"</string><string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Navigasi ke atas\"</string><string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Cari\"</string><string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string><string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string><string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Kongsi dengan\"</string><string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Pertanyaan carian\"</string><string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Serah pertanyaan\"</string><string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Kosongkan pertanyaan\"</string><string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Cari…\"</string></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-my-rMM/values-my-rMM.xml\" qualifiers=\"my-rMM\"><string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s ၊ %2$s ၊ %3$s\"</string><string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"ပြီးဆုံးပါပြီ\"</string><string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"အပလီကေးရှင်း တစ်ခုခုကို ရွေးချယ်ပါ\"</string><string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"ရှာဖွေစရာ အချက်အလက်ကို အတည်ပြုရန်\"</string><string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"အားလုံးကို ကြည့်ရန်\"</string><string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"ရှာဖွေပါ...\"</string><string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"အပေါ်သို့သွားရန်\"</string><string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"ရှာစရာ အချက်အလက်များ ရှင်းလင်းရန်\"</string><string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s၊ %2$s\"</string><string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"%s ကို မျှဝေပါရန်\"</string><string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"ပိုမိုရွေးချယ်စရာများ\"</string><string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"ရှာစရာ အချက်အလက်နေရာ\"</string><string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"မျှဝေဖို့ ရွေးပါ\"</string><string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"ရှာဖွေရန်\"</string><string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"အသံဖြင့် ရှာဖွေခြင်း\"</string><string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"ခေါက်ရန်\"</string><string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"မူလနေရာကို သွားရန်\"</string><string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"၉၉၉+\"</string></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-nb/values-nb.xml\" qualifiers=\"nb\"><string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s – %2$s – %3$s\"</string><string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Flere alternativer\"</string><string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Del med %s\"</string><string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Del med\"</string><string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Se alle\"</string><string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Slett søket\"</string><string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Søk\"</string><string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Søkeord\"</string><string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Velg en app\"</string><string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Gå til startsiden\"</string><string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Søk …\"</string><string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Ferdig\"</string><string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Skjul\"</string><string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s – %2$s\"</string><string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string><string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Gå opp\"</string><string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Utfør søket\"</string><string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Talesøk\"</string></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ne-rNP/values-ne-rNP.xml\" qualifiers=\"ne-rNP\"><string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"भ्वाइस खोजी\"</string><string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string><string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"एउटा अनुप्रयोग छान्नुहोस्\"</string><string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string><string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"जिज्ञासा पेस गर्नुहोस्\"</string><string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"प्रश्‍न हटाउनुहोस्\"</string><string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"जिज्ञासाको खोज गर्नुहोस्\"</string><string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"साझेदारी गर्नुहोस्...\"</string><string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"%s सँग साझेदारी गर्नुहोस्\"</string><string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"सबै हेर्नुहोस्\"</string><string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"सम्पन्न भयो\"</string><string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"खोज्नुहोस्...\"</string><string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"खोज्नुहोस्\"</string><string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"गृह खोज्नुहोस्\"</string><string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"९९९+\"</string><string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"माथि खोज्नुहोस्\"</string><string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"संक्षिप्त पार्नुहोस्\"</string><string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"थप विकल्पहरू\"</string></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-nl/values-nl.xml\" qualifiers=\"nl\"><string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Meer opties\"</string><string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Gereed\"</string><string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Navigeren naar startpositie\"</string><string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Alles weergeven\"</string><string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Gesproken zoekopdracht\"</string><string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Samenvouwen\"</string><string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string><string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Zoeken\"</string><string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Een app selecteren\"</string><string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Delen met %s\"</string><string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Zoeken…\"</string><string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Zoekopdracht\"</string><string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Delen met\"</string><string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Zoekopdracht wissen\"</string><string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Zoekopdracht verzenden\"</string><string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string><string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Omhoog navigeren\"</string><string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-pa-rIN/values-pa-rIN.xml\" qualifiers=\"pa-rIN\"><string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"ਸਵਾਲ ਖੋਜੋ\"</string><string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"ਹੋਮ ਨੈਵੀਗੇਟ ਕਰੋ\"</string><string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"ਉੱਪਰ ਨੈਵੀਗੇਟ ਕਰੋ\"</string><string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"ਹੋ ਗਿਆ\"</string><string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"%s ਨਾਲ ਸ਼ੇਅਰ ਕਰੋ\"</string><string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string><string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"ਸਭ ਦੇਖੋ\"</string><string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"ਇਸ ਨਾਲ ਸ਼ੇਅਰ ਕਰੋ\"</string><string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"ਖੋਜੋ\"</string><string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"ਸਵਾਲ ਪ੍ਰਸਤੁਤ ਕਰੋ\"</string><string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string><string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"ਇੱਕ ਐਪ ਚੁਣੋ\"</string><string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"ਸਵਾਲ ਹਟਾਓ\"</string><string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"ਨਸ਼ਟ ਕਰੋ\"</string><string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string><string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"ਹੋਰ ਚੋਣਾਂ\"</string><string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"ਖੋਜ…\"</string><string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"ਵੌਇਸ ਖੋਜ\"</string></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-pl/values-pl.xml\" qualifiers=\"pl\"><string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Udostępnij dla %s\"</string><string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Wyczyść zapytanie\"</string><string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Wyszukiwanie głosowe\"</string><string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Więcej opcji\"</string><string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string><string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Udostępnij dla\"</string><string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Gotowe\"</string><string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Szukaj\"</string><string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string><string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Przejdź do strony głównej\"</string><string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string><string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Wybierz aplikację\"</string><string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Zobacz wszystkie\"</string><string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Szukaj…\"</string><string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Wyszukiwane hasło\"</string><string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Wyślij zapytanie\"</string><string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Zwiń\"</string><string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Przejdź wyżej\"</string></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-port/values-port.xml\" qualifiers=\"port\"><bool name=\"abc_action_bar_embed_tabs\">false</bool></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-pt/values-pt.xml\" qualifiers=\"pt\"><string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Limpar consulta\"</string><string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Mais opções\"</string><string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Compartilhar com %s\"</string><string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Recolher\"</string><string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string><string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Enviar consulta\"</string><string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Navegar para cima\"</string><string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Concluído\"</string><string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Consulta de pesquisa\"</string><string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string><string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Navegar para a página inicial\"</string><string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Ver tudo\"</string><string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Compartilhar com\"</string><string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string><string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Pesquisar\"</string><string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Pesquisa por voz\"</string><string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Selecione um app\"</string><string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Pesquisar...\"</string></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-pt-rPT/values-pt-rPT.xml\" qualifiers=\"pt-rPT\"><string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Enviar consulta\"</string><string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string><string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Consulta de pesquisa\"</string><string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Partilhar com %s\"</string><string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Mais opções\"</string><string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Partilhar com\"</string><string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Escolher uma aplicação\"</string><string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Concluído\"</string><string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Navegar para a página inicial\"</string><string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string><string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Pesquisar\"</string><string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Reduzir\"</string><string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Pesquisar...\"</string><string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Limpar consulta\"</string><string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Ver tudo\"</string><string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Pesquisa por voz\"</string><string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"+999\"</string><string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Navegar para cima\"</string></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ro/values-ro.xml\" qualifiers=\"ro\"><string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Mai multe opțiuni\"</string><string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Căutați\"</string><string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Afișați-le pe toate\"</string><string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Interogare de căutare\"</string><string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Navigați la ecranul de pornire\"</string><string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Alegeți o aplicație\"</string><string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"˃999\"</string><string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Terminat\"</string><string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Restrângeți\"</string><string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Ștergeți interogarea\"</string><string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Căutați…\"</string><string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Trimiteți la\"</string><string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Căutare vocală\"</string><string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Trimiteți interogarea\"</string><string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Trimiteți la %s\"</string><string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string><string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Navigați în sus\"</string><string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ru/values-ru.xml\" qualifiers=\"ru\"><string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Поисковый запрос\"</string><string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Отправить запрос\"</string><string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Открыть доступ пользователю %s\"</string><string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string><string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\">999\"</string><string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Поиск\"</string><string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Перейти на главный экран\"</string><string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Показать все\"</string><string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Голосовой поиск\"</string><string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Открыть доступ\"</string><string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Выбрать приложение\"</string><string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Поиск\"</string><string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string><string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Удалить запрос\"</string><string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Перейти вверх\"</string><string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Свернуть\"</string><string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Готово\"</string><string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Другие параметры\"</string></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-si-rLK/values-si-rLK.xml\" qualifiers=\"si-rLK\"><string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"අවසාන වූ\"</string><string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"සෙවුම් විමසුම\"</string><string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string><string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"ඉහලට සංචාලනය කරන්න\"</string><string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"විමසුම යොමු කරන්න\"</string><string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"යෙදුමක් තෝරන්න\"</string><string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string><string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"සොයන්න...\"</string><string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"විමසුම හිස් කරන්න\"</string><string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"සියල්ල බලන්න\"</string><string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string><string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"සමඟ බෙදාගන්න\"</string><string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"%s සමඟ බෙදාගන්න\"</string><string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"ගෙදරට සංචාලනය කරන්න\"</string><string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"සෙවීම\"</string><string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"තවත් විකල්ප\"</string><string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"හඬ සෙවීම\"</string><string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"හකුළන්න\"</string></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sk/values-sk.xml\" qualifiers=\"sk\"><string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Vymazať dopyt\"</string><string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Hľadať\"</string><string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Prejsť na plochu\"</string><string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Zobraziť všetko\"</string><string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Zdieľať pomocou\"</string><string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Hlasové vyhľadávanie\"</string><string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Zbaliť\"</string><string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Vyhľadať…\"</string><string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Vyhľadávací dopyt\"</string><string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Zdieľať pomocou %s\"</string><string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string><string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Ďalšie možnosti\"</string><string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Prejsť hore\"</string><string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string><string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Odoslať dopyt\"</string><string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Zvoľte aplikáciu\"</string><string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Hotovo\"</string><string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sl/values-sl.xml\" qualifiers=\"sl\"><string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Krmarjenje navzgor\"</string><string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Deljenje z:\"</string><string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Iskanje\"</string><string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Deljenje z\"</string><string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Krmarjenje domov\"</string><string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Glasovno iskanje\"</string><string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Strni\"</string><string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Izbira aplikacije\"</string><string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Iskalna poizvedba\"</string><string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string><string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Končano\"</string><string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Iskanje …\"</string><string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Pošiljanje poizvedbe\"</string><string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Pokaži vse\"</string><string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string><string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Izbris poizvedbe\"</string><string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string><string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Več možnosti\"</string></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sq-rAL/values-sq-rAL.xml\" qualifiers=\"sq-rAL\"><string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Orientohu për në shtëpi\"</string><string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Shpërnda publikisht me %s\"</string><string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Dërgo pyetjen\"</string><string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Kërkim me zë\"</string><string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Shpalos\"</string><string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"U krye!\"</string><string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Kërko...\"</string><string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string><string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string><string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string><string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Zgjidh një aplikacion\"</string><string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Opsione të tjera\"</string><string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Kërko pyetjen\"</string><string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Ngjitu lart\"</string><string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Shikoji të gjitha\"</string><string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Pastro pyetjen\"</string><string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Kërko\"</string><string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Shpërnda publikisht me\"</string></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sr/values-sr.xml\" qualifiers=\"sr\"><string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Одлазак на Почетну\"</string><string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string><string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Избор апликације\"</string><string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Претражите...\"</string><string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Дели са апликацијом %s\"</string><string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Још опција\"</string><string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Слање упита\"</string><string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string><string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\">999\"</string><string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Гласовна претрага\"</string><string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Кретање нагоре\"</string><string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Скупи\"</string><string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Брисање упита\"</string><string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Претрага\"</string><string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Готово\"</string><string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Дели са\"</string><string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Упит за претрагу\"</string><string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Прикажи све\"</string></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sv/values-sv.xml\" qualifiers=\"sv\"><string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string><string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Dela med\"</string><string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\">999\"</string><string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Visa alla\"</string><string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string><string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Sök …\"</string><string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Sök\"</string><string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Ta bort frågan\"</string><string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Navigera uppåt\"</string><string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Fler alternativ\"</string><string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Dela med %s\"</string><string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Klart\"</string><string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Röstsökning\"</string><string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Sökfråga\"</string><string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Skicka fråga\"</string><string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Välj en app\"</string><string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Visa startsidan\"</string><string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Komprimera\"</string></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sw/values-sw.xml\" qualifiers=\"sw\"><string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Tafuta\"</string><string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string><string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Shiriki na:\"</string><string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Shiriki na %s\"</string><string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Hoja ya utafutaji\"</string><string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Chagua programu\"</string><string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string><string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Futa hoja\"</string><string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Nenda mwanzo\"</string><string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Tafuta…\"</string><string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Wasilisha hoja\"</string><string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Tafuta kwa kutamka\"</string><string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Nenda juu\"</string><string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Nimemaliza\"</string><string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Chaguo zaidi\"</string><string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Kunja\"</string><string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Angalia zote\"</string><string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sw600dp/values-sw600dp.xml\" qualifiers=\"sw600dp\"><dimen name=\"abc_action_bar_default_height_material\">64dp</dimen><dimen name=\"abc_action_bar_content_inset_material\">24dp</dimen><dimen name=\"abc_action_bar_default_padding_end_material\">8dp</dimen><dimen name=\"abc_config_prefDialogWidth\">580dp</dimen><dimen name=\"abc_text_size_subtitle_material_toolbar\">16dp</dimen><dimen name=\"abc_action_bar_default_padding_start_material\">8dp</dimen><dimen name=\"abc_text_size_title_material_toolbar\">20dp</dimen><integer name=\"abc_max_action_buttons\">5</integer></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ta-rIN/values-ta-rIN.xml\" qualifiers=\"ta-rIN\"><string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"முடிந்தது\"</string><string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"தேடல் வினவல்\"</string><string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"மேலே வழிசெலுத்து\"</string><string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"%s உடன் பகிர்\"</string><string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"இதனுடன் பகிர்\"</string><string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"தேடு...\"</string><string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string><string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"முகப்பிற்கு வழிசெலுத்து\"</string><string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"பயன்பாட்டைத் தேர்வுசெய்க\"</string><string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string><string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"மேலும் விருப்பங்கள்\"</string><string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"வினவலை அழி\"</string><string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"வினவலைச் சமர்ப்பி\"</string><string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"குரல் தேடல்\"</string><string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"தேடு\"</string><string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string><string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"எல்லாம் காட்டு\"</string><string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"சுருக்கு\"</string></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-te-rIN/values-te-rIN.xml\" qualifiers=\"te-rIN\"><string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"ప్రశ్నను క్లియర్ చేయి\"</string><string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"వీరితో భాగస్వామ్యం చేయి\"</string><string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"పైకి నావిగేట్ చేయండి\"</string><string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"అనువర్తనాన్ని ఎంచుకోండి\"</string><string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string><string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string><string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"కుదించండి\"</string><string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"వాయిస్ శోధన\"</string><string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"శోధించు\"</string><string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"%sతో భాగస్వామ్యం చేయి\"</string><string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string><string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"అన్నీ చూడండి\"</string><string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"పూర్తయింది\"</string><string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"శోధించు...\"</string><string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"మరిన్ని ఎంపికలు\"</string><string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"హోమ్‌కు నావిగేట్ చేయండి\"</string><string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"ప్రశ్నని సమర్పించు\"</string><string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"ప్రశ్న శోధించండి\"</string></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-th/values-th.xml\" qualifiers=\"th\"><string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"ค้นหาด้วยเสียง\"</string><string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"เสร็จสิ้น\"</string><string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string><string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"นำทางไปหน้าแรก\"</string><string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"แชร์กับ\"</string><string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"ยุบ\"</string><string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"แชร์กับ %s\"</string><string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"ส่งข้อความค้นหา\"</string><string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string><string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string><string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"นำทางขึ้น\"</string><string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"ตัวเลือกอื่น\"</string><string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"ดูทั้งหมด\"</string><string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"ข้อความค้นหา\"</string><string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"ค้นหา…\"</string><string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"ค้นหา\"</string><string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"เลือกแอป\"</string><string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"ล้างข้อความค้นหา\"</string></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-tl/values-tl.xml\" qualifiers=\"tl\"><string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Maghanap…\"</string><string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"I-collapse\"</string><string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Ibahagi sa/kay %s\"</string><string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Tapos na\"</string><string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Mag-navigate patungo sa home\"</string><string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string><string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Paghahanap gamit ang boses\"</string><string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Ibahagi sa/kay\"</string><string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Pumili ng isang app\"</string><string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Mag-navigate pataas\"</string><string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Isumite ang query\"</string><string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string><string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Maghanap\"</string><string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Tingnan lahat\"</string><string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"I-clear ang query\"</string><string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string><string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Higit pang mga opsyon\"</string><string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Query sa paghahanap\"</string></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-tr/values-tr.xml\" qualifiers=\"tr\"><string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Bir uygulama seçin\"</string><string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Daralt\"</string><string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Sorguyu temizle\"</string><string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string><string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Şununla paylaş\"</string><string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Yukarı git\"</string><string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string><string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Diğer seçenekler\"</string><string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string><string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Tamamlandı\"</string><string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Ara…\"</string><string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Sorguyu gönder\"</string><string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"%s ile paylaş\"</string><string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Arama sorgusu\"</string><string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Sesli arama\"</string><string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Tümünü göster\"</string><string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Ana ekrana git\"</string><string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Ara\"</string></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-uk/values-uk.xml\" qualifiers=\"uk\"><string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Пошуковий запит\"</string><string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Вибрати програму\"</string><string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Пошук\"</string><string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string><string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Переглянути всі\"</string><string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Голосовий пошук\"</string><string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Надіслати через %s\"</string><string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string><string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Пошук…\"</string><string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Перейти на головний\"</string><string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Інші опції\"</string><string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string><string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Згорнути\"</string><string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Очистити запит\"</string><string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Готово\"</string><string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Надіслати запит\"</string><string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Надіслати через\"</string><string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Перейти вгору\"</string></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ur-rPK/values-ur-rPK.xml\" qualifiers=\"ur-rPK\"><string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"سکیڑیں\"</string><string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"استفسار صاف کریں\"</string><string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"استفسار جمع کرائیں\"</string><string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"اشتراک کریں مع\"</string><string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"اوپر نیویگیٹ کریں\"</string><string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"ہوم پر نیویگیٹ کریں\"</string><string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"صوتی تلاش\"</string><string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"مزید اختیارات\"</string><string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"‏%s کے ساتھ اشتراک کریں\"</string><string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"تلاش کریں…\"</string><string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"استفسار تلاش کریں\"</string><string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"ایک ایپ منتخب کریں\"</string><string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"سبھی دیکھیں\"</string><string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"تلاش کریں\"</string><string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"‎999+‎\"</string><string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string><string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string><string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"ہو گیا\"</string></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-uz-rUZ/values-uz-rUZ.xml\" qualifiers=\"uz-rUZ\"><string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string><string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Yuqoriga o‘tish\"</string><string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"So‘rovni tozalash\"</string><string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Tayyor\"</string><string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Dastur tanlang\"</string><string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Boshiga o‘tish\"</string><string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Izlash\"</string><string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string><string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Barchasini ko‘rish\"</string><string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"So‘rovni izlash\"</string><string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Qidirish…\"</string><string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Ovozli qidiruv\"</string><string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"So‘rov yaratish\"</string><string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Qo‘shimcha sozlamalar\"</string><string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Yig‘ish\"</string><string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string><string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Bo‘lishish:\"</string></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v11/values-v11.xml\" qualifiers=\"v11\"><style name=\"Base.TextAppearance.AppCompat.Subhead.Inverse\">\n        <item name=\"android:textColor\">?android:attr/textColorPrimaryInverse</item>\n        <item name=\"android:textColorHint\">?android:attr/textColorHintInverse</item>\n        <item name=\"android:textColorHighlight\">?android:attr/textColorHighlightInverse</item>\n        <item name=\"android:textColorLink\">?android:attr/textColorLinkInverse</item>\n    </style><style name=\"Base.V11.Theme.AppCompat.Light.Dialog\" parent=\"Base.V7.Theme.AppCompat.Light.Dialog\">\n        <item name=\"android:buttonBarStyle\">@style/Widget.AppCompat.ButtonBar.AlertDialog</item>\n        <item name=\"android:borderlessButtonStyle\">@style/Widget.AppCompat.Button.Borderless</item>\n        <item name=\"android:windowCloseOnTouchOutside\">@bool/abc_config_closeDialogWhenTouchOutside</item>\n    </style><style name=\"Base.TextAppearance.AppCompat.Inverse\">\n        <item name=\"android:textColor\">?android:attr/textColorPrimaryInverse</item>\n        <item name=\"android:textColorHint\">?android:attr/textColorHintInverse</item>\n        <item name=\"android:textColorHighlight\">?android:attr/textColorHighlightInverse</item>\n        <item name=\"android:textColorLink\">?android:attr/textColorLinkInverse</item>\n    </style><style name=\"Platform.V11.AppCompat.Light\" parent=\"android:Theme.Holo.Light\">\n        <item name=\"android:windowNoTitle\">true</item>\n        <item name=\"android:windowActionBar\">false</item>\n\n        <item name=\"android:buttonBarStyle\">?attr/buttonBarStyle</item>\n        <item name=\"android:buttonBarButtonStyle\">?attr/buttonBarButtonStyle</item>\n\n        <item name=\"selectableItemBackground\">?android:attr/selectableItemBackground</item>\n\n        <!-- Window colors -->\n        <item name=\"android:colorForeground\">@color/foreground_material_light</item>\n        <item name=\"android:colorForegroundInverse\">@color/foreground_material_dark</item>\n        <item name=\"android:colorBackground\">@color/background_material_light</item>\n        <item name=\"android:colorBackgroundCacheHint\">@color/abc_background_cache_hint_selector_material_light</item>\n        <item name=\"android:disabledAlpha\">@dimen/abc_disabled_alpha_material_light</item>\n        <item name=\"android:backgroundDimAmount\">0.6</item>\n        <item name=\"android:windowBackground\">@color/background_material_light</item>\n\n        <!-- Text colors -->\n        <item name=\"android:textColorPrimary\">@color/abc_primary_text_material_light</item>\n        <item name=\"android:textColorPrimaryInverse\">@color/abc_primary_text_material_dark</item>\n        <item name=\"android:textColorSecondary\">@color/abc_secondary_text_material_light</item>\n        <item name=\"android:textColorSecondaryInverse\">@color/abc_secondary_text_material_dark</item>\n        <item name=\"android:textColorTertiary\">@color/abc_secondary_text_material_light</item>\n        <item name=\"android:textColorTertiaryInverse\">@color/abc_secondary_text_material_dark</item>\n        <item name=\"android:textColorPrimaryDisableOnly\">@color/abc_primary_text_disable_only_material_light</item>\n        <item name=\"android:textColorPrimaryInverseDisableOnly\">@color/abc_primary_text_disable_only_material_dark</item>\n        <item name=\"android:textColorHint\">@color/hint_foreground_material_light</item>\n        <item name=\"android:textColorHintInverse\">@color/hint_foreground_material_dark</item>\n        <item name=\"android:textColorHighlight\">@color/highlighted_text_material_light</item>\n        <item name=\"android:textColorHighlightInverse\">@color/highlighted_text_material_dark</item>\n        <item name=\"android:textColorLink\">?attr/colorAccent</item>\n        <item name=\"android:textColorLinkInverse\">?attr/colorAccent</item>\n        <item name=\"android:textColorAlertDialogListItem\">@color/abc_primary_text_material_light</item>\n\n        <!-- Text styles -->\n        <item name=\"android:textAppearance\">@style/TextAppearance.AppCompat</item>\n        <item name=\"android:textAppearanceInverse\">@style/TextAppearance.AppCompat.Inverse</item>\n        <item name=\"android:textAppearanceLarge\">@style/TextAppearance.AppCompat.Large</item>\n        <item name=\"android:textAppearanceLargeInverse\">@style/TextAppearance.AppCompat.Large.Inverse</item>\n        <item name=\"android:textAppearanceMedium\">@style/TextAppearance.AppCompat.Medium</item>\n        <item name=\"android:textAppearanceMediumInverse\">@style/TextAppearance.AppCompat.Medium.Inverse</item>\n        <item name=\"android:textAppearanceSmall\">@style/TextAppearance.AppCompat.Small</item>\n        <item name=\"android:textAppearanceSmallInverse\">@style/TextAppearance.AppCompat.Small.Inverse</item>\n\n        <item name=\"android:listChoiceIndicatorSingle\">@drawable/abc_btn_radio_material</item>\n        <item name=\"android:listChoiceIndicatorMultiple\">@drawable/abc_btn_check_material</item>\n\n        <item name=\"android:actionModeCutDrawable\">?actionModeCutDrawable</item>\n        <item name=\"android:actionModeCopyDrawable\">?actionModeCopyDrawable</item>\n        <item name=\"android:actionModePasteDrawable\">?actionModePasteDrawable</item>\n    </style><style name=\"Base.TextAppearance.AppCompat.Medium.Inverse\">\n        <item name=\"android:textColor\">?android:attr/textColorSecondaryInverse</item>\n        <item name=\"android:textColorHint\">?android:attr/textColorHintInverse</item>\n        <item name=\"android:textColorHighlight\">?android:attr/textColorHighlightInverse</item>\n        <item name=\"android:textColorLink\">?android:attr/textColorLinkInverse</item>\n    </style><style name=\"Base.TextAppearance.AppCompat.Title.Inverse\">\n        <item name=\"android:textColor\">?android:attr/textColorPrimaryInverse</item>\n        <item name=\"android:textColorHint\">?android:attr/textColorHintInverse</item>\n        <item name=\"android:textColorHighlight\">?android:attr/textColorHighlightInverse</item>\n        <item name=\"android:textColorLink\">?android:attr/textColorLinkInverse</item>\n    </style><style name=\"Base.V11.Theme.AppCompat.Dialog\" parent=\"Base.V7.Theme.AppCompat.Dialog\">\n        <item name=\"android:buttonBarStyle\">@style/Widget.AppCompat.ButtonBar.AlertDialog</item>\n        <item name=\"android:borderlessButtonStyle\">@style/Widget.AppCompat.Button.Borderless</item>\n        <item name=\"android:windowCloseOnTouchOutside\">@bool/abc_config_closeDialogWhenTouchOutside</item>\n    </style><style name=\"Base.Theme.AppCompat.Dialog\" parent=\"Base.V11.Theme.AppCompat.Dialog\"/><style name=\"Base.Theme.AppCompat.Light.Dialog\" parent=\"Base.V11.Theme.AppCompat.Light.Dialog\"/><style name=\"Base.TextAppearance.AppCompat.Large.Inverse\">\n        <item name=\"android:textColor\">?android:attr/textColorPrimaryInverse</item>\n        <item name=\"android:textColorHint\">?android:attr/textColorHintInverse</item>\n        <item name=\"android:textColorHighlight\">?android:attr/textColorHighlightInverse</item>\n        <item name=\"android:textColorLink\">?android:attr/textColorLinkInverse</item>\n    </style><style name=\"Platform.AppCompat\" parent=\"Platform.V11.AppCompat\"/><style name=\"Platform.Widget.AppCompat.Spinner\" parent=\"android:Widget.Holo.Spinner\"/><style name=\"Base.TextAppearance.AppCompat.Small.Inverse\">\n        <item name=\"android:textColor\">?android:attr/textColorTertiaryInverse</item>\n        <item name=\"android:textColorHint\">?android:attr/textColorHintInverse</item>\n        <item name=\"android:textColorHighlight\">?android:attr/textColorHighlightInverse</item>\n        <item name=\"android:textColorLink\">?android:attr/textColorLinkInverse</item>\n    </style><style name=\"Base.Widget.AppCompat.ProgressBar.Horizontal\" parent=\"android:Widget.Holo.ProgressBar.Horizontal\">\n    </style><style name=\"Platform.V11.AppCompat\" parent=\"android:Theme.Holo\">\n        <item name=\"android:windowNoTitle\">true</item>\n        <item name=\"android:windowActionBar\">false</item>\n\n        <item name=\"android:buttonBarStyle\">?attr/buttonBarStyle</item>\n        <item name=\"android:buttonBarButtonStyle\">?attr/buttonBarButtonStyle</item>\n\n        <item name=\"selectableItemBackground\">?android:attr/selectableItemBackground</item>\n\n        <!-- Window colors -->\n        <item name=\"android:colorForeground\">@color/foreground_material_dark</item>\n        <item name=\"android:colorForegroundInverse\">@color/foreground_material_light</item>\n        <item name=\"android:colorBackground\">@color/background_material_dark</item>\n        <item name=\"android:colorBackgroundCacheHint\">@color/abc_background_cache_hint_selector_material_dark</item>\n        <item name=\"android:disabledAlpha\">@dimen/abc_disabled_alpha_material_dark</item>\n        <item name=\"android:backgroundDimAmount\">0.6</item>\n        <item name=\"android:windowBackground\">@color/background_material_dark</item>\n\n        <!-- Text colors -->\n        <item name=\"android:textColorPrimary\">@color/abc_primary_text_material_dark</item>\n        <item name=\"android:textColorPrimaryInverse\">@color/abc_primary_text_material_light</item>\n        <item name=\"android:textColorPrimaryDisableOnly\">@color/abc_primary_text_disable_only_material_dark</item>\n        <item name=\"android:textColorSecondary\">@color/abc_secondary_text_material_dark</item>\n        <item name=\"android:textColorSecondaryInverse\">@color/abc_secondary_text_material_light</item>\n        <item name=\"android:textColorTertiary\">@color/abc_secondary_text_material_dark</item>\n        <item name=\"android:textColorTertiaryInverse\">@color/abc_secondary_text_material_light</item>\n        <item name=\"android:textColorHint\">@color/hint_foreground_material_dark</item>\n        <item name=\"android:textColorHintInverse\">@color/hint_foreground_material_light</item>\n        <item name=\"android:textColorHighlight\">@color/highlighted_text_material_dark</item>\n        <item name=\"android:textColorHighlightInverse\">@color/highlighted_text_material_light</item>\n        <item name=\"android:textColorLink\">?attr/colorAccent</item>\n        <item name=\"android:textColorLinkInverse\">?attr/colorAccent</item>\n        <item name=\"android:textColorAlertDialogListItem\">@color/abc_primary_text_material_dark</item>\n\n        <!-- Text styles -->\n        <item name=\"android:textAppearance\">@style/TextAppearance.AppCompat</item>\n        <item name=\"android:textAppearanceInverse\">@style/TextAppearance.AppCompat.Inverse</item>\n        <item name=\"android:textAppearanceLarge\">@style/TextAppearance.AppCompat.Large</item>\n        <item name=\"android:textAppearanceLargeInverse\">@style/TextAppearance.AppCompat.Large.Inverse</item>\n        <item name=\"android:textAppearanceMedium\">@style/TextAppearance.AppCompat.Medium</item>\n        <item name=\"android:textAppearanceMediumInverse\">@style/TextAppearance.AppCompat.Medium.Inverse</item>\n        <item name=\"android:textAppearanceSmall\">@style/TextAppearance.AppCompat.Small</item>\n        <item name=\"android:textAppearanceSmallInverse\">@style/TextAppearance.AppCompat.Small.Inverse</item>\n\n        <item name=\"android:listChoiceIndicatorSingle\">@drawable/abc_btn_radio_material</item>\n        <item name=\"android:listChoiceIndicatorMultiple\">@drawable/abc_btn_check_material</item>\n\n        <item name=\"android:actionModeCutDrawable\">?actionModeCutDrawable</item>\n        <item name=\"android:actionModeCopyDrawable\">?actionModeCopyDrawable</item>\n        <item name=\"android:actionModePasteDrawable\">?actionModePasteDrawable</item>\n    </style><style name=\"Base.Widget.AppCompat.ProgressBar\" parent=\"android:Widget.Holo.ProgressBar\">\n    </style><style name=\"Platform.AppCompat.Light\" parent=\"Platform.V11.AppCompat.Light\"/></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v12/values-v12.xml\" qualifiers=\"v12\"><style name=\"Base.V12.Widget.AppCompat.EditText\" parent=\"Base.V7.Widget.AppCompat.EditText\">\n        <item name=\"android:textCursorDrawable\">@drawable/abc_text_cursor_material</item>\n    </style><style name=\"Base.Widget.AppCompat.AutoCompleteTextView\" parent=\"Base.V12.Widget.AppCompat.AutoCompleteTextView\"/><style name=\"Base.Widget.AppCompat.EditText\" parent=\"Base.V12.Widget.AppCompat.EditText\"/><style name=\"Base.V12.Widget.AppCompat.AutoCompleteTextView\" parent=\"Base.V7.Widget.AppCompat.AutoCompleteTextView\">\n        <item name=\"android:textCursorDrawable\">@drawable/abc_text_cursor_material</item>\n    </style></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v14/values-v14.xml\" qualifiers=\"v14\"><style name=\"TextAppearance.StatusBar.EventContent.Line2\">\n        <item name=\"android:textSize\">@dimen/notification_subtext_size</item>\n    </style><style name=\"Base.TextAppearance.AppCompat.Button\">\n        <item name=\"android:textSize\">@dimen/abc_text_size_button_material</item>\n        <item name=\"android:textAllCaps\">true</item>\n        <item name=\"android:textColor\">?android:textColorPrimary</item>\n    </style><style name=\"Platform.V14.AppCompat.Light\" parent=\"Platform.V11.AppCompat.Light\">\n        <item name=\"android:actionModeSelectAllDrawable\">?actionModeSelectAllDrawable</item>\n\n        <item name=\"android:listPreferredItemPaddingLeft\">@dimen/abc_list_item_padding_horizontal_material</item>\n        <item name=\"android:listPreferredItemPaddingRight\">@dimen/abc_list_item_padding_horizontal_material</item>\n    </style><style name=\"TextAppearance.StatusBar.EventContent.Time\"/><style name=\"Platform.AppCompat.Light\" parent=\"Platform.V14.AppCompat.Light\"/><style name=\"Platform.V14.AppCompat\" parent=\"Platform.V11.AppCompat\">\n        <item name=\"android:actionModeSelectAllDrawable\">?actionModeSelectAllDrawable</item>\n\n        <item name=\"android:listPreferredItemPaddingLeft\">@dimen/abc_list_item_padding_horizontal_material</item>\n        <item name=\"android:listPreferredItemPaddingRight\">@dimen/abc_list_item_padding_horizontal_material</item>\n    </style><style name=\"TextAppearance.StatusBar.EventContent.Info\"/><style name=\"TextAppearance.StatusBar.EventContent.Title\" parent=\"@android:style/TextAppearance.StatusBar.EventContent.Title\"/><style name=\"Platform.AppCompat\" parent=\"Platform.V14.AppCompat\"/><style name=\"TextAppearance.StatusBar.EventContent\" parent=\"@android:style/TextAppearance.StatusBar.EventContent\"/></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v17/values-v17.xml\" qualifiers=\"v17\"><style name=\"RtlOverlay.Widget.AppCompat.DialogTitle.Icon\" parent=\"android:Widget\">\n        <item name=\"android:layout_marginEnd\">8dp</item>\n    </style><style name=\"RtlOverlay.Widget.AppCompat.ActionBar.TitleItem\" parent=\"android:Widget\">\n        <item name=\"android:layout_gravity\">center_vertical|start</item>\n        <item name=\"android:paddingEnd\">8dp</item>\n    </style><style name=\"RtlOverlay.Widget.AppCompat.Search.DropDown.Text\" parent=\"Base.Widget.AppCompat.DropDownItem.Spinner\">\n        <item name=\"android:layout_toStartOf\">@android:id/icon2</item>\n        <item name=\"android:layout_toEndOf\">@android:id/icon1</item>\n    </style><style name=\"RtlOverlay.Widget.AppCompat.SearchView.MagIcon\" parent=\"android:Widget\">\n        <item name=\"android:layout_marginStart\">@dimen/abc_dropdownitem_text_padding_left</item>\n    </style><style name=\"RtlOverlay.DialogWindowTitle.AppCompat\" parent=\"Base.DialogWindowTitle.AppCompat\">\n        <item name=\"android:textAlignment\">viewStart</item>\n    </style><style name=\"RtlOverlay.Widget.AppCompat.Search.DropDown\" parent=\"android:Widget\">\n        <item name=\"android:paddingStart\">@dimen/abc_dropdownitem_text_padding_left</item>\n        <item name=\"android:paddingEnd\">4dp</item>\n    </style><style name=\"RtlOverlay.Widget.AppCompat.PopupMenuItem.Text\" parent=\"android:Widget\">\n        <item name=\"android:layout_alignParentStart\">true</item>\n        <item name=\"android:textAlignment\">viewStart</item>\n    </style><style name=\"RtlOverlay.Widget.AppCompat.PopupMenuItem\" parent=\"android:Widget\">\n        <item name=\"android:paddingEnd\">16dp</item>\n    </style><style name=\"RtlOverlay.Widget.AppCompat.Search.DropDown.Icon2\" parent=\"android:Widget\">\n        <item name=\"android:layout_toStartOf\">@id/edit_query</item>\n    </style><style name=\"RtlOverlay.Widget.AppCompat.Search.DropDown.Icon1\" parent=\"android:Widget\">\n        <item name=\"android:layout_alignParentStart\">true</item>\n    </style><style name=\"RtlOverlay.Widget.AppCompat.PopupMenuItem.InternalGroup\" parent=\"android:Widget\">\n        <item name=\"android:layout_marginStart\">16dp</item>\n    </style><style name=\"RtlOverlay.Widget.AppCompat.ActionButton.Overflow\" parent=\"Base.Widget.AppCompat.ActionButton.Overflow\">\n        <item name=\"android:paddingStart\">@dimen/abc_action_bar_overflow_padding_start_material</item>\n        <item name=\"android:paddingEnd\">@dimen/abc_action_bar_overflow_padding_end_material</item>\n    </style><style name=\"RtlOverlay.Widget.AppCompat.Search.DropDown.Query\" parent=\"android:Widget\">\n        <item name=\"android:layout_alignParentEnd\">true</item>\n    </style></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v18/values-v18.xml\" qualifiers=\"v18\"><dimen name=\"abc_switch_padding\">0px</dimen></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v21/values-v21.xml\" qualifiers=\"v21\"><style name=\"Base.Widget.AppCompat.Light.PopupMenu\" parent=\"android:Widget.Material.Light.PopupMenu\">\n    </style><style name=\"Base.TextAppearance.AppCompat.Widget.ActionBar.Title.Inverse\" parent=\"android:TextAppearance.Material.Widget.ActionBar.Title.Inverse\">\n    </style><style name=\"Base.V21.Theme.AppCompat.Light\" parent=\"Base.V7.Theme.AppCompat.Light\">\n        <!-- Action Bar styling attributes -->\n        <item name=\"actionBarSize\">?android:attr/actionBarSize</item>\n        <item name=\"actionBarDivider\">?android:attr/actionBarDivider</item>\n        <item name=\"actionBarItemBackground\">@drawable/abc_action_bar_item_background_material</item>\n        <item name=\"actionButtonStyle\">?android:attr/actionButtonStyle</item>\n        <item name=\"actionMenuTextColor\">?android:attr/actionMenuTextColor</item>\n        <item name=\"actionMenuTextAppearance\">?android:attr/actionMenuTextAppearance</item>\n        <item name=\"actionModeBackground\">?android:attr/actionModeBackground</item>\n        <item name=\"actionModeCloseDrawable\">?android:attr/actionModeCloseDrawable</item>\n        <item name=\"actionOverflowButtonStyle\">?android:attr/actionOverflowButtonStyle</item>\n        <item name=\"homeAsUpIndicator\">?android:attr/homeAsUpIndicator</item>\n\n        <!-- For PopupMenu -->\n        <item name=\"listPreferredItemHeightSmall\">?android:attr/listPreferredItemHeightSmall</item>\n        <item name=\"textAppearanceLargePopupMenu\">?android:attr/textAppearanceLargePopupMenu</item>\n        <item name=\"textAppearanceSmallPopupMenu\">?android:attr/textAppearanceSmallPopupMenu</item>\n\n        <!-- General view attributes -->\n        <item name=\"selectableItemBackground\">?android:attr/selectableItemBackground</item>\n        <item name=\"selectableItemBackgroundBorderless\">?android:attr/selectableItemBackgroundBorderless</item>\n        <item name=\"borderlessButtonStyle\">?android:borderlessButtonStyle</item>\n        <item name=\"dividerHorizontal\">?android:attr/dividerHorizontal</item>\n        <item name=\"dividerVertical\">?android:attr/dividerVertical</item>\n        <item name=\"editTextBackground\">?android:attr/editTextBackground</item>\n        <item name=\"editTextColor\">?android:attr/editTextColor</item>\n        <item name=\"listChoiceBackgroundIndicator\">?android:attr/listChoiceBackgroundIndicator</item>\n\n        <!-- Copy the platform default styles for the AppCompat widgets -->\n        <item name=\"autoCompleteTextViewStyle\">?android:attr/autoCompleteTextViewStyle</item>\n        <item name=\"buttonStyle\">?android:attr/buttonStyle</item>\n        <item name=\"buttonStyleSmall\">?android:attr/buttonStyleSmall</item>\n        <item name=\"checkboxStyle\">?android:attr/checkboxStyle</item>\n        <item name=\"checkedTextViewStyle\">?android:attr/checkedTextViewStyle</item>\n        <item name=\"editTextStyle\">?android:attr/editTextStyle</item>\n        <item name=\"radioButtonStyle\">?android:attr/radioButtonStyle</item>\n        <item name=\"ratingBarStyle\">?android:attr/ratingBarStyle</item>\n        <item name=\"spinnerStyle\">?android:attr/spinnerStyle</item>\n\n        <!-- Copy our color theme attributes to the framework -->\n        <item name=\"android:colorPrimary\">?attr/colorPrimary</item>\n        <item name=\"android:colorPrimaryDark\">?attr/colorPrimaryDark</item>\n        <item name=\"android:colorAccent\">?attr/colorAccent</item>\n        <item name=\"android:colorControlNormal\">?attr/colorControlNormal</item>\n        <item name=\"android:colorControlActivated\">?attr/colorControlActivated</item>\n        <item name=\"android:colorControlHighlight\">?attr/colorControlHighlight</item>\n        <item name=\"android:colorButtonNormal\">?attr/colorButtonNormal</item>\n    </style><style name=\"Platform.AppCompat.Light\" parent=\"android:Theme.Material.Light\">\n        <item name=\"android:windowNoTitle\">true</item>\n        <item name=\"android:windowActionBar\">false</item>\n\n        <item name=\"android:buttonBarStyle\">?attr/buttonBarStyle</item>\n        <item name=\"android:buttonBarButtonStyle\">?attr/buttonBarButtonStyle</item>\n    </style><style name=\"Base.TextAppearance.AppCompat.Title\" parent=\"android:TextAppearance.Material.Title\"/><style name=\"Base.TextAppearance.AppCompat.Body1\" parent=\"android:TextAppearance.Material.Body1\"/><style name=\"Base.TextAppearance.Widget.AppCompat.Toolbar.Title\" parent=\"android:TextAppearance.Material.Widget.ActionBar.Title\">\n    </style><style name=\"Base.TextAppearance.AppCompat.Body2\" parent=\"android:TextAppearance.Material.Body2\"/><style name=\"Base.Widget.AppCompat.CompoundButton.CheckBox\" parent=\"android:Widget.Material.CompoundButton.CheckBox\"/><style name=\"Base.Widget.AppCompat.Light.ActionBar.TabText\" parent=\"android:Widget.Material.Light.ActionBar.TabText\">\n    </style><style name=\"Base.Widget.AppCompat.ActionBar.TabText\" parent=\"android:Widget.Material.ActionBar.TabText\">\n    </style><style name=\"Base.Widget.AppCompat.Button\" parent=\"android:Widget.Material.Button\"/><style name=\"Base.TextAppearance.AppCompat.Small.Inverse\" parent=\"android:TextAppearance.Material.Small.Inverse\"/><style name=\"Base.Widget.AppCompat.Light.ActionBar.TabView\" parent=\"android:Widget.Material.Light.ActionBar.TabView\">\n    </style><style name=\"Platform.AppCompat\" parent=\"android:Theme.Material\">\n        <item name=\"android:windowNoTitle\">true</item>\n        <item name=\"android:windowActionBar\">false</item>\n\n        <item name=\"android:buttonBarStyle\">?attr/buttonBarStyle</item>\n        <item name=\"android:buttonBarButtonStyle\">?attr/buttonBarButtonStyle</item>\n    </style><style name=\"Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle\" parent=\"android:TextAppearance.Material.Widget.ActionBar.Subtitle\">\n    </style><style name=\"Base.Theme.AppCompat.Light\" parent=\"Base.V21.Theme.AppCompat.Light\"/><style name=\"Base.TextAppearance.AppCompat.Headline\" parent=\"android:TextAppearance.Material.Headline\"/><style name=\"Base.V21.Theme.AppCompat\" parent=\"Base.V7.Theme.AppCompat\">\n        <!-- Action Bar styling attributes -->\n        <item name=\"actionBarSize\">?android:attr/actionBarSize</item>\n        <item name=\"actionBarDivider\">?android:attr/actionBarDivider</item>\n        <item name=\"actionBarItemBackground\">@drawable/abc_action_bar_item_background_material</item>\n        <item name=\"actionButtonStyle\">?android:attr/actionButtonStyle</item>\n        <item name=\"actionMenuTextColor\">?android:attr/actionMenuTextColor</item>\n        <item name=\"actionMenuTextAppearance\">?android:attr/actionMenuTextAppearance</item>\n        <item name=\"actionModeBackground\">?android:attr/actionModeBackground</item>\n        <item name=\"actionModeCloseDrawable\">?android:attr/actionModeCloseDrawable</item>\n        <item name=\"actionOverflowButtonStyle\">?android:attr/actionOverflowButtonStyle</item>\n        <item name=\"homeAsUpIndicator\">?android:attr/homeAsUpIndicator</item>\n\n        <!-- For PopupMenu -->\n        <item name=\"listPreferredItemHeightSmall\">?android:attr/listPreferredItemHeightSmall</item>\n        <item name=\"textAppearanceLargePopupMenu\">?android:attr/textAppearanceLargePopupMenu</item>\n        <item name=\"textAppearanceSmallPopupMenu\">?android:attr/textAppearanceSmallPopupMenu</item>\n\n        <!-- General view attributes -->\n        <item name=\"selectableItemBackground\">?android:attr/selectableItemBackground</item>\n        <item name=\"selectableItemBackgroundBorderless\">?android:attr/selectableItemBackgroundBorderless</item>\n        <item name=\"borderlessButtonStyle\">?android:borderlessButtonStyle</item>\n        <item name=\"dividerHorizontal\">?android:attr/dividerHorizontal</item>\n        <item name=\"dividerVertical\">?android:attr/dividerVertical</item>\n        <item name=\"editTextBackground\">?android:attr/editTextBackground</item>\n        <item name=\"editTextColor\">?android:attr/editTextColor</item>\n        <item name=\"listChoiceBackgroundIndicator\">?android:attr/listChoiceBackgroundIndicator</item>\n\n        <!-- Copy the platform default styles for the AppCompat widgets -->\n        <item name=\"autoCompleteTextViewStyle\">?android:attr/autoCompleteTextViewStyle</item>\n        <item name=\"buttonStyle\">?android:attr/buttonStyle</item>\n        <item name=\"buttonStyleSmall\">?android:attr/buttonStyleSmall</item>\n        <item name=\"checkboxStyle\">?android:attr/checkboxStyle</item>\n        <item name=\"checkedTextViewStyle\">?android:attr/checkedTextViewStyle</item>\n        <item name=\"editTextStyle\">?android:attr/editTextStyle</item>\n        <item name=\"radioButtonStyle\">?android:attr/radioButtonStyle</item>\n        <item name=\"ratingBarStyle\">?android:attr/ratingBarStyle</item>\n        <item name=\"spinnerStyle\">?android:attr/spinnerStyle</item>\n\n        <!-- Copy our color theme attributes to the framework -->\n        <item name=\"android:colorPrimary\">?attr/colorPrimary</item>\n        <item name=\"android:colorPrimaryDark\">?attr/colorPrimaryDark</item>\n        <item name=\"android:colorAccent\">?attr/colorAccent</item>\n        <item name=\"android:colorControlNormal\">?attr/colorControlNormal</item>\n        <item name=\"android:colorControlActivated\">?attr/colorControlActivated</item>\n        <item name=\"android:colorControlHighlight\">?attr/colorControlHighlight</item>\n        <item name=\"android:colorButtonNormal\">?attr/colorButtonNormal</item>\n    </style><style name=\"Base.Theme.AppCompat.Light.Dialog\" parent=\"Base.V21.Theme.AppCompat.Light.Dialog\"/><style name=\"Base.Widget.AppCompat.ActionButton\" parent=\"android:Widget.Material.ActionButton\">\n    </style><style name=\"Base.TextAppearance.AppCompat.Medium\" parent=\"android:TextAppearance.Material.Medium\"/><style name=\"Base.Widget.AppCompat.ListView.Menu\"/><style name=\"Base.Widget.AppCompat.PopupMenu\" parent=\"android:Widget.Material.PopupMenu\">\n    </style><style name=\"Base.TextAppearance.AppCompat.Light.Widget.PopupMenu.Large\" parent=\"android:TextAppearance.Material.Widget.PopupMenu.Large\">\n    </style><style name=\"Base.TextAppearance.AppCompat.Menu\" parent=\"android:TextAppearance.Material.Menu\"/><style name=\"Base.TextAppearance.AppCompat.Widget.ActionMode.Title\" parent=\"android:TextAppearance.Material.Widget.ActionMode.Title\">\n    </style><style name=\"Base.Widget.AppCompat.Light.ActionBar.TabText.Inverse\" parent=\"android:Widget.Material.Light.ActionBar.TabText\">\n    </style><style name=\"Base.Widget.AppCompat.ListView\" parent=\"android:Widget.Material.ListView\"/><style name=\"Base.Theme.AppCompat\" parent=\"Base.V21.Theme.AppCompat\"/><style name=\"Base.Widget.AppCompat.AutoCompleteTextView\" parent=\"android:Widget.Material.AutoCompleteTextView\"/><style name=\"Base.TextAppearance.AppCompat.Widget.ActionBar.Title\" parent=\"android:TextAppearance.Material.Widget.ActionBar.Title\">\n    </style><style name=\"Base.TextAppearance.AppCompat.SearchResult.Subtitle\" parent=\"android:TextAppearance.Material.SearchResult.Subtitle\">\n    </style><style name=\"Base.Widget.AppCompat.Spinner.Underlined\" parent=\"android:Widget.Material.Spinner.Underlined\"/><style name=\"Base.Widget.AppCompat.TextView.SpinnerItem\" parent=\"android:Widget.Material.TextView.SpinnerItem\"/><style name=\"Base.TextAppearance.AppCompat.Large.Inverse\" parent=\"android:TextAppearance.Material.Large.Inverse\"/><style name=\"Base.TextAppearance.AppCompat.Subhead\" parent=\"android:TextAppearance.Material.Subhead\"/><style name=\"Platform.ThemeOverlay.AppCompat.Dark\"/><style name=\"Base.Widget.AppCompat.ListView.DropDown\" parent=\"android:Widget.Material.ListView.DropDown\"/><style name=\"Base.V21.Theme.AppCompat.Dialog\" parent=\"Base.V11.Theme.AppCompat.Dialog\">\n        <item name=\"android:windowElevation\">@dimen/abc_floating_window_z</item>\n    </style><style name=\"Base.TextAppearance.AppCompat.Widget.ActionBar.Menu\" parent=\"android:TextAppearance.Material.Widget.ActionBar.Menu\">\n    </style><style name=\"Base.Widget.AppCompat.Button.Borderless\" parent=\"android:Widget.Material.Button.Borderless\"/><style name=\"Base.TextAppearance.AppCompat.Widget.PopupMenu.Large\" parent=\"android:TextAppearance.Material.Widget.PopupMenu.Large\">\n    </style><style name=\"Base.Widget.AppCompat.ActionButton.Overflow\" parent=\"android:Widget.Material.ActionButton.Overflow\">\n    </style><style name=\"Base.TextAppearance.AppCompat.Button\" parent=\"android:TextAppearance.Material.Button\"/><style name=\"Base.Theme.AppCompat.Dialog\" parent=\"Base.V21.Theme.AppCompat.Dialog\"/><style name=\"Base.TextAppearance.AppCompat.SearchResult.Title\" parent=\"android:TextAppearance.Material.SearchResult.Title\">\n    </style><style name=\"Base.V21.Theme.AppCompat.Light.Dialog\" parent=\"Base.V11.Theme.AppCompat.Light.Dialog\">\n        <item name=\"android:windowElevation\">@dimen/abc_floating_window_z</item>\n    </style><style name=\"Base.TextAppearance.AppCompat.Small\" parent=\"android:TextAppearance.Material.Small\"/><style name=\"Base.Widget.AppCompat.Toolbar.Button.Navigation\" parent=\"android:Widget.Material.Toolbar.Button.Navigation\">\n    </style><style name=\"Base.TextAppearance.AppCompat.Widget.TextView.SpinnerItem\" parent=\"android:TextAppearance.Material.Widget.TextView.SpinnerItem\"/><style name=\"Base.Widget.AppCompat.Button.Small\" parent=\"android:Widget.Material.Button.Small\"/><style name=\"Platform.ThemeOverlay.AppCompat\" parent=\"\">\n        <!-- Copy our color theme attributes to the framework -->\n        <item name=\"android:colorPrimary\">?attr/colorPrimary</item>\n        <item name=\"android:colorPrimaryDark\">?attr/colorPrimaryDark</item>\n        <item name=\"android:colorAccent\">?attr/colorAccent</item>\n        <item name=\"android:colorControlNormal\">?attr/colorControlNormal</item>\n        <item name=\"android:colorControlActivated\">?attr/colorControlActivated</item>\n        <item name=\"android:colorControlHighlight\">?attr/colorControlHighlight</item>\n        <item name=\"android:colorButtonNormal\">?attr/colorButtonNormal</item>\n    </style><style name=\"Base.Widget.AppCompat.Button.Borderless.Colored\" parent=\"android:Widget.Material.Button.Borderless.Colored\"/><style name=\"Base.Widget.AppCompat.ButtonBar\" parent=\"android:Widget.Material.ButtonBar\"/><style name=\"Base.TextAppearance.AppCompat.Caption\" parent=\"android:TextAppearance.Material.Caption\"/><style name=\"Base.Widget.AppCompat.RatingBar\" parent=\"android:Widget.Material.RatingBar\"/><style name=\"Base.TextAppearance.AppCompat.Display4\" parent=\"android:TextAppearance.Material.Display4\"/><style name=\"Base.Widget.AppCompat.ProgressBar\" parent=\"android:Widget.Material.ProgressBar\">\n    </style><style name=\"Base.TextAppearance.AppCompat.Display3\" parent=\"android:TextAppearance.Material.Display3\"/><style name=\"Base.TextAppearance.AppCompat.Display2\" parent=\"android:TextAppearance.Material.Display2\"/><style name=\"Base.TextAppearance.AppCompat.Light.Widget.PopupMenu.Small\" parent=\"android:TextAppearance.Material.Widget.PopupMenu.Small\">\n    </style><style name=\"Base.Widget.AppCompat.PopupMenu.Overflow\">\n        <item name=\"android:dropDownHorizontalOffset\">-4dip</item>\n        <item name=\"android:overlapAnchor\">true</item>\n    </style><style name=\"Base.TextAppearance.AppCompat\" parent=\"android:TextAppearance.Material\"/><style name=\"Base.TextAppearance.AppCompat.Display1\" parent=\"android:TextAppearance.Material.Display1\"/><style name=\"Base.Widget.AppCompat.ListPopupWindow\" parent=\"android:Widget.Material.ListPopupWindow\">\n    </style><style name=\"Base.TextAppearance.AppCompat.Large\" parent=\"android:TextAppearance.Material.Large\"/><style name=\"Base.Widget.AppCompat.ActionButton.CloseMode\" parent=\"android:Widget.Material.ActionButton.CloseMode\">\n        <item name=\"android:minWidth\">56dp</item>\n    </style><style name=\"Base.TextAppearance.AppCompat.Widget.Switch\" parent=\"android:TextAppearance.Material.Button\"/><style name=\"Base.Widget.AppCompat.CompoundButton.RadioButton\" parent=\"android:Widget.Material.CompoundButton.RadioButton\"/><style name=\"Base.TextAppearance.AppCompat.Widget.ActionMode.Subtitle\" parent=\"android:TextAppearance.Material.Widget.ActionMode.Subtitle\">\n    </style><style name=\"Base.Widget.AppCompat.Spinner\" parent=\"android:Widget.Material.Spinner\"/><style name=\"Base.Widget.AppCompat.ActionBar.TabView\" parent=\"android:Widget.Material.ActionBar.TabView\">\n    </style><style name=\"Base.Widget.AppCompat.DropDownItem.Spinner\" parent=\"android:Widget.Material.DropDownItem.Spinner\"/><style name=\"Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle.Inverse\" parent=\"android:TextAppearance.Material.Widget.ActionBar.Subtitle.Inverse\">\n    </style><style name=\"Base.TextAppearance.AppCompat.Widget.PopupMenu.Small\" parent=\"android:TextAppearance.Material.Widget.PopupMenu.Small\">\n    </style><style name=\"Base.TextAppearance.AppCompat.Medium.Inverse\" parent=\"android:TextAppearance.Material.Medium.Inverse\"/><style name=\"Platform.ThemeOverlay.AppCompat.Light\"/><style name=\"Base.TextAppearance.Widget.AppCompat.Toolbar.Subtitle\" parent=\"android:TextAppearance.Material.Widget.ActionBar.Subtitle\">\n    </style><style name=\"Base.Widget.AppCompat.Light.PopupMenu.Overflow\">\n        <item name=\"android:dropDownHorizontalOffset\">-4dip</item>\n        <item name=\"android:overlapAnchor\">true</item>\n    </style><style name=\"Base.Widget.AppCompat.EditText\" parent=\"android:Widget.Material.EditText\"/><style name=\"Base.Widget.AppCompat.ProgressBar.Horizontal\" parent=\"android:Widget.Material.ProgressBar.Horizontal\">\n    </style><style name=\"Base.TextAppearance.AppCompat.Inverse\" parent=\"android:TextAppearance.Material.Inverse\"/><style name=\"Base.TextAppearance.AppCompat.Widget.Button\" parent=\"android:TextAppearance.Material.Widget.Button\"/></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v22/values-v22.xml\" qualifiers=\"v22\"><style name=\"Base.V22.Theme.AppCompat\" parent=\"Base.V21.Theme.AppCompat\">\n        <item name=\"actionModeShareDrawable\">?android:attr/actionModeShareDrawable</item>\n    </style><style name=\"Base.Theme.AppCompat\" parent=\"Base.V22.Theme.AppCompat\"/><style name=\"Base.V22.Theme.AppCompat.Light\" parent=\"Base.V21.Theme.AppCompat.Light\">\n        <item name=\"actionModeShareDrawable\">?android:attr/actionModeShareDrawable</item>\n    </style><style name=\"Base.Theme.AppCompat.Light\" parent=\"Base.V22.Theme.AppCompat.Light\"/></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v23/values-v23.xml\" qualifiers=\"v23\"><style name=\"Base.V23.Theme.AppCompat.Light\" parent=\"Base.V22.Theme.AppCompat.Light\">\n        <!-- We can use the platform drawable on v23+ -->\n        <item name=\"actionBarItemBackground\">?android:attr/actionBarItemBackground</item>\n\n        <item name=\"controlBackground\">@drawable/abc_control_background_material</item>\n    </style><style name=\"Base.Theme.AppCompat.Light\" parent=\"Base.V23.Theme.AppCompat.Light\"/><style name=\"Base.TextAppearance.AppCompat.Widget.Button.Inverse\" parent=\"android:TextAppearance.Material.Widget.Button.Inverse\"/><style name=\"Base.V23.Theme.AppCompat\" parent=\"Base.V22.Theme.AppCompat\">\n        <!-- We can use the platform drawable on v23+ -->\n        <item name=\"actionBarItemBackground\">?android:attr/actionBarItemBackground</item>\n\n        <item name=\"controlBackground\">@drawable/abc_control_background_material</item>\n    </style><style name=\"Base.Theme.AppCompat\" parent=\"Base.V23.Theme.AppCompat\"/><style name=\"Base.Widget.AppCompat.Button.Colored\" parent=\"android:Widget.Material.Button.Colored\"/></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-vi/values-vi.xml\" qualifiers=\"vi\"><string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string><string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Gửi truy vấn\"</string><string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Xóa truy vấn\"</string><string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Chọn một ứng dụng\"</string><string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Tìm kiếm…\"</string><string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Chia sẻ với %s\"</string><string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Thêm tùy chọn\"</string><string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Xong\"</string><string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Tìm kiếm bằng giọng nói\"</string><string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string><string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Xem tất cả\"</string><string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Tìm kiếm\"</string><string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string><string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Tìm kiếm truy vấn\"</string><string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Chia sẻ với\"</string><string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Điều hướng lên trên\"</string><string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Điều hướng về trang chủ\"</string><string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Thu gọn\"</string></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-w360dp/values-w360dp.xml\" qualifiers=\"w360dp\"><integer name=\"abc_max_action_buttons\">3</integer></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-w480dp/values-w480dp.xml\" qualifiers=\"w480dp\"><bool name=\"abc_action_bar_embed_tabs_pre_jb\">true</bool><bool name=\"abc_config_allowActionMenuItemTextWithIcon\">true</bool></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-w500dp/values-w500dp.xml\" qualifiers=\"w500dp\"><integer name=\"abc_max_action_buttons\">4</integer></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-w600dp/values-w600dp.xml\" qualifiers=\"w600dp\"><integer name=\"abc_max_action_buttons\">5</integer><dimen name=\"abc_search_view_text_min_width\">192dip</dimen></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-w720dp/values-w720dp.xml\" qualifiers=\"w720dp\"><bool name=\"abc_action_bar_expanded_action_views_exclusive\">false</bool></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-xlarge/values-xlarge.xml\" qualifiers=\"xlarge\"><item name=\"dialog_fixed_width_minor\" type=\"dimen\">70%</item><item name=\"dialog_fixed_height_major\" type=\"dimen\">60%</item><dimen name=\"abc_search_view_text_min_width\">192dip</dimen><bool name=\"abc_action_bar_expanded_action_views_exclusive\">false</bool><item name=\"dialog_fixed_width_major\" type=\"dimen\">50%</item><integer name=\"abc_max_action_buttons\">5</integer><item name=\"dialog_fixed_height_minor\" type=\"dimen\">90%</item></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-xlarge-land/values-xlarge-land.xml\" qualifiers=\"xlarge-land\"><dimen name=\"abc_search_view_text_min_width\">256dip</dimen></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-zh-rCN/values-zh-rCN.xml\" qualifiers=\"zh-rCN\"><string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"提交查询\"</string><string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"转到上一层级\"</string><string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string><string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"更多选项\"</string><string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"语音搜索\"</string><string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"收起\"</string><string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"转到主屏幕\"</string><string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s：%2$s\"</string><string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"分享方式\"</string><string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"搜索\"</string><string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"选择应用\"</string><string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"查看全部\"</string><string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s - %2$s：%3$s\"</string><string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"搜索查询\"</string><string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"完成\"</string><string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"清除查询\"</string><string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"通过%s分享\"</string><string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"搜索…\"</string></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-zh-rHK/values-zh-rHK.xml\" qualifiers=\"zh-rHK\"><string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"清除查詢\"</string><string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999 +\"</string><string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"更多選項\"</string><string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"提交查詢\"</string><string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"收合\"</string><string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"與「%s」分享\"</string><string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"向上瀏覽\"</string><string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"語音搜尋\"</string><string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"顯示全部\"</string><string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"搜尋…\"</string><string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"選擇應用程式\"</string><string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"搜尋\"</string><string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s (%2$s)：%3$s\"</string><string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"完成\"</string><string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s：%2$s\"</string><string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"搜尋查詢\"</string><string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"分享對象\"</string><string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"瀏覽主頁\"</string></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-zh-rTW/values-zh-rTW.xml\" qualifiers=\"zh-rTW\"><string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"提交查詢\"</string><string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s - %2$s：%3$s\"</string><string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"選擇分享對象\"</string><string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s：%2$s\"</string><string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"查看全部\"</string><string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"選擇應用程式\"</string><string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"清除查詢\"</string><string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"更多選項\"</string><string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"與「%s」分享\"</string><string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"搜尋\"</string><string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"搜尋查詢\"</string><string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"語音搜尋\"</string><string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"向上瀏覽\"</string><string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"瀏覽首頁\"</string><string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"完成\"</string><string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string><string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"收合\"</string><string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"搜尋…\"</string></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-zu/values-zu.xml\" qualifiers=\"zu\"><string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Iyasesha...\"</string><string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string><string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Hambisa umbuzo\"</string><string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Yabelana no-%s\"</string><string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string><string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Izinketho eziningi\"</string><string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Kwenziwe\"</string><string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Umbuzo wosesho\"</string><string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Zulazulela phezulu\"</string><string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Sula inkinga\"</string><string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Sesha\"</string><string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Yabelana no-\"</string><string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Goqa\"</string><string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Ukusesha ngezwi\"</string><string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Khetha uhlelo lokusebenza\"</string><string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Zulazulela ekhaya\"</string><string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Buka konke\"</string><string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string></file></source></dataSet><dataSet config=\"23.0.1\"><source path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/recyclerview-v7/23.0.1/res\"><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/recyclerview-v7/23.0.1/res/values/values.xml\" qualifiers=\"\"><item name=\"item_touch_helper_previous_elevation\" type=\"id\"/><declare-styleable name=\"RecyclerView\"><attr format=\"string\" name=\"layoutManager\"/><attr name=\"android:orientation\"/><attr format=\"integer\" name=\"spanCount\"/><attr format=\"boolean\" name=\"reverseLayout\"/><attr format=\"boolean\" name=\"stackFromEnd\"/></declare-styleable><dimen name=\"item_touch_helper_max_drag_scroll_per_frame\">20dp</dimen></file></source></dataSet><dataSet config=\"0.8.1\"><source path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.fresco/fbcore/0.8.1/res\"/></dataSet><dataSet config=\"0.8.1\"><source path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/res\"/></dataSet><dataSet config=\"0.8.1\"><source path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline-okhttp/0.8.1/res\"/></dataSet><dataSet config=\"0.8.1\"><source path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.fresco/drawee/0.8.1/res\"><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.fresco/drawee/0.8.1/res/values/values.xml\" qualifiers=\"\"><declare-styleable name=\"GenericDraweeView\"><attr format=\"integer\" name=\"fadeDuration\"/><attr format=\"float\" name=\"viewAspectRatio\"/><attr format=\"reference\" name=\"placeholderImage\"/><attr name=\"placeholderImageScaleType\"><enum name=\"none\" value=\"-1\"/><enum name=\"fitXY\" value=\"0\"/><enum name=\"fitStart\" value=\"1\"/><enum name=\"fitCenter\" value=\"2\"/><enum name=\"fitEnd\" value=\"3\"/><enum name=\"center\" value=\"4\"/><enum name=\"centerInside\" value=\"5\"/><enum name=\"centerCrop\" value=\"6\"/><enum name=\"focusCrop\" value=\"7\"/></attr><attr format=\"reference\" name=\"retryImage\"/><attr name=\"retryImageScaleType\"><enum name=\"none\" value=\"-1\"/><enum name=\"fitXY\" value=\"0\"/><enum name=\"fitStart\" value=\"1\"/><enum name=\"fitCenter\" value=\"2\"/><enum name=\"fitEnd\" value=\"3\"/><enum name=\"center\" value=\"4\"/><enum name=\"centerInside\" value=\"5\"/><enum name=\"centerCrop\" value=\"6\"/><enum name=\"focusCrop\" value=\"7\"/></attr><attr format=\"reference\" name=\"failureImage\"/><attr name=\"failureImageScaleType\"><enum name=\"none\" value=\"-1\"/><enum name=\"fitXY\" value=\"0\"/><enum name=\"fitStart\" value=\"1\"/><enum name=\"fitCenter\" value=\"2\"/><enum name=\"fitEnd\" value=\"3\"/><enum name=\"center\" value=\"4\"/><enum name=\"centerInside\" value=\"5\"/><enum name=\"centerCrop\" value=\"6\"/><enum name=\"focusCrop\" value=\"7\"/></attr><attr format=\"reference\" name=\"progressBarImage\"/><attr name=\"progressBarImageScaleType\"><enum name=\"none\" value=\"-1\"/><enum name=\"fitXY\" value=\"0\"/><enum name=\"fitStart\" value=\"1\"/><enum name=\"fitCenter\" value=\"2\"/><enum name=\"fitEnd\" value=\"3\"/><enum name=\"center\" value=\"4\"/><enum name=\"centerInside\" value=\"5\"/><enum name=\"centerCrop\" value=\"6\"/><enum name=\"focusCrop\" value=\"7\"/></attr><attr format=\"integer\" name=\"progressBarAutoRotateInterval\"/><attr name=\"actualImageScaleType\"><enum name=\"none\" value=\"-1\"/><enum name=\"fitXY\" value=\"0\"/><enum name=\"fitStart\" value=\"1\"/><enum name=\"fitCenter\" value=\"2\"/><enum name=\"fitEnd\" value=\"3\"/><enum name=\"center\" value=\"4\"/><enum name=\"centerInside\" value=\"5\"/><enum name=\"centerCrop\" value=\"6\"/><enum name=\"focusCrop\" value=\"7\"/></attr><attr format=\"reference\" name=\"backgroundImage\"/><attr format=\"reference\" name=\"overlayImage\"/><attr format=\"reference\" name=\"pressedStateOverlayImage\"/><attr format=\"boolean\" name=\"roundAsCircle\"/><attr format=\"dimension\" name=\"roundedCornerRadius\"/><attr format=\"boolean\" name=\"roundTopLeft\"/><attr format=\"boolean\" name=\"roundTopRight\"/><attr format=\"boolean\" name=\"roundBottomRight\"/><attr format=\"boolean\" name=\"roundBottomLeft\"/><attr format=\"color\" name=\"roundWithOverlayColor\"/><attr format=\"dimension\" name=\"roundingBorderWidth\"/><attr format=\"color\" name=\"roundingBorderColor\"/></declare-styleable></file></source></dataSet><dataSet config=\"0.8.1\"><source path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.fresco/fresco/0.8.1/res\"/></dataSet><dataSet config=\"r174650\"><source path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/org.webkit/android-jsc/r174650/res\"/></dataSet><dataSet config=\"0.24.1\"><source path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res\"><file name=\"catalyst_push_up_in\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/anim/catalyst_push_up_in.xml\" qualifiers=\"\" type=\"anim\"/><file name=\"catalyst_push_up_out\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/anim/catalyst_push_up_out.xml\" qualifiers=\"\" type=\"anim\"/><file name=\"slide_down\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/anim/slide_down.xml\" qualifiers=\"\" type=\"anim\"/><file name=\"slide_up\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/anim/slide_up.xml\" qualifiers=\"\" type=\"anim\"/><file name=\"fps_view\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/layout/fps_view.xml\" qualifiers=\"\" type=\"layout\"/><file name=\"redbox_item_frame\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/layout/redbox_item_frame.xml\" qualifiers=\"\" type=\"layout\"/><file name=\"redbox_item_title\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/layout/redbox_item_title.xml\" qualifiers=\"\" type=\"layout\"/><file name=\"redbox_view\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/layout/redbox_view.xml\" qualifiers=\"\" type=\"layout\"/><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/values/values.xml\" qualifiers=\"\"><string name=\"catalyst_settings\" project=\"catalyst\" translatable=\"false\">Dev Settings</string><style name=\"Animation.Catalyst.RedBox\" parent=\"@android:style/Animation\">\n    <item name=\"android:windowEnterAnimation\">@anim/catalyst_push_up_in</item>\n    <item name=\"android:windowExitAnimation\">@anim/catalyst_push_up_out</item>\n  </style><style name=\"Theme.FullScreenDialogAnimated\" parent=\"Theme.FullScreenDialog\">\n    <item name=\"android:windowAnimationStyle\">@style/DialogAnimation</item>\n  </style><style name=\"Theme.ReactNative.AppCompat.Light\" parent=\"@style/Theme.AppCompat.Light.NoActionBar\">\n        <item name=\"android:textColor\">@android:color/black</item>\n    </style><string name=\"catalyst_perf_monitor_off\" project=\"catalyst\" translatable=\"false\">Disable Perf Monitor</string><string name=\"catalyst_hot_module_replacement\" project=\"catalyst\" translatable=\"false\">Enable Hot Reloading</string><style name=\"Theme.Catalyst.RedBox\" parent=\"@style/Theme.AppCompat.DialogWhenLarge\">\n    <item name=\"android:windowBackground\">@color/catalyst_redbox_background</item>\n    <item name=\"android:windowAnimationStyle\">@style/Animation.Catalyst.RedBox</item>\n    <item name=\"android:inAnimation\">@android:anim/fade_in</item>\n    <item name=\"android:outAnimation\">@android:anim/fade_out</item>\n    <item name=\"android:textColor\">@android:color/white</item>\n  </style><style name=\"DialogAnimation\">\n    <item name=\"android:windowEnterAnimation\">@anim/slide_up</item>\n    <item name=\"android:windowExitAnimation\">@anim/slide_down</item>\n  </style><string name=\"catalyst_element_inspector_off\" project=\"catalyst\" translatable=\"false\">Hide Inspector</string><string name=\"catalyst_settings_title\" project=\"catalyst\" translatable=\"false\">Catalyst Dev Settings</string><string name=\"catalyst_stop_profile\" project=\"catalyst\" translatable=\"false\">Stop Profile</string><string name=\"catalyst_jsload_message\" project=\"catalyst\" translatable=\"false\">Fetching JS bundle</string><string name=\"catalyst_element_inspector\" project=\"catalyst\" translatable=\"false\">Show Inspector</string><style name=\"Theme.FullScreenDialog\">\n    <item name=\"android:windowNoTitle\">true</item>\n    <item name=\"android:windowIsFloating\">false</item>\n    <item name=\"android:windowBackground\">@android:color/transparent</item>\n  </style><string name=\"catalyst_start_profile\" project=\"catalyst\" translatable=\"false\">Start Profile</string><string name=\"catalyst_hot_module_replacement_off\" project=\"catalyst\" translatable=\"false\">Disable Hot Reloading</string><string name=\"catalyst_jsload_title\" project=\"catalyst\" translatable=\"false\">Please wait…</string><string name=\"catalyst_perf_monitor\" project=\"catalyst\" translatable=\"false\">Enable Perf Monitor</string><string name=\"catalyst_remotedbg_error\" project=\"catalyst\" translatable=\"false\">Unable to connect with remote debugger</string><style name=\"Theme.Catalyst\"/><color name=\"catalyst_redbox_background\">#eecc0000</color><string name=\"catalyst_live_reload_off\" project=\"catalyst\" translatable=\"false\">Disable Live Reload</string><string name=\"catalyst_debugjs\" project=\"catalyst\" translatable=\"false\">Debug in Chrome</string><string name=\"catalyst_debugjs_off\" project=\"catalyst\" translatable=\"false\">Stop Chrome Debugging</string><string name=\"catalyst_reloadjs\" project=\"catalyst\" translatable=\"false\">Reload JS</string><style name=\"Theme.ReactNative.AppCompat.Light.NoActionBar.FullScreen\" parent=\"@style/Theme.ReactNative.AppCompat.Light\">\n        <item name=\"android:windowNoTitle\">true</item>\n        <item name=\"windowActionBar\">false</item>\n        <item name=\"android:windowFullscreen\">true</item>\n        <item name=\"android:windowContentOverlay\">@null</item>\n    </style><string name=\"catalyst_live_reload\" project=\"catalyst\" translatable=\"false\">Enable Live Reload</string><string name=\"catalyst_jsload_error\" project=\"catalyst\" translatable=\"false\">Unable to download JS bundle. Did you forget to start the development server or connect your device?</string><string name=\"catalyst_remotedbg_message\" project=\"catalyst\" translatable=\"false\">Connecting to remote debugger</string><style name=\"Theme\"/></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/values-cs/values-cs.xml\" qualifiers=\"cs\"><string name=\"catalyst_debugjs\">Debug JS</string><string name=\"catalyst_reloadjs\">Reload JS</string><string name=\"catalyst_settings_title\">Catalyst Dev Settings</string><string name=\"catalyst_element_inspector\">Prozkoumat prvek</string><string name=\"catalyst_jsload_message\">Fetching JS bundle</string><string name=\"catalyst_jsload_error\">Unable to download JS bundle</string><string name=\"catalyst_jsload_title\">Čekejte prosím...</string><string name=\"catalyst_settings\">Dev Settings</string></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/values-da/values-da.xml\" qualifiers=\"da\"><string name=\"catalyst_element_inspector\">Inspicer element</string><string name=\"catalyst_jsload_error\">Unable to download JS bundle</string><string name=\"catalyst_jsload_message\">Fetching JS bundle</string><string name=\"catalyst_jsload_title\">Vent venligst...</string><string name=\"catalyst_settings_title\">Catalyst Dev Settings</string><string name=\"catalyst_debugjs\">Debug JS</string><string name=\"catalyst_settings\">Dev Settings</string><string name=\"catalyst_reloadjs\">Reload JS</string></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/values-de/values-de.xml\" qualifiers=\"de\"><string name=\"catalyst_reloadjs\">Reload JS</string><string name=\"catalyst_settings_title\">Catalyst Dev Settings</string><string name=\"catalyst_debugjs\">Debug JS</string><string name=\"catalyst_element_inspector\">Element untersuchen</string><string name=\"catalyst_jsload_title\">Bitte warten Sie ...</string><string name=\"catalyst_jsload_error\">Unable to download JS bundle</string><string name=\"catalyst_jsload_message\">Fetching JS bundle</string><string name=\"catalyst_settings\">Dev Settings</string></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/values-el/values-el.xml\" qualifiers=\"el\"><string name=\"catalyst_debugjs\">Debug JS</string><string name=\"catalyst_jsload_message\">Fetching JS bundle</string><string name=\"catalyst_element_inspector\">Εξέταση στοιχείου</string><string name=\"catalyst_settings_title\">Catalyst Dev Settings</string><string name=\"catalyst_jsload_error\">Unable to download JS bundle</string><string name=\"catalyst_reloadjs\">Reload JS</string><string name=\"catalyst_settings\">Dev Settings</string><string name=\"catalyst_jsload_title\">Περιμένετε...</string></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/values-en-rGB/values-en-rGB.xml\" qualifiers=\"en-rGB\"><string name=\"catalyst_jsload_error\">Unable to download JS bundle</string><string name=\"catalyst_jsload_title\">Please wait...</string><string name=\"catalyst_element_inspector\">Show Inspector</string><string name=\"catalyst_settings\">Dev Settings</string><string name=\"catalyst_jsload_message\">Fetching JS bundle</string><string name=\"catalyst_reloadjs\">Reload JS</string><string name=\"catalyst_debugjs\">Debug JS</string><string name=\"catalyst_settings_title\">Catalyst Dev Settings</string></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/values-es/values-es.xml\" qualifiers=\"es\"><string name=\"catalyst_jsload_error\">Unable to download JS bundle</string><string name=\"catalyst_jsload_title\">Espera...</string><string name=\"catalyst_settings_title\">Catalyst Dev Settings</string><string name=\"catalyst_element_inspector\">Inspeccionar elemento</string><string name=\"catalyst_settings\">Dev Settings</string><string name=\"catalyst_reloadjs\">Reload JS</string><string name=\"catalyst_debugjs\">Debug JS</string><string name=\"catalyst_jsload_message\">Fetching JS bundle</string></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/values-es-rES/values-es-rES.xml\" qualifiers=\"es-rES\"><string name=\"catalyst_jsload_message\">Fetching JS bundle</string><string name=\"catalyst_settings_title\">Catalyst Dev Settings</string><string name=\"catalyst_settings\">Dev Settings</string><string name=\"catalyst_reloadjs\">Reload JS</string><string name=\"catalyst_debugjs\">Debug JS</string><string name=\"catalyst_element_inspector\">Inspeccionar elemento</string><string name=\"catalyst_jsload_title\">Espera...</string><string name=\"catalyst_jsload_error\">Unable to download JS bundle</string></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/values-fb/values-fb.xml\" qualifiers=\"fb\"><string name=\"catalyst_element_inspector\">[Show Inspector#c1b106c92869437ebd88f326d632b973:1]</string><string name=\"catalyst_debugjs\">[Debug JS#2010fa256bd28603b686da2713bb843a:1]</string><string name=\"catalyst_jsload_error\">[Unable to download JS bundle#51057ecd2555f91873cce4c452e1ea03:1]</string><string name=\"catalyst_jsload_title\">[Please wait...#71bad104a80f916d3bfb1ffa23a487af:1]</string><string name=\"catalyst_settings_title\">[Catalyst Dev Settings#bf44a606175d084d4c8d283938dd041d:1]</string><string name=\"catalyst_reloadjs\">[Reload JS#cd6b54f9f3c2e4ae7de6fdaf163ef79b:1]</string><string name=\"catalyst_jsload_message\">[Fetching JS bundle#0de4127d4fc6e7d1e265e07433f26e25:1]</string><string name=\"catalyst_settings\">[Dev Settings#6b65fc308a2da07fa01ad6fcbaa57002:1]</string></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/values-fb-rLL/values-fb-rLL.xml\" qualifiers=\"fb-rLL\"><string name=\"catalyst_settings_title\">Catalyst Dev Settings</string><string name=\"catalyst_debugjs\">Debug JS</string><string name=\"catalyst_element_inspector\">(तत्व निरीक्षण गर्नुहोस्)</string><string name=\"catalyst_jsload_message\">Fetching JS bundle</string><string name=\"catalyst_settings\">Dev Settings</string><string name=\"catalyst_jsload_error\">Unable to download JS bundle</string><string name=\"catalyst_jsload_title\">(অনুগ্রহ করে অপেক্ষা করুন….)</string><string name=\"catalyst_reloadjs\">Reload JS</string></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/values-fi/values-fi.xml\" qualifiers=\"fi\"><string name=\"catalyst_element_inspector\">Tarkista elementti</string><string name=\"catalyst_jsload_error\">Unable to download JS bundle</string><string name=\"catalyst_jsload_title\">Odota…</string><string name=\"catalyst_settings_title\">Catalyst Dev Settings</string><string name=\"catalyst_jsload_message\">Fetching JS bundle</string><string name=\"catalyst_reloadjs\">Reload JS</string><string name=\"catalyst_debugjs\">Debug JS</string><string name=\"catalyst_settings\">Dev Settings</string></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/values-fr/values-fr.xml\" qualifiers=\"fr\"><string name=\"catalyst_element_inspector\">Inspecter l’élément</string><string name=\"catalyst_reloadjs\">Reload JS</string><string name=\"catalyst_settings\">Dev Settings</string><string name=\"catalyst_debugjs\">Debug JS</string><string name=\"catalyst_jsload_message\">Fetching JS bundle</string><string name=\"catalyst_settings_title\">Catalyst Dev Settings</string><string name=\"catalyst_jsload_error\">Unable to download JS bundle</string><string name=\"catalyst_jsload_title\">Veuillez patienter...</string></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/values-hu/values-hu.xml\" qualifiers=\"hu\"><string name=\"catalyst_settings\">Dev Settings</string><string name=\"catalyst_jsload_message\">Fetching JS bundle</string><string name=\"catalyst_reloadjs\">Reload JS</string><string name=\"catalyst_settings_title\">Catalyst Dev Settings</string><string name=\"catalyst_jsload_title\">Kérjük, várj...</string><string name=\"catalyst_jsload_error\">Unable to download JS bundle</string><string name=\"catalyst_element_inspector\">Elem megtekintése</string><string name=\"catalyst_debugjs\">Debug JS</string></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/values-in/values-in.xml\" qualifiers=\"in\"><string name=\"catalyst_debugjs\">Debug JS</string><string name=\"catalyst_settings\">Dev Settings</string><string name=\"catalyst_jsload_title\">Harap tunggu...</string><string name=\"catalyst_settings_title\">Catalyst Dev Settings</string><string name=\"catalyst_jsload_error\">Unable to download JS bundle</string><string name=\"catalyst_jsload_message\">Fetching JS bundle</string><string name=\"catalyst_reloadjs\">Reload JS</string><string name=\"catalyst_element_inspector\">Periksa Elemen</string></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/values-it/values-it.xml\" qualifiers=\"it\"><string name=\"catalyst_element_inspector\">Esamina elemento</string><string name=\"catalyst_debugjs\">Debug JS</string><string name=\"catalyst_jsload_title\">Attendi...</string><string name=\"catalyst_jsload_error\">Unable to download JS bundle</string><string name=\"catalyst_settings_title\">Catalyst Dev Settings</string><string name=\"catalyst_reloadjs\">Reload JS</string><string name=\"catalyst_settings\">Dev Settings</string><string name=\"catalyst_jsload_message\">Fetching JS bundle</string></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/values-ja/values-ja.xml\" qualifiers=\"ja\"><string name=\"catalyst_debugjs\">Debug JS</string><string name=\"catalyst_jsload_title\">しばらくお待ちください</string><string name=\"catalyst_settings_title\">Catalyst Dev Settings</string><string name=\"catalyst_reloadjs\">Reload JS</string><string name=\"catalyst_jsload_error\">Unable to download JS bundle</string><string name=\"catalyst_settings\">Dev Settings</string><string name=\"catalyst_element_inspector\">要素を確認</string><string name=\"catalyst_jsload_message\">Fetching JS bundle</string></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/values-ko/values-ko.xml\" qualifiers=\"ko\"><string name=\"catalyst_debugjs\">Debug JS</string><string name=\"catalyst_reloadjs\">Reload JS</string><string name=\"catalyst_jsload_error\">Unable to download JS bundle</string><string name=\"catalyst_jsload_title\">기다려주세요...</string><string name=\"catalyst_jsload_message\">Fetching JS bundle</string><string name=\"catalyst_settings_title\">Catalyst Dev Settings</string><string name=\"catalyst_settings\">Dev Settings</string><string name=\"catalyst_element_inspector\">요소 검사</string></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/values-nb/values-nb.xml\" qualifiers=\"nb\"><string name=\"catalyst_reloadjs\">Reload JS</string><string name=\"catalyst_jsload_error\">Unable to download JS bundle</string><string name=\"catalyst_jsload_title\">Vent litt ...</string><string name=\"catalyst_settings\">Dev Settings</string><string name=\"catalyst_debugjs\">Debug JS</string><string name=\"catalyst_element_inspector\">Inspiser element</string><string name=\"catalyst_jsload_message\">Fetching JS bundle</string><string name=\"catalyst_settings_title\">Catalyst Dev Settings</string></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/values-nl/values-nl.xml\" qualifiers=\"nl\"><string name=\"catalyst_jsload_title\">Even geduld...</string><string name=\"catalyst_reloadjs\">Reload JS</string><string name=\"catalyst_jsload_error\">Unable to download JS bundle</string><string name=\"catalyst_settings\">Dev Settings</string><string name=\"catalyst_debugjs\">Debug JS</string><string name=\"catalyst_element_inspector\">Element inspecteren</string><string name=\"catalyst_settings_title\">Catalyst Dev Settings</string><string name=\"catalyst_jsload_message\">Fetching JS bundle</string></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/values-pl/values-pl.xml\" qualifiers=\"pl\"><string name=\"catalyst_reloadjs\">Reload JS</string><string name=\"catalyst_settings\">Dev Settings</string><string name=\"catalyst_debugjs\">Debug JS</string><string name=\"catalyst_jsload_error\">Unable to download JS bundle</string><string name=\"catalyst_jsload_title\">Zaczekaj...</string><string name=\"catalyst_settings_title\">Catalyst Dev Settings</string><string name=\"catalyst_element_inspector\">Zbadaj element</string><string name=\"catalyst_jsload_message\">Fetching JS bundle</string></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/values-pt/values-pt.xml\" qualifiers=\"pt\"><string name=\"catalyst_settings\">Dev Settings</string><string name=\"catalyst_debugjs\">Debug JS</string><string name=\"catalyst_reloadjs\">Reload JS</string><string name=\"catalyst_jsload_error\">Unable to download JS bundle</string><string name=\"catalyst_jsload_title\">Aguarde...</string><string name=\"catalyst_jsload_message\">Fetching JS bundle</string><string name=\"catalyst_settings_title\">Catalyst Dev Settings</string><string name=\"catalyst_element_inspector\">Show Inspector</string></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/values-pt-rPT/values-pt-rPT.xml\" qualifiers=\"pt-rPT\"><string name=\"catalyst_debugjs\">Debug JS</string><string name=\"catalyst_settings\">Dev Settings</string><string name=\"catalyst_reloadjs\">Reload JS</string><string name=\"catalyst_element_inspector\">Show Inspector</string><string name=\"catalyst_jsload_title\">Aguarda...</string><string name=\"catalyst_settings_title\">Catalyst Dev Settings</string><string name=\"catalyst_jsload_error\">Unable to download JS bundle</string><string name=\"catalyst_jsload_message\">Fetching JS bundle</string></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/values-ro/values-ro.xml\" qualifiers=\"ro\"><string name=\"catalyst_debugjs\">Debug JS</string><string name=\"catalyst_element_inspector\">Show Inspector</string><string name=\"catalyst_settings\">Dev Settings</string><string name=\"catalyst_reloadjs\">Reload JS</string><string name=\"catalyst_settings_title\">Catalyst Dev Settings</string><string name=\"catalyst_jsload_message\">Fetching JS bundle</string><string name=\"catalyst_jsload_title\">Please wait...</string><string name=\"catalyst_jsload_error\">Unable to download JS bundle</string></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/values-ru/values-ru.xml\" qualifiers=\"ru\"><string name=\"catalyst_settings\">Dev Settings</string><string name=\"catalyst_jsload_message\">Fetching JS bundle</string><string name=\"catalyst_element_inspector\">Проверить элемент</string><string name=\"catalyst_settings_title\">Catalyst Dev Settings</string><string name=\"catalyst_debugjs\">Debug JS</string><string name=\"catalyst_jsload_error\">Unable to download JS bundle</string><string name=\"catalyst_jsload_title\">Подождите...</string><string name=\"catalyst_reloadjs\">Reload JS</string></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/values-sv/values-sv.xml\" qualifiers=\"sv\"><string name=\"catalyst_debugjs\">Debug JS</string><string name=\"catalyst_settings_title\">Catalyst Dev Settings</string><string name=\"catalyst_element_inspector\">Inspektionselement</string><string name=\"catalyst_jsload_message\">Fetching JS bundle</string><string name=\"catalyst_reloadjs\">Reload JS</string><string name=\"catalyst_jsload_error\">Unable to download JS bundle</string><string name=\"catalyst_jsload_title\">Vänta ...</string><string name=\"catalyst_settings\">Dev Settings</string></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/values-th/values-th.xml\" qualifiers=\"th\"><string name=\"catalyst_jsload_error\">Unable to download JS bundle</string><string name=\"catalyst_jsload_title\">โปรดรอ...</string><string name=\"catalyst_debugjs\">Debug JS</string><string name=\"catalyst_jsload_message\">Fetching JS bundle</string><string name=\"catalyst_element_inspector\">ตรวจสอบอิลิเมนต์</string><string name=\"catalyst_settings_title\">Catalyst Dev Settings</string><string name=\"catalyst_reloadjs\">Reload JS</string><string name=\"catalyst_settings\">Dev Settings</string></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/values-tr/values-tr.xml\" qualifiers=\"tr\"><string name=\"catalyst_element_inspector\">Öğeyi Denetle</string><string name=\"catalyst_debugjs\">Debug JS</string><string name=\"catalyst_settings_title\">Catalyst Dev Settings</string><string name=\"catalyst_jsload_error\">Unable to download JS bundle</string><string name=\"catalyst_jsload_title\">Lütfen bekleyin...</string><string name=\"catalyst_jsload_message\">Fetching JS bundle</string><string name=\"catalyst_reloadjs\">Reload JS</string><string name=\"catalyst_settings\">Dev Settings</string></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/values-vi/values-vi.xml\" qualifiers=\"vi\"><string name=\"catalyst_jsload_message\">Fetching JS bundle</string><string name=\"catalyst_element_inspector\">Kiểm tra phần tử</string><string name=\"catalyst_debugjs\">Debug JS</string><string name=\"catalyst_reloadjs\">Reload JS</string><string name=\"catalyst_settings\">Dev Settings</string><string name=\"catalyst_settings_title\">Catalyst Dev Settings</string><string name=\"catalyst_jsload_error\">Unable to download JS bundle</string><string name=\"catalyst_jsload_title\">Vui lòng đợi...</string></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/values-zh-rCN/values-zh-rCN.xml\" qualifiers=\"zh-rCN\"><string name=\"catalyst_reloadjs\">Reload JS</string><string name=\"catalyst_settings_title\">Catalyst Dev Settings</string><string name=\"catalyst_jsload_error\">Unable to download JS bundle</string><string name=\"catalyst_jsload_message\">Fetching JS bundle</string><string name=\"catalyst_jsload_title\">请稍等...</string><string name=\"catalyst_element_inspector\">检查元素</string><string name=\"catalyst_settings\">Dev Settings</string><string name=\"catalyst_debugjs\">Debug JS</string></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/values-zh-rHK/values-zh-rHK.xml\" qualifiers=\"zh-rHK\"><string name=\"catalyst_debugjs\">Debug JS</string><string name=\"catalyst_jsload_error\">Unable to download JS bundle</string><string name=\"catalyst_jsload_title\">請稍候……</string><string name=\"catalyst_reloadjs\">Reload JS</string><string name=\"catalyst_settings_title\">Catalyst Dev Settings</string><string name=\"catalyst_jsload_message\">Fetching JS bundle</string><string name=\"catalyst_settings\">Dev Settings</string><string name=\"catalyst_element_inspector\">檢查項目</string></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/values-zh-rTW/values-zh-rTW.xml\" qualifiers=\"zh-rTW\"><string name=\"catalyst_jsload_message\">Fetching JS bundle</string><string name=\"catalyst_debugjs\">Debug JS</string><string name=\"catalyst_element_inspector\">檢查元素</string><string name=\"catalyst_reloadjs\">Reload JS</string><string name=\"catalyst_settings\">Dev Settings</string><string name=\"catalyst_jsload_error\">Unable to download JS bundle</string><string name=\"catalyst_jsload_title\">請稍候……</string><string name=\"catalyst_settings_title\">Catalyst Dev Settings</string></file><file name=\"preferences\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/xml/preferences.xml\" qualifiers=\"\" type=\"xml\"/></source></dataSet><dataSet config=\"main\"><source path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/src/main/res\"><file name=\"ic_launcher\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/src/main/res/mipmap-hdpi/ic_launcher.png\" qualifiers=\"hdpi\" type=\"mipmap\"/><file name=\"ic_launcher\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/src/main/res/mipmap-mdpi/ic_launcher.png\" qualifiers=\"mdpi\" type=\"mipmap\"/><file name=\"ic_launcher\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png\" qualifiers=\"xhdpi\" type=\"mipmap\"/><file name=\"ic_launcher\" path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png\" qualifiers=\"xxhdpi\" type=\"mipmap\"/><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/src/main/res/values/strings.xml\" qualifiers=\"\"><string name=\"app_name\">GoReact</string></file><file path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/src/main/res/values/styles.xml\" qualifiers=\"\"><style name=\"AppTheme\" parent=\"Theme.AppCompat.Light.NoActionBar\">\n        <!-- Customize your theme here. -->\n    </style></file></source><source path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/generated/res/rs/debug\"/><source path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/generated/res/resValues/debug\"/></dataSet><dataSet config=\"debug\"><source path=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/src/debug/res\"/></dataSet><mergedItems><configuration qualifiers=\"\"><declare-styleable name=\"AlertDialog\"><attr name=\"android:layout\"/><attr format=\"reference\" name=\"buttonPanelSideLayout\"/><attr format=\"reference\" name=\"listLayout\"/><attr format=\"reference\" name=\"multiChoiceItemLayout\"/><attr format=\"reference\" name=\"singleChoiceItemLayout\"/><attr format=\"reference\" name=\"listItemLayout\"/></declare-styleable><declare-styleable name=\"Spinner\"><attr name=\"android:prompt\"/><attr name=\"popupTheme\"/><attr name=\"android:popupBackground\"/><attr name=\"android:dropDownWidth\"/></declare-styleable><declare-styleable name=\"PopupWindow\"><attr format=\"boolean\" name=\"overlapAnchor\"/><attr name=\"android:popupBackground\"/></declare-styleable><declare-styleable name=\"DrawerArrowToggle\"><attr format=\"color\" name=\"color\"/><attr format=\"boolean\" name=\"spinBars\"/><attr format=\"dimension\" name=\"drawableSize\"/><attr format=\"dimension\" name=\"gapBetweenBars\"/><attr format=\"dimension\" name=\"arrowHeadLength\"/><attr format=\"dimension\" name=\"arrowShaftLength\"/><attr format=\"dimension\" name=\"barLength\"/><attr format=\"dimension\" name=\"thickness\"/></declare-styleable><declare-styleable name=\"ActionBarLayout\"><attr name=\"android:layout_gravity\"/></declare-styleable><declare-styleable name=\"ActivityChooserView\"><attr format=\"string\" name=\"initialActivityCount\"/><attr format=\"reference\" name=\"expandActivityOverflowButtonDrawable\"/></declare-styleable><declare-styleable name=\"ViewStubCompat\"><attr name=\"android:layout\"/><attr name=\"android:inflatedId\"/><attr name=\"android:id\"/></declare-styleable><declare-styleable name=\"ListPopupWindow\"><attr name=\"android:dropDownVerticalOffset\"/><attr name=\"android:dropDownHorizontalOffset\"/></declare-styleable><declare-styleable name=\"TextAppearance\"><attr name=\"android:textSize\"/><attr name=\"android:textColor\"/><attr name=\"android:textStyle\"/><attr name=\"android:typeface\"/><attr name=\"textAllCaps\"/></declare-styleable><declare-styleable name=\"MenuView\"><attr name=\"android:itemTextAppearance\"/><attr name=\"android:horizontalDivider\"/><attr name=\"android:verticalDivider\"/><attr name=\"android:headerBackground\"/><attr name=\"android:itemBackground\"/><attr name=\"android:windowAnimationStyle\"/><attr name=\"android:itemIconDisabledAlpha\"/><attr format=\"boolean\" name=\"preserveIconSpacing\"/></declare-styleable><declare-styleable name=\"ActionBar\"><attr name=\"navigationMode\"><enum name=\"normal\" value=\"0\"/><enum name=\"listMode\" value=\"1\"/><enum name=\"tabMode\" value=\"2\"/></attr><attr name=\"displayOptions\"><flag name=\"none\" value=\"0\"/><flag name=\"useLogo\" value=\"0x1\"/><flag name=\"showHome\" value=\"0x2\"/><flag name=\"homeAsUp\" value=\"0x4\"/><flag name=\"showTitle\" value=\"0x8\"/><flag name=\"showCustom\" value=\"0x10\"/><flag name=\"disableHome\" value=\"0x20\"/></attr><attr name=\"title\"/><attr format=\"string\" name=\"subtitle\"/><attr format=\"reference\" name=\"titleTextStyle\"/><attr format=\"reference\" name=\"subtitleTextStyle\"/><attr format=\"reference\" name=\"icon\"/><attr format=\"reference\" name=\"logo\"/><attr format=\"reference\" name=\"divider\"/><attr format=\"reference\" name=\"background\"/><attr format=\"reference|color\" name=\"backgroundStacked\"/><attr format=\"reference|color\" name=\"backgroundSplit\"/><attr format=\"reference\" name=\"customNavigationLayout\"/><attr name=\"height\"/><attr format=\"reference\" name=\"homeLayout\"/><attr format=\"reference\" name=\"progressBarStyle\"/><attr format=\"reference\" name=\"indeterminateProgressStyle\"/><attr format=\"dimension\" name=\"progressBarPadding\"/><attr name=\"homeAsUpIndicator\"/><attr format=\"dimension\" name=\"itemPadding\"/><attr format=\"boolean\" name=\"hideOnContentScroll\"/><attr format=\"dimension\" name=\"contentInsetStart\"/><attr format=\"dimension\" name=\"contentInsetEnd\"/><attr format=\"dimension\" name=\"contentInsetLeft\"/><attr format=\"dimension\" name=\"contentInsetRight\"/><attr format=\"dimension\" name=\"elevation\"/><attr format=\"reference\" name=\"popupTheme\"/></declare-styleable><declare-styleable name=\"ActionMenuItemView\"><attr name=\"android:minWidth\"/></declare-styleable><declare-styleable name=\"MenuGroup\"><attr name=\"android:id\"/><attr name=\"android:menuCategory\"/><attr name=\"android:orderInCategory\"/><attr name=\"android:checkableBehavior\"/><attr name=\"android:visible\"/><attr name=\"android:enabled\"/></declare-styleable><declare-styleable name=\"Toolbar\"><attr format=\"reference\" name=\"titleTextAppearance\"/><attr format=\"reference\" name=\"subtitleTextAppearance\"/><attr name=\"title\"/><attr name=\"subtitle\"/><attr name=\"android:gravity\"/><attr format=\"dimension\" name=\"titleMargins\"/><attr format=\"dimension\" name=\"titleMarginStart\"/><attr format=\"dimension\" name=\"titleMarginEnd\"/><attr format=\"dimension\" name=\"titleMarginTop\"/><attr format=\"dimension\" name=\"titleMarginBottom\"/><attr name=\"contentInsetStart\"/><attr name=\"contentInsetEnd\"/><attr name=\"contentInsetLeft\"/><attr name=\"contentInsetRight\"/><attr format=\"dimension\" name=\"maxButtonHeight\"/><attr format=\"reference\" name=\"collapseIcon\"/><attr format=\"string\" name=\"collapseContentDescription\"/><attr name=\"popupTheme\"/><attr format=\"reference\" name=\"navigationIcon\"/><attr format=\"string\" name=\"navigationContentDescription\"/><attr name=\"android:minHeight\"/><attr name=\"logo\"/><attr format=\"string\" name=\"logoDescription\"/><attr format=\"color\" name=\"titleTextColor\"/><attr format=\"color\" name=\"subtitleTextColor\"/></declare-styleable><declare-styleable name=\"LinearLayoutCompat_Layout\"><attr name=\"android:layout_width\"/><attr name=\"android:layout_height\"/><attr name=\"android:layout_weight\"/><attr name=\"android:layout_gravity\"/></declare-styleable><declare-styleable name=\"AppCompatTextView\"><attr format=\"reference|boolean\" name=\"textAllCaps\"/><attr name=\"android:textAppearance\"/></declare-styleable><declare-styleable name=\"MenuItem\"><attr name=\"android:id\"/><attr name=\"android:menuCategory\"/><attr name=\"android:orderInCategory\"/><attr name=\"android:title\"/><attr name=\"android:titleCondensed\"/><attr name=\"android:icon\"/><attr name=\"android:alphabeticShortcut\"/><attr name=\"android:numericShortcut\"/><attr name=\"android:checkable\"/><attr name=\"android:checked\"/><attr name=\"android:visible\"/><attr name=\"android:enabled\"/><attr name=\"android:onClick\"/><attr name=\"showAsAction\"><flag name=\"never\" value=\"0\"/><flag name=\"ifRoom\" value=\"1\"/><flag name=\"always\" value=\"2\"/><flag name=\"withText\" value=\"4\"/><flag name=\"collapseActionView\" value=\"8\"/></attr><attr format=\"reference\" name=\"actionLayout\"/><attr format=\"string\" name=\"actionViewClass\"/><attr format=\"string\" name=\"actionProviderClass\"/></declare-styleable><declare-styleable name=\"ViewBackgroundHelper\"><attr name=\"android:background\"/><attr format=\"color\" name=\"backgroundTint\"/><attr name=\"backgroundTintMode\"><enum name=\"src_over\" value=\"3\"/><enum name=\"src_in\" value=\"5\"/><enum name=\"src_atop\" value=\"9\"/><enum name=\"multiply\" value=\"14\"/><enum name=\"screen\" value=\"15\"/></attr></declare-styleable><declare-styleable name=\"View\"><attr format=\"dimension\" name=\"paddingStart\"/><attr format=\"dimension\" name=\"paddingEnd\"/><attr name=\"android:focusable\"/><attr format=\"reference\" name=\"theme\"/><attr name=\"android:theme\"/></declare-styleable><declare-styleable name=\"PopupWindowBackgroundState\"><attr format=\"boolean\" name=\"state_above_anchor\"/></declare-styleable><declare-styleable name=\"LinearLayoutCompat\"><attr name=\"android:orientation\"/><attr name=\"android:gravity\"/><attr name=\"android:baselineAligned\"/><attr name=\"android:baselineAlignedChildIndex\"/><attr name=\"android:weightSum\"/><attr format=\"boolean\" name=\"measureWithLargestChild\"/><attr name=\"divider\"/><attr name=\"showDividers\"><flag name=\"none\" value=\"0\"/><flag name=\"beginning\" value=\"1\"/><flag name=\"middle\" value=\"2\"/><flag name=\"end\" value=\"4\"/></attr><attr format=\"dimension\" name=\"dividerPadding\"/></declare-styleable><declare-styleable name=\"SearchView\"><attr format=\"reference\" name=\"layout\"/><attr format=\"boolean\" name=\"iconifiedByDefault\"/><attr name=\"android:maxWidth\"/><attr format=\"string\" name=\"queryHint\"/><attr format=\"string\" name=\"defaultQueryHint\"/><attr name=\"android:imeOptions\"/><attr name=\"android:inputType\"/><attr format=\"reference\" name=\"closeIcon\"/><attr format=\"reference\" name=\"goIcon\"/><attr format=\"reference\" name=\"searchIcon\"/><attr format=\"reference\" name=\"searchHintIcon\"/><attr format=\"reference\" name=\"voiceIcon\"/><attr format=\"reference\" name=\"commitIcon\"/><attr format=\"reference\" name=\"suggestionRowLayout\"/><attr format=\"reference\" name=\"queryBackground\"/><attr format=\"reference\" name=\"submitBackground\"/><attr name=\"android:focusable\"/></declare-styleable><declare-styleable name=\"ActionMode\"><attr name=\"titleTextStyle\"/><attr name=\"subtitleTextStyle\"/><attr name=\"background\"/><attr name=\"backgroundSplit\"/><attr name=\"height\"/><attr format=\"reference\" name=\"closeItemLayout\"/></declare-styleable><declare-styleable name=\"Theme\"><attr format=\"boolean\" name=\"windowActionBar\"/><attr format=\"boolean\" name=\"windowNoTitle\"/><attr format=\"boolean\" name=\"windowActionBarOverlay\"/><attr format=\"boolean\" name=\"windowActionModeOverlay\"/><attr format=\"dimension|fraction\" name=\"windowFixedWidthMajor\"/><attr format=\"dimension|fraction\" name=\"windowFixedHeightMinor\"/><attr format=\"dimension|fraction\" name=\"windowFixedWidthMinor\"/><attr format=\"dimension|fraction\" name=\"windowFixedHeightMajor\"/><attr format=\"dimension|fraction\" name=\"windowMinWidthMajor\"/><attr format=\"dimension|fraction\" name=\"windowMinWidthMinor\"/><attr name=\"android:windowIsFloating\"/><attr name=\"android:windowAnimationStyle\"/><attr format=\"reference\" name=\"actionBarTabStyle\"/><attr format=\"reference\" name=\"actionBarTabBarStyle\"/><attr format=\"reference\" name=\"actionBarTabTextStyle\"/><attr format=\"reference\" name=\"actionOverflowButtonStyle\"/><attr format=\"reference\" name=\"actionOverflowMenuStyle\"/><attr format=\"reference\" name=\"actionBarPopupTheme\"/><attr format=\"reference\" name=\"actionBarStyle\"/><attr format=\"reference\" name=\"actionBarSplitStyle\"/><attr format=\"reference\" name=\"actionBarTheme\"/><attr format=\"reference\" name=\"actionBarWidgetTheme\"/><attr format=\"dimension\" name=\"actionBarSize\"><enum name=\"wrap_content\" value=\"0\"/></attr><attr format=\"reference\" name=\"actionBarDivider\"/><attr format=\"reference\" name=\"actionBarItemBackground\"/><attr format=\"reference\" name=\"actionMenuTextAppearance\"/><attr format=\"color|reference\" name=\"actionMenuTextColor\"/><attr format=\"reference\" name=\"actionModeStyle\"/><attr format=\"reference\" name=\"actionModeCloseButtonStyle\"/><attr format=\"reference\" name=\"actionModeBackground\"/><attr format=\"reference\" name=\"actionModeSplitBackground\"/><attr format=\"reference\" name=\"actionModeCloseDrawable\"/><attr format=\"reference\" name=\"actionModeCutDrawable\"/><attr format=\"reference\" name=\"actionModeCopyDrawable\"/><attr format=\"reference\" name=\"actionModePasteDrawable\"/><attr format=\"reference\" name=\"actionModeSelectAllDrawable\"/><attr format=\"reference\" name=\"actionModeShareDrawable\"/><attr format=\"reference\" name=\"actionModeFindDrawable\"/><attr format=\"reference\" name=\"actionModeWebSearchDrawable\"/><attr format=\"reference\" name=\"actionModePopupWindowStyle\"/><attr format=\"reference\" name=\"textAppearanceLargePopupMenu\"/><attr format=\"reference\" name=\"textAppearanceSmallPopupMenu\"/><attr format=\"reference\" name=\"dialogTheme\"/><attr format=\"dimension\" name=\"dialogPreferredPadding\"/><attr format=\"reference\" name=\"listDividerAlertDialog\"/><attr format=\"reference\" name=\"actionDropDownStyle\"/><attr format=\"dimension\" name=\"dropdownListPreferredItemHeight\"/><attr format=\"reference\" name=\"spinnerDropDownItemStyle\"/><attr format=\"reference\" name=\"homeAsUpIndicator\"/><attr format=\"reference\" name=\"actionButtonStyle\"/><attr format=\"reference\" name=\"buttonBarStyle\"/><attr format=\"reference\" name=\"buttonBarButtonStyle\"/><attr format=\"reference\" name=\"selectableItemBackground\"/><attr format=\"reference\" name=\"selectableItemBackgroundBorderless\"/><attr format=\"reference\" name=\"borderlessButtonStyle\"/><attr format=\"reference\" name=\"dividerVertical\"/><attr format=\"reference\" name=\"dividerHorizontal\"/><attr format=\"reference\" name=\"activityChooserViewStyle\"/><attr format=\"reference\" name=\"toolbarStyle\"/><attr format=\"reference\" name=\"toolbarNavigationButtonStyle\"/><attr format=\"reference\" name=\"popupMenuStyle\"/><attr format=\"reference\" name=\"popupWindowStyle\"/><attr format=\"reference|color\" name=\"editTextColor\"/><attr format=\"reference\" name=\"editTextBackground\"/><attr format=\"reference\" name=\"textAppearanceSearchResultTitle\"/><attr format=\"reference\" name=\"textAppearanceSearchResultSubtitle\"/><attr format=\"reference|color\" name=\"textColorSearchUrl\"/><attr format=\"reference\" name=\"searchViewStyle\"/><attr format=\"dimension\" name=\"listPreferredItemHeight\"/><attr format=\"dimension\" name=\"listPreferredItemHeightSmall\"/><attr format=\"dimension\" name=\"listPreferredItemHeightLarge\"/><attr format=\"dimension\" name=\"listPreferredItemPaddingLeft\"/><attr format=\"dimension\" name=\"listPreferredItemPaddingRight\"/><attr format=\"reference\" name=\"dropDownListViewStyle\"/><attr format=\"reference\" name=\"listPopupWindowStyle\"/><attr format=\"reference\" name=\"textAppearanceListItem\"/><attr format=\"reference\" name=\"textAppearanceListItemSmall\"/><attr format=\"reference\" name=\"panelBackground\"/><attr format=\"dimension\" name=\"panelMenuListWidth\"/><attr format=\"reference\" name=\"panelMenuListTheme\"/><attr format=\"reference\" name=\"listChoiceBackgroundIndicator\"/><attr format=\"color\" name=\"colorPrimary\"/><attr format=\"color\" name=\"colorPrimaryDark\"/><attr format=\"color\" name=\"colorAccent\"/><attr format=\"color\" name=\"colorControlNormal\"/><attr format=\"color\" name=\"colorControlActivated\"/><attr format=\"color\" name=\"colorControlHighlight\"/><attr format=\"color\" name=\"colorButtonNormal\"/><attr format=\"color\" name=\"colorSwitchThumbNormal\"/><attr format=\"reference\" name=\"controlBackground\"/><attr format=\"reference\" name=\"alertDialogStyle\"/><attr format=\"reference\" name=\"alertDialogButtonGroupStyle\"/><attr format=\"boolean\" name=\"alertDialogCenterButtons\"/><attr format=\"reference\" name=\"alertDialogTheme\"/><attr format=\"reference|color\" name=\"textColorAlertDialogListItem\"/><attr format=\"reference\" name=\"buttonBarPositiveButtonStyle\"/><attr format=\"reference\" name=\"buttonBarNegativeButtonStyle\"/><attr format=\"reference\" name=\"buttonBarNeutralButtonStyle\"/><attr format=\"reference\" name=\"autoCompleteTextViewStyle\"/><attr format=\"reference\" name=\"buttonStyle\"/><attr format=\"reference\" name=\"buttonStyleSmall\"/><attr format=\"reference\" name=\"checkboxStyle\"/><attr format=\"reference\" name=\"checkedTextViewStyle\"/><attr format=\"reference\" name=\"editTextStyle\"/><attr format=\"reference\" name=\"radioButtonStyle\"/><attr format=\"reference\" name=\"ratingBarStyle\"/><attr format=\"reference\" name=\"spinnerStyle\"/><attr format=\"reference\" name=\"switchStyle\"/></declare-styleable><declare-styleable name=\"RecyclerView\"><attr format=\"string\" name=\"layoutManager\"/><attr name=\"android:orientation\"/><attr format=\"integer\" name=\"spanCount\"/><attr format=\"boolean\" name=\"reverseLayout\"/><attr format=\"boolean\" name=\"stackFromEnd\"/></declare-styleable><declare-styleable name=\"GenericDraweeView\"><attr format=\"integer\" name=\"fadeDuration\"/><attr format=\"float\" name=\"viewAspectRatio\"/><attr format=\"reference\" name=\"placeholderImage\"/><attr name=\"placeholderImageScaleType\"><enum name=\"none\" value=\"-1\"/><enum name=\"fitXY\" value=\"0\"/><enum name=\"fitStart\" value=\"1\"/><enum name=\"fitCenter\" value=\"2\"/><enum name=\"fitEnd\" value=\"3\"/><enum name=\"center\" value=\"4\"/><enum name=\"centerInside\" value=\"5\"/><enum name=\"centerCrop\" value=\"6\"/><enum name=\"focusCrop\" value=\"7\"/></attr><attr format=\"reference\" name=\"retryImage\"/><attr name=\"retryImageScaleType\"><enum name=\"none\" value=\"-1\"/><enum name=\"fitXY\" value=\"0\"/><enum name=\"fitStart\" value=\"1\"/><enum name=\"fitCenter\" value=\"2\"/><enum name=\"fitEnd\" value=\"3\"/><enum name=\"center\" value=\"4\"/><enum name=\"centerInside\" value=\"5\"/><enum name=\"centerCrop\" value=\"6\"/><enum name=\"focusCrop\" value=\"7\"/></attr><attr format=\"reference\" name=\"failureImage\"/><attr name=\"failureImageScaleType\"><enum name=\"none\" value=\"-1\"/><enum name=\"fitXY\" value=\"0\"/><enum name=\"fitStart\" value=\"1\"/><enum name=\"fitCenter\" value=\"2\"/><enum name=\"fitEnd\" value=\"3\"/><enum name=\"center\" value=\"4\"/><enum name=\"centerInside\" value=\"5\"/><enum name=\"centerCrop\" value=\"6\"/><enum name=\"focusCrop\" value=\"7\"/></attr><attr format=\"reference\" name=\"progressBarImage\"/><attr name=\"progressBarImageScaleType\"><enum name=\"none\" value=\"-1\"/><enum name=\"fitXY\" value=\"0\"/><enum name=\"fitStart\" value=\"1\"/><enum name=\"fitCenter\" value=\"2\"/><enum name=\"fitEnd\" value=\"3\"/><enum name=\"center\" value=\"4\"/><enum name=\"centerInside\" value=\"5\"/><enum name=\"centerCrop\" value=\"6\"/><enum name=\"focusCrop\" value=\"7\"/></attr><attr format=\"integer\" name=\"progressBarAutoRotateInterval\"/><attr name=\"actualImageScaleType\"><enum name=\"none\" value=\"-1\"/><enum name=\"fitXY\" value=\"0\"/><enum name=\"fitStart\" value=\"1\"/><enum name=\"fitCenter\" value=\"2\"/><enum name=\"fitEnd\" value=\"3\"/><enum name=\"center\" value=\"4\"/><enum name=\"centerInside\" value=\"5\"/><enum name=\"centerCrop\" value=\"6\"/><enum name=\"focusCrop\" value=\"7\"/></attr><attr format=\"reference\" name=\"backgroundImage\"/><attr format=\"reference\" name=\"overlayImage\"/><attr format=\"reference\" name=\"pressedStateOverlayImage\"/><attr format=\"boolean\" name=\"roundAsCircle\"/><attr format=\"dimension\" name=\"roundedCornerRadius\"/><attr format=\"boolean\" name=\"roundTopLeft\"/><attr format=\"boolean\" name=\"roundTopRight\"/><attr format=\"boolean\" name=\"roundBottomRight\"/><attr format=\"boolean\" name=\"roundBottomLeft\"/><attr format=\"color\" name=\"roundWithOverlayColor\"/><attr format=\"dimension\" name=\"roundingBorderWidth\"/><attr format=\"color\" name=\"roundingBorderColor\"/></declare-styleable><declare-styleable name=\"ActionMenuView\"/><declare-styleable name=\"CompoundButton\"><attr name=\"android:button\"/><attr format=\"color\" name=\"buttonTint\"/><attr name=\"buttonTintMode\"><enum name=\"src_over\" value=\"3\"/><enum name=\"src_in\" value=\"5\"/><enum name=\"src_atop\" value=\"9\"/><enum name=\"multiply\" value=\"14\"/><enum name=\"screen\" value=\"15\"/></attr></declare-styleable><declare-styleable name=\"SwitchCompat\"><attr name=\"android:thumb\"/><attr format=\"reference\" name=\"track\"/><attr name=\"android:textOn\"/><attr name=\"android:textOff\"/><attr format=\"dimension\" name=\"thumbTextPadding\"/><attr format=\"reference\" name=\"switchTextAppearance\"/><attr format=\"dimension\" name=\"switchMinWidth\"/><attr format=\"dimension\" name=\"switchPadding\"/><attr format=\"boolean\" name=\"splitTrack\"/><attr format=\"boolean\" name=\"showText\"/></declare-styleable></configuration></mergedItems></merger>"
  },
  {
    "path": "android/app/build/intermediates/manifest/androidTest/debug/AndroidManifest.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    package=\"com.goreact.test\">\n\n    <uses-sdk android:minSdkVersion=\"16\" android:targetSdkVersion=\"22\" />\n\n    <application>\n        <uses-library android:name=\"android.test.runner\" />\n    </application>\n\n    <instrumentation android:name=\"android.test.InstrumentationTestRunner\"\n                     android:targetPackage=\"com.goreact\"\n                     android:handleProfiling=\"false\"\n                     android:functionalTest=\"false\"\n                     android:label=\"Tests for com.goreact\"/>\n</manifest>\n"
  },
  {
    "path": "android/app/build/intermediates/manifests/full/debug/AndroidManifest.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    package=\"com.goreact\"\n    android:versionCode=\"1\"\n    android:versionName=\"1.0\" >\n\n    <uses-sdk\n        android:minSdkVersion=\"16\"\n        android:targetSdkVersion=\"22\" />\n\n    <uses-permission android:name=\"android.permission.INTERNET\" />\n    <uses-permission android:name=\"android.permission.SYSTEM_ALERT_WINDOW\" />\n\n    <android:uses-permission android:name=\"android.permission.WRITE_EXTERNAL_STORAGE\" />\n    <android:uses-permission android:name=\"android.permission.READ_PHONE_STATE\" />\n    <android:uses-permission android:name=\"android.permission.READ_EXTERNAL_STORAGE\" />\n\n    <application\n        android:allowBackup=\"true\"\n        android:icon=\"@mipmap/ic_launcher\"\n        android:label=\"@string/app_name\"\n        android:theme=\"@style/AppTheme\" >\n        <activity\n            android:name=\"com.goreact.MainActivity\"\n            android:configChanges=\"keyboard|keyboardHidden|orientation|screenSize\"\n            android:label=\"@string/app_name\" >\n            <intent-filter>\n                <action android:name=\"android.intent.action.MAIN\" />\n\n                <category android:name=\"android.intent.category.LAUNCHER\" />\n            </intent-filter>\n        </activity>\n        <activity android:name=\"com.facebook.react.devsupport.DevSettingsActivity\" />\n    </application>\n\n</manifest>"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/anim/abc_fade_in.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2013 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<alpha xmlns:android=\"http://schemas.android.com/apk/res/android\"\n       android:interpolator=\"@android:anim/decelerate_interpolator\"\n       android:fromAlpha=\"0.0\" android:toAlpha=\"1.0\"\n       android:duration=\"@android:integer/config_mediumAnimTime\" /><!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/anim/abc_fade_in.xml --><!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/anim/abc_fade_in.xml -->"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/anim/abc_fade_out.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2013 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<alpha xmlns:android=\"http://schemas.android.com/apk/res/android\"\n       android:interpolator=\"@android:anim/decelerate_interpolator\"\n       android:fromAlpha=\"1.0\" android:toAlpha=\"0.0\"\n       android:duration=\"@android:integer/config_mediumAnimTime\" /><!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/anim/abc_fade_out.xml --><!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/anim/abc_fade_out.xml -->"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/anim/abc_grow_fade_in_from_bottom.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!--\n/* //device/apps/common/res/anim/fade_in.xml\n**\n** Copyright 2014, The Android Open Source Project\n**\n** Licensed under the Apache License, Version 2.0 (the \"License\"); \n** you may not use this file except in compliance with the License. \n** You may obtain a copy of the License at \n**\n**     http://www.apache.org/licenses/LICENSE-2.0 \n**\n** Unless required by applicable law or agreed to in writing, software \n** distributed under the License is distributed on an \"AS IS\" BASIS, \n** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. \n** See the License for the specific language governing permissions and \n** limitations under the License.\n*/\n-->\n\n<set xmlns:android=\"http://schemas.android.com/apk/res/android\" android:shareInterpolator=\"false\">\n    <scale \tandroid:interpolator=\"@android:anim/decelerate_interpolator\"\n              android:fromXScale=\"0.9\" android:toXScale=\"1.0\"\n              android:fromYScale=\"0.9\" android:toYScale=\"1.0\"\n              android:pivotX=\"50%\" android:pivotY=\"100%\"\n              android:duration=\"@integer/abc_config_activityDefaultDur\" />\n    <alpha \tandroid:interpolator=\"@android:anim/decelerate_interpolator\"\n              android:fromAlpha=\"0.0\" android:toAlpha=\"1.0\"\n              android:duration=\"@integer/abc_config_activityShortDur\" />\n</set><!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/anim/abc_grow_fade_in_from_bottom.xml --><!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/anim/abc_grow_fade_in_from_bottom.xml -->"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/anim/abc_popup_enter.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2014 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n<set xmlns:android=\"http://schemas.android.com/apk/res/android\"\n     android:shareInterpolator=\"false\" >\n    <alpha android:fromAlpha=\"0.0\" android:toAlpha=\"1.0\"\n           android:interpolator=\"@android:anim/decelerate_interpolator\"\n           android:duration=\"@integer/abc_config_activityShortDur\" />\n</set><!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/anim/abc_popup_enter.xml --><!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/anim/abc_popup_enter.xml -->"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/anim/abc_popup_exit.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2013 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n<set xmlns:android=\"http://schemas.android.com/apk/res/android\"\n     android:shareInterpolator=\"false\" >\n    <alpha android:fromAlpha=\"1.0\" android:toAlpha=\"0.0\"\n           android:interpolator=\"@android:anim/decelerate_interpolator\"\n           android:duration=\"@integer/abc_config_activityShortDur\" />\n</set><!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/anim/abc_popup_exit.xml --><!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/anim/abc_popup_exit.xml -->"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/anim/abc_shrink_fade_out_from_bottom.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!--\n  ~ Copyright (C) 2014 The Android Open Source Project\n  ~\n  ~ Licensed under the Apache License, Version 2.0 (the \"License\");\n  ~ you may not use this file except in compliance with the License.\n  ~ You may obtain a copy of the License at\n  ~\n  ~      http://www.apache.org/licenses/LICENSE-2.0\n  ~\n  ~ Unless required by applicable law or agreed to in writing, software\n  ~ distributed under the License is distributed on an \"AS IS\" BASIS,\n  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n  ~ See the License for the specific language governing permissions and\n  ~ limitations under the License.\n  -->\n\n<set xmlns:android=\"http://schemas.android.com/apk/res/android\" android:shareInterpolator=\"false\">\n    <scale \tandroid:interpolator=\"@android:anim/decelerate_interpolator\"\n              android:fromXScale=\"1.0\" android:toXScale=\"0.9\"\n              android:fromYScale=\"1.0\" android:toYScale=\"0.9\"\n              android:pivotX=\"50%\" android:pivotY=\"100%\"\n              android:duration=\"@integer/abc_config_activityDefaultDur\" />\n    <alpha \tandroid:interpolator=\"@android:anim/decelerate_interpolator\"\n              android:fromAlpha=\"1.0\" android:toAlpha=\"0.0\"\n              android:duration=\"@integer/abc_config_activityShortDur\" />\n</set><!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/anim/abc_shrink_fade_out_from_bottom.xml --><!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/anim/abc_shrink_fade_out_from_bottom.xml -->"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/anim/abc_slide_in_bottom.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2013 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n<translate xmlns:android=\"http://schemas.android.com/apk/res/android\"\n           android:interpolator=\"@android:anim/decelerate_interpolator\"\n           android:fromYDelta=\"50%p\" android:toYDelta=\"0\"\n           android:duration=\"@android:integer/config_mediumAnimTime\"/>\n<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/anim/abc_slide_in_bottom.xml --><!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/anim/abc_slide_in_bottom.xml -->"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/anim/abc_slide_in_top.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2013 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n<translate xmlns:android=\"http://schemas.android.com/apk/res/android\"\n           android:interpolator=\"@android:anim/decelerate_interpolator\"\n           android:fromYDelta=\"-50%p\" android:toYDelta=\"0\"\n           android:duration=\"@android:integer/config_mediumAnimTime\"/><!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/anim/abc_slide_in_top.xml --><!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/anim/abc_slide_in_top.xml -->"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/anim/abc_slide_out_bottom.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2013 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n<translate xmlns:android=\"http://schemas.android.com/apk/res/android\"\n           android:interpolator=\"@android:anim/accelerate_interpolator\"\n           android:fromYDelta=\"0\" android:toYDelta=\"50%p\"\n           android:duration=\"@android:integer/config_mediumAnimTime\"/><!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/anim/abc_slide_out_bottom.xml --><!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/anim/abc_slide_out_bottom.xml -->"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/anim/abc_slide_out_top.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2013 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n<translate xmlns:android=\"http://schemas.android.com/apk/res/android\"\n           android:interpolator=\"@android:anim/accelerate_interpolator\"\n           android:fromYDelta=\"0\" android:toYDelta=\"-50%p\"\n           android:duration=\"@android:integer/config_mediumAnimTime\"/><!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/anim/abc_slide_out_top.xml --><!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/anim/abc_slide_out_top.xml -->"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/anim/catalyst_push_up_in.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<set xmlns:android=\"http://schemas.android.com/apk/res/android\">\n     <translate\n          android:fromYDelta=\"100%p\"\n          android:toYDelta=\"0\"\n          android:duration=\"@android:integer/config_shortAnimTime\"\n          />\n     <alpha\n          android:fromAlpha=\"0.0\"\n          android:toAlpha=\"1.0\"\n          android:duration=\"@android:integer/config_shortAnimTime\"\n          />\n</set>\n<!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/anim/catalyst_push_up_in.xml -->"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/anim/catalyst_push_up_out.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<set xmlns:android=\"http://schemas.android.com/apk/res/android\">\n     <translate\n          android:fromYDelta=\"0\"\n          android:toYDelta=\"-100%p\"\n          android:duration=\"@android:integer/config_shortAnimTime\"\n          />\n     <alpha\n          android:fromAlpha=\"1.0\"\n          android:toAlpha=\"0.0\"\n          android:duration=\"@android:integer/config_shortAnimTime\"\n          />\n</set>\n<!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/anim/catalyst_push_up_out.xml -->"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/anim/slide_down.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<translate xmlns:android=\"http://schemas.android.com/apk/res/android\"\n           android:duration=\"@android:integer/config_shortAnimTime\"\n           android:fromYDelta=\"0%p\"\n           android:toYDelta=\"100%p\"\n    />\n<!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/anim/slide_down.xml -->"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/anim/slide_up.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<translate xmlns:android=\"http://schemas.android.com/apk/res/android\"\n           android:duration=\"@android:integer/config_shortAnimTime\"\n           android:fromYDelta=\"100%p\"\n           android:toYDelta=\"0%p\"\n    />\n<!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/anim/slide_up.xml -->"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/color/abc_background_cache_hint_selector_material_dark.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2014 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<selector xmlns:android=\"http://schemas.android.com/apk/res/android\">\n    <item android:color=\"@color/background_material_dark\" />\n</selector>\n<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/color/abc_background_cache_hint_selector_material_dark.xml --><!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color/abc_background_cache_hint_selector_material_dark.xml -->"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/color/abc_background_cache_hint_selector_material_light.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2014 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<selector xmlns:android=\"http://schemas.android.com/apk/res/android\">\n    <item android:color=\"@color/background_material_light\" />\n</selector>\n<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/color/abc_background_cache_hint_selector_material_light.xml --><!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color/abc_background_cache_hint_selector_material_light.xml -->"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/color/abc_primary_text_disable_only_material_dark.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2014 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<selector xmlns:android=\"http://schemas.android.com/apk/res/android\">\n    <item android:state_enabled=\"false\" android:color=\"@color/bright_foreground_disabled_material_dark\"/>\n    <item android:color=\"@color/bright_foreground_material_dark\"/>\n</selector>\n<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/color/abc_primary_text_disable_only_material_dark.xml --><!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color/abc_primary_text_disable_only_material_dark.xml -->"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/color/abc_primary_text_disable_only_material_light.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2014 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<selector xmlns:android=\"http://schemas.android.com/apk/res/android\">\n    <item android:state_enabled=\"false\" android:color=\"@color/bright_foreground_disabled_material_light\"/>\n    <item android:color=\"@color/bright_foreground_material_light\"/>\n</selector>\n<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/color/abc_primary_text_disable_only_material_light.xml --><!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color/abc_primary_text_disable_only_material_light.xml -->"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/color/abc_primary_text_material_dark.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2008 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n  \n          http://www.apache.org/licenses/LICENSE-2.0\n  \n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<selector xmlns:android=\"http://schemas.android.com/apk/res/android\">\n    <item android:state_enabled=\"false\" android:color=\"@color/primary_text_disabled_material_dark\"/>\n    <item android:color=\"@color/primary_text_default_material_dark\"/>\n</selector>\n<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/color/abc_primary_text_material_dark.xml --><!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color/abc_primary_text_material_dark.xml -->"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/color/abc_primary_text_material_light.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2014 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n  \n          http://www.apache.org/licenses/LICENSE-2.0\n  \n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<selector xmlns:android=\"http://schemas.android.com/apk/res/android\">\n    <item android:state_enabled=\"false\" android:color=\"@color/primary_text_disabled_material_light\"/>\n    <item android:color=\"@color/primary_text_default_material_light\"/>\n</selector>\n<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/color/abc_primary_text_material_light.xml --><!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color/abc_primary_text_material_light.xml -->"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/color/abc_search_url_text.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2014 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n  \n          http://www.apache.org/licenses/LICENSE-2.0\n  \n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<selector xmlns:android=\"http://schemas.android.com/apk/res/android\">\n    <item android:state_pressed=\"true\" android:color=\"@color/abc_search_url_text_pressed\"/>\n    <item android:state_selected=\"true\" android:color=\"@color/abc_search_url_text_selected\"/>\n    <item android:color=\"@color/abc_search_url_text_normal\"/>\n</selector><!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/color/abc_search_url_text.xml --><!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color/abc_search_url_text.xml -->"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/color/abc_secondary_text_material_dark.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2014 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n  \n          http://www.apache.org/licenses/LICENSE-2.0\n  \n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<selector xmlns:android=\"http://schemas.android.com/apk/res/android\">\n    <item android:state_enabled=\"false\" android:color=\"@color/secondary_text_disabled_material_dark\"/>\n    <item android:color=\"@color/secondary_text_default_material_dark\"/>\n</selector>\n<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/color/abc_secondary_text_material_dark.xml --><!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color/abc_secondary_text_material_dark.xml -->"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/color/abc_secondary_text_material_light.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2014 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n  \n          http://www.apache.org/licenses/LICENSE-2.0\n  \n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<selector xmlns:android=\"http://schemas.android.com/apk/res/android\">\n    <item android:state_enabled=\"false\" android:color=\"@color/secondary_text_disabled_material_light\"/>\n    <item android:color=\"@color/secondary_text_default_material_light\"/>\n</selector>\n<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/color/abc_secondary_text_material_light.xml --><!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color/abc_secondary_text_material_light.xml -->"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/color/switch_thumb_material_dark.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2014 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<selector xmlns:android=\"http://schemas.android.com/apk/res/android\">\n    <item android:state_enabled=\"false\" android:color=\"@color/switch_thumb_disabled_material_dark\"/>\n    <item android:color=\"@color/switch_thumb_normal_material_dark\"/>\n</selector><!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/color/switch_thumb_material_dark.xml --><!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color/switch_thumb_material_dark.xml -->"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/color/switch_thumb_material_light.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2014 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<selector xmlns:android=\"http://schemas.android.com/apk/res/android\">\n    <item android:state_enabled=\"false\" android:color=\"@color/switch_thumb_disabled_material_light\"/>\n    <item android:color=\"@color/switch_thumb_normal_material_light\"/>\n</selector><!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/color/switch_thumb_material_light.xml --><!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color/switch_thumb_material_light.xml -->"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/color-v11/abc_background_cache_hint_selector_material_dark.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2014 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<selector xmlns:android=\"http://schemas.android.com/apk/res/android\">\n    <item android:state_accelerated=\"false\" android:color=\"@color/background_material_dark\" />\n    <item android:color=\"@android:color/transparent\" />\n</selector>\n<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/color-v11/abc_background_cache_hint_selector_material_dark.xml --><!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color-v11/abc_background_cache_hint_selector_material_dark.xml -->"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/color-v11/abc_background_cache_hint_selector_material_light.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2014 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<selector xmlns:android=\"http://schemas.android.com/apk/res/android\">\n    <item android:state_accelerated=\"false\" android:color=\"@color/background_material_light\" />\n    <item android:color=\"@android:color/transparent\" />\n</selector>\n<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/color-v11/abc_background_cache_hint_selector_material_light.xml --><!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color-v11/abc_background_cache_hint_selector_material_light.xml -->"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/color-v23/abc_color_highlight_material.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2015 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<selector xmlns:android=\"http://schemas.android.com/apk/res/android\">\n    <item android:state_checked=\"true\"\n          android:state_enabled=\"true\"\n          android:alpha=\"@dimen/highlight_alpha_material_colored\"\n          android:color=\"?android:attr/colorControlActivated\" />\n    <item android:color=\"?android:attr/colorControlHighlight\" />\n</selector><!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/color-v23/abc_color_highlight_material.xml --><!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/color-v23/abc_color_highlight_material.xml -->"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/drawable/abc_btn_borderless_material.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2014 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<selector xmlns:android=\"http://schemas.android.com/apk/res/android\">\n    <item android:state_focused=\"true\" android:drawable=\"@drawable/abc_btn_default_mtrl_shape\"/>\n    <item android:state_pressed=\"true\" android:drawable=\"@drawable/abc_btn_default_mtrl_shape\"/>\n    <item android:drawable=\"@android:color/transparent\"/>\n</selector>\n\n<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/drawable/abc_btn_borderless_material.xml --><!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_btn_borderless_material.xml -->"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/drawable/abc_btn_check_material.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2014 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<selector xmlns:android=\"http://schemas.android.com/apk/res/android\">\n    <item android:state_checked=\"true\" android:drawable=\"@drawable/abc_btn_check_to_on_mtrl_015\" />\n    <item android:drawable=\"@drawable/abc_btn_check_to_on_mtrl_000\" />\n</selector><!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/drawable/abc_btn_check_material.xml --><!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_btn_check_material.xml -->"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/drawable/abc_btn_colored_material.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2014 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<!-- Used as the canonical button shape. -->\n\n<layer-list xmlns:android=\"http://schemas.android.com/apk/res/android\">\n    <item android:drawable=\"@drawable/abc_btn_default_mtrl_shape\" />\n</layer-list>\n<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/drawable/abc_btn_colored_material.xml --><!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_btn_colored_material.xml -->"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/drawable/abc_btn_default_mtrl_shape.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2014 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<!-- Used as the canonical button shape. -->\n\n<inset xmlns:android=\"http://schemas.android.com/apk/res/android\"\n       android:insetLeft=\"@dimen/abc_button_inset_horizontal_material\"\n       android:insetTop=\"@dimen/abc_button_inset_vertical_material\"\n       android:insetRight=\"@dimen/abc_button_inset_horizontal_material\"\n       android:insetBottom=\"@dimen/abc_button_inset_vertical_material\">\n    <shape android:shape=\"rectangle\">\n        <corners android:radius=\"@dimen/abc_control_corner_material\" />\n        <solid android:color=\"@android:color/white\" />\n        <padding android:left=\"@dimen/abc_button_padding_horizontal_material\"\n                 android:top=\"@dimen/abc_button_padding_vertical_material\"\n                 android:right=\"@dimen/abc_button_padding_horizontal_material\"\n                 android:bottom=\"@dimen/abc_button_padding_vertical_material\" />\n    </shape>\n</inset>\n<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/drawable/abc_btn_default_mtrl_shape.xml --><!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_btn_default_mtrl_shape.xml -->"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/drawable/abc_btn_radio_material.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2014 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<selector xmlns:android=\"http://schemas.android.com/apk/res/android\">\n    <item android:state_checked=\"true\" android:drawable=\"@drawable/abc_btn_radio_to_on_mtrl_015\" />\n    <item android:drawable=\"@drawable/abc_btn_radio_to_on_mtrl_000\" />\n</selector><!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/drawable/abc_btn_radio_material.xml --><!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_btn_radio_material.xml -->"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/drawable/abc_cab_background_internal_bg.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2014 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<!--\n    A solid rectangle so that we can use a PorterDuff multiply color filter to tint this\n-->\n<shape xmlns:android=\"http://schemas.android.com/apk/res/android\"\n       android:shape=\"rectangle\">\n    <solid android:color=\"@android:color/white\" />\n</shape><!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/drawable/abc_cab_background_internal_bg.xml --><!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_cab_background_internal_bg.xml -->"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/drawable/abc_cab_background_top_material.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2014 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<!-- This is a dummy drawable so that we can refer to the drawable ID -->\n<shape xmlns:android=\"http://schemas.android.com/apk/res/android\">\n    <solid android:color=\"@android:color/white\"/>\n</shape>\n<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/drawable/abc_cab_background_top_material.xml --><!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_cab_background_top_material.xml -->"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/drawable/abc_dialog_material_background_dark.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2014 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<inset xmlns:android=\"http://schemas.android.com/apk/res/android\"\n       android:insetLeft=\"16dp\"\n       android:insetTop=\"16dp\"\n       android:insetRight=\"16dp\"\n       android:insetBottom=\"16dp\">\n    <shape android:shape=\"rectangle\">\n        <corners android:radius=\"2dp\" />\n        <solid android:color=\"@color/background_floating_material_dark\" />\n    </shape>\n</inset><!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/drawable/abc_dialog_material_background_dark.xml --><!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_dialog_material_background_dark.xml -->"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/drawable/abc_dialog_material_background_light.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2014 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<inset xmlns:android=\"http://schemas.android.com/apk/res/android\"\n       android:insetLeft=\"16dp\"\n       android:insetTop=\"16dp\"\n       android:insetRight=\"16dp\"\n       android:insetBottom=\"16dp\">\n    <shape android:shape=\"rectangle\">\n        <corners android:radius=\"2dp\" />\n        <solid android:color=\"@color/background_floating_material_light\" />\n    </shape>\n</inset><!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/drawable/abc_dialog_material_background_light.xml --><!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_dialog_material_background_light.xml -->"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/drawable/abc_edit_text_material.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2014 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<inset xmlns:android=\"http://schemas.android.com/apk/res/android\"\n       android:insetLeft=\"@dimen/abc_edit_text_inset_horizontal_material\"\n       android:insetRight=\"@dimen/abc_edit_text_inset_horizontal_material\"\n       android:insetTop=\"@dimen/abc_edit_text_inset_top_material\"\n       android:insetBottom=\"@dimen/abc_edit_text_inset_bottom_material\">\n\n    <selector>\n        <item android:state_enabled=\"false\" android:drawable=\"@drawable/abc_textfield_default_mtrl_alpha\"/>\n        <item android:state_pressed=\"false\" android:state_focused=\"false\" android:drawable=\"@drawable/abc_textfield_default_mtrl_alpha\"/>\n        <item android:drawable=\"@drawable/abc_textfield_activated_mtrl_alpha\"/>\n    </selector>\n\n</inset>\n<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/drawable/abc_edit_text_material.xml --><!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_edit_text_material.xml -->"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/drawable/abc_item_background_holo_dark.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2010 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<selector xmlns:android=\"http://schemas.android.com/apk/res/android\">\n\n    <!-- Even though these two point to the same resource, have two states so the drawable will invalidate itself when coming out of pressed state. -->\n    <item android:state_focused=\"true\"  android:state_enabled=\"false\" android:state_pressed=\"true\" android:drawable=\"@drawable/abc_list_selector_disabled_holo_dark\" />\n    <item android:state_focused=\"true\"  android:state_enabled=\"false\"                              android:drawable=\"@drawable/abc_list_selector_disabled_holo_dark\" />\n    <item android:state_focused=\"true\"                                android:state_pressed=\"true\" android:drawable=\"@drawable/abc_list_selector_background_transition_holo_dark\" />\n    <item android:state_focused=\"false\"                               android:state_pressed=\"true\" android:drawable=\"@drawable/abc_list_selector_background_transition_holo_dark\" />\n    <item android:state_focused=\"true\"                                                             android:drawable=\"@drawable/abc_list_focused_holo\" />\n    <item                                                                                          android:drawable=\"@android:color/transparent\" />\n</selector>\n<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/drawable/abc_item_background_holo_dark.xml --><!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_item_background_holo_dark.xml -->"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/drawable/abc_item_background_holo_light.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2010 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<selector xmlns:android=\"http://schemas.android.com/apk/res/android\">\n\n    <!-- Even though these two point to the same resource, have two states so the drawable will invalidate itself when coming out of pressed state. -->\n    <item android:state_focused=\"true\"  android:state_enabled=\"false\" android:state_pressed=\"true\" android:drawable=\"@drawable/abc_list_selector_disabled_holo_light\" />\n    <item android:state_focused=\"true\"  android:state_enabled=\"false\"                              android:drawable=\"@drawable/abc_list_selector_disabled_holo_light\" />\n    <item android:state_focused=\"true\"                                android:state_pressed=\"true\" android:drawable=\"@drawable/abc_list_selector_background_transition_holo_light\" />\n    <item android:state_focused=\"false\"                               android:state_pressed=\"true\" android:drawable=\"@drawable/abc_list_selector_background_transition_holo_light\" />\n    <item android:state_focused=\"true\"                                                             android:drawable=\"@drawable/abc_list_focused_holo\" />\n    <item                                                                                          android:drawable=\"@android:color/transparent\" />\n</selector>\n<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/drawable/abc_item_background_holo_light.xml --><!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_item_background_holo_light.xml -->"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/drawable/abc_list_selector_background_transition_holo_dark.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2010 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<transition xmlns:android=\"http://schemas.android.com/apk/res/android\">\n    <item android:drawable=\"@drawable/abc_list_pressed_holo_dark\"  />\n    <item android:drawable=\"@drawable/abc_list_longpressed_holo\"  />\n</transition>\n<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/drawable/abc_list_selector_background_transition_holo_dark.xml --><!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_list_selector_background_transition_holo_dark.xml -->"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/drawable/abc_list_selector_background_transition_holo_light.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2010 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<transition xmlns:android=\"http://schemas.android.com/apk/res/android\">\n    <item android:drawable=\"@drawable/abc_list_pressed_holo_light\"  />\n    <item android:drawable=\"@drawable/abc_list_longpressed_holo\"  />\n</transition>\n<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/drawable/abc_list_selector_background_transition_holo_light.xml --><!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_list_selector_background_transition_holo_light.xml -->"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/drawable/abc_list_selector_holo_dark.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2010 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<selector xmlns:android=\"http://schemas.android.com/apk/res/android\">\n\n    <item android:state_window_focused=\"false\" android:drawable=\"@android:color/transparent\" />\n\n    <!-- Even though these two point to the same resource, have two states so the drawable will invalidate itself when coming out of pressed state. -->\n    <item android:state_focused=\"true\"  android:state_enabled=\"false\" android:state_pressed=\"true\" android:drawable=\"@drawable/abc_list_selector_disabled_holo_dark\" />\n    <item android:state_focused=\"true\"  android:state_enabled=\"false\"                              android:drawable=\"@drawable/abc_list_selector_disabled_holo_dark\" />\n    <item android:state_focused=\"true\"                                android:state_pressed=\"true\" android:drawable=\"@drawable/abc_list_selector_background_transition_holo_dark\" />\n    <item android:state_focused=\"false\"                               android:state_pressed=\"true\" android:drawable=\"@drawable/abc_list_selector_background_transition_holo_dark\" />\n    <item android:state_focused=\"true\"                                                             android:drawable=\"@drawable/abc_list_focused_holo\" />\n</selector>\n<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/drawable/abc_list_selector_holo_dark.xml --><!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_list_selector_holo_dark.xml -->"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/drawable/abc_list_selector_holo_light.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2010 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<selector xmlns:android=\"http://schemas.android.com/apk/res/android\">\n\n    <item android:state_window_focused=\"false\" android:drawable=\"@android:color/transparent\" />\n\n    <!-- Even though these two point to the same resource, have two states so the drawable will invalidate itself when coming out of pressed state. -->\n    <item android:state_focused=\"true\"  android:state_enabled=\"false\" android:state_pressed=\"true\" android:drawable=\"@drawable/abc_list_selector_disabled_holo_light\" />\n    <item android:state_focused=\"true\"  android:state_enabled=\"false\"                              android:drawable=\"@drawable/abc_list_selector_disabled_holo_light\" />\n    <item android:state_focused=\"true\"                                android:state_pressed=\"true\" android:drawable=\"@drawable/abc_list_selector_background_transition_holo_light\" />\n    <item android:state_focused=\"false\"                               android:state_pressed=\"true\" android:drawable=\"@drawable/abc_list_selector_background_transition_holo_light\" />\n    <item android:state_focused=\"true\"                                                             android:drawable=\"@drawable/abc_list_focused_holo\" />\n\n</selector>\n<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/drawable/abc_list_selector_holo_light.xml --><!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_list_selector_holo_light.xml -->"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/drawable/abc_ratingbar_full_material.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2014 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<layer-list xmlns:android=\"http://schemas.android.com/apk/res/android\">\n    <item android:id=\"@android:id/background\"\n        android:drawable=\"@drawable/abc_btn_rating_star_off_mtrl_alpha\" />\n    <item android:id=\"@android:id/secondaryProgress\"\n        android:drawable=\"@drawable/abc_btn_rating_star_off_mtrl_alpha\" />\n    <item android:id=\"@android:id/progress\"\n        android:drawable=\"@drawable/abc_btn_rating_star_on_mtrl_alpha\" />\n</layer-list>\n<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/drawable/abc_ratingbar_full_material.xml --><!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_ratingbar_full_material.xml -->"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/drawable/abc_spinner_textfield_background_material.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2014 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<inset xmlns:android=\"http://schemas.android.com/apk/res/android\"\n       android:insetLeft=\"@dimen/abc_control_inset_material\"\n       android:insetTop=\"@dimen/abc_control_inset_material\"\n       android:insetBottom=\"@dimen/abc_control_inset_material\"\n       android:insetRight=\"@dimen/abc_control_inset_material\">\n    <selector>\n        <item android:state_checked=\"false\" android:state_pressed=\"false\">\n            <layer-list>\n                <item android:drawable=\"@drawable/abc_textfield_default_mtrl_alpha\" />\n                <item android:drawable=\"@drawable/abc_spinner_mtrl_am_alpha\" />\n            </layer-list>\n        </item>\n        <item>\n            <layer-list>\n                <item android:drawable=\"@drawable/abc_textfield_activated_mtrl_alpha\" />\n                <item android:drawable=\"@drawable/abc_spinner_mtrl_am_alpha\" />\n            </layer-list>\n        </item>\n    </selector>\n</inset><!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/drawable/abc_spinner_textfield_background_material.xml --><!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_spinner_textfield_background_material.xml -->"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/drawable/abc_switch_thumb_material.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2014 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<selector xmlns:android=\"http://schemas.android.com/apk/res/android\">\n    <item android:state_checked=\"true\" android:drawable=\"@drawable/abc_btn_switch_to_on_mtrl_00012\" />\n    <item android:drawable=\"@drawable/abc_btn_switch_to_on_mtrl_00001\" />\n</selector><!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/drawable/abc_switch_thumb_material.xml --><!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_switch_thumb_material.xml -->"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/drawable/abc_tab_indicator_material.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2014 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<selector xmlns:android=\"http://schemas.android.com/apk/res/android\">\n    <item android:state_selected=\"true\" android:drawable=\"@drawable/abc_tab_indicator_mtrl_alpha\" />\n    <item android:drawable=\"@android:color/transparent\" />\n</selector>\n<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/drawable/abc_tab_indicator_material.xml --><!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_tab_indicator_material.xml -->"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/drawable/abc_text_cursor_material.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!--\n  ~ Copyright (C) 2015 The Android Open Source Project\n  ~\n  ~ Licensed under the Apache License, Version 2.0 (the \"License\");\n  ~ you may not use this file except in compliance with the License.\n  ~ You may obtain a copy of the License at\n  ~\n  ~      http://www.apache.org/licenses/LICENSE-2.0\n  ~\n  ~ Unless required by applicable law or agreed to in writing, software\n  ~ distributed under the License is distributed on an \"AS IS\" BASIS,\n  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n  ~ See the License for the specific language governing permissions and\n  ~ limitations under the License.\n-->\n\n<shape xmlns:android=\"http://schemas.android.com/apk/res/android\"\n       android:shape=\"rectangle\">\n    <size android:height=\"2dp\"\n          android:width=\"2dp\"/>\n    <solid android:color=\"@android:color/white\"/>\n</shape><!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/drawable/abc_text_cursor_material.xml --><!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_text_cursor_material.xml -->"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/drawable/abc_textfield_search_material.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2014 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<selector xmlns:android=\"http://schemas.android.com/apk/res/android\">\n    <item android:state_enabled=\"true\" android:state_focused=\"true\" android:drawable=\"@drawable/abc_textfield_search_activated_mtrl_alpha\"/>\n    <item android:state_enabled=\"true\" android:state_activated=\"true\" android:drawable=\"@drawable/abc_textfield_search_activated_mtrl_alpha\"/>\n    <item android:state_enabled=\"true\" android:drawable=\"@drawable/abc_textfield_search_default_mtrl_alpha\"/>\n    <item android:drawable=\"@drawable/abc_textfield_search_default_mtrl_alpha\"/>\n</selector>\n<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/drawable/abc_textfield_search_material.xml --><!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable/abc_textfield_search_material.xml -->"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/drawable-v21/abc_action_bar_item_background_material.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2015 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<ripple xmlns:android=\"http://schemas.android.com/apk/res/android\"\n        android:color=\"?android:attr/colorControlHighlight\"/><!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/drawable-v21/abc_action_bar_item_background_material.xml --><!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-v21/abc_action_bar_item_background_material.xml -->"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/drawable-v21/abc_btn_colored_material.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2015 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<inset xmlns:android=\"http://schemas.android.com/apk/res/android\"\n       android:insetLeft=\"@dimen/abc_button_inset_horizontal_material\"\n       android:insetTop=\"@dimen/abc_button_inset_vertical_material\"\n       android:insetRight=\"@dimen/abc_button_inset_horizontal_material\"\n       android:insetBottom=\"@dimen/abc_button_inset_vertical_material\">\n    <ripple android:color=\"?android:attr/colorControlHighlight\">\n        <item>\n            <!-- As we can't use themed ColorStateLists in L, we'll use a Drawable selector which\n                 changes the shape's fill color. -->\n            <selector>\n                <item android:state_enabled=\"false\">\n                    <shape android:shape=\"rectangle\">\n                        <corners android:radius=\"@dimen/abc_control_corner_material\"/>\n                        <solid android:color=\"?android:attr/colorButtonNormal\"/>\n                        <padding android:left=\"@dimen/abc_button_padding_horizontal_material\"\n                                 android:top=\"@dimen/abc_button_padding_vertical_material\"\n                                 android:right=\"@dimen/abc_button_padding_horizontal_material\"\n                                 android:bottom=\"@dimen/abc_button_padding_vertical_material\"/>\n                    </shape>\n                </item>\n                <item>\n                    <shape android:shape=\"rectangle\">\n                        <corners android:radius=\"@dimen/abc_control_corner_material\"/>\n                        <solid android:color=\"?android:attr/colorAccent\"/>\n                        <padding android:left=\"@dimen/abc_button_padding_horizontal_material\"\n                                 android:top=\"@dimen/abc_button_padding_vertical_material\"\n                                 android:right=\"@dimen/abc_button_padding_horizontal_material\"\n                                 android:bottom=\"@dimen/abc_button_padding_vertical_material\"/>\n                    </shape>\n                </item>\n            </selector>\n        </item>\n    </ripple>\n</inset><!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/drawable-v21/abc_btn_colored_material.xml --><!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-v21/abc_btn_colored_material.xml -->"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/drawable-v23/abc_control_background_material.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2015 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<ripple xmlns:android=\"http://schemas.android.com/apk/res/android\"\n        android:color=\"@color/abc_color_highlight_material\"\n        android:radius=\"20dp\" /><!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/drawable-v23/abc_control_background_material.xml --><!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/drawable-v23/abc_control_background_material.xml -->"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/layout/abc_action_bar_title_item.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2010 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n  \n          http://www.apache.org/licenses/LICENSE-2.0\n  \n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<LinearLayout xmlns:android=\"http://schemas.android.com/apk/res/android\"\n              android:layout_width=\"wrap_content\"\n              android:layout_height=\"wrap_content\"\n              android:orientation=\"vertical\"\n              style=\"@style/RtlOverlay.Widget.AppCompat.ActionBar.TitleItem\">\n    <TextView android:id=\"@+id/action_bar_title\"\n              android:layout_width=\"wrap_content\"\n              android:layout_height=\"wrap_content\"\n              android:singleLine=\"true\"\n              android:ellipsize=\"end\" />\n    <TextView android:id=\"@+id/action_bar_subtitle\"\n              android:layout_width=\"wrap_content\"\n              android:layout_height=\"wrap_content\"\n              android:layout_marginTop=\"@dimen/abc_action_bar_subtitle_top_margin_material\"\n              android:singleLine=\"true\"\n              android:ellipsize=\"end\"\n              android:visibility=\"gone\" />\n</LinearLayout>\n<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/layout/abc_action_bar_title_item.xml --><!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_action_bar_title_item.xml -->"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/layout/abc_action_bar_up_container.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2014 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<LinearLayout xmlns:android=\"http://schemas.android.com/apk/res/android\"\n              android:layout_width=\"wrap_content\"\n              android:layout_height=\"match_parent\"\n              android:background=\"?attr/actionBarItemBackground\"\n              android:gravity=\"center_vertical\"\n              android:enabled=\"false\">\n</LinearLayout>\n<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/layout/abc_action_bar_up_container.xml --><!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_action_bar_up_container.xml -->"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/layout/abc_action_bar_view_list_nav_layout.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2012 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n                                                          dd\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<!-- Styled linear layout, compensating for the lack of a defStyle parameter\n     in pre-Honeycomb LinearLayout's constructor. -->\n<LinearLayout xmlns:android=\"http://schemas.android.com/apk/res/android\"\n              android:layout_width=\"fill_parent\"\n              android:layout_height=\"fill_parent\"\n              style=\"?attr/actionBarTabBarStyle\">\n</LinearLayout><!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/layout/abc_action_bar_view_list_nav_layout.xml --><!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_action_bar_view_list_nav_layout.xml -->"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/layout/abc_action_menu_item_layout.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2010 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n                                                          dd\n          http://www.apache.org/licenses/LICENSE-2.0\n  \n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<android.support.v7.internal.view.menu.ActionMenuItemView\n        xmlns:android=\"http://schemas.android.com/apk/res/android\"\n        android:layout_width=\"wrap_content\"\n        android:layout_height=\"wrap_content\"\n        android:layout_gravity=\"center\"\n        android:gravity=\"center\"\n        android:focusable=\"true\"\n        android:paddingTop=\"4dip\"\n        android:paddingBottom=\"4dip\"\n        android:paddingLeft=\"8dip\"\n        android:paddingRight=\"8dip\"\n        android:textAppearance=\"?attr/actionMenuTextAppearance\"\n        android:textColor=\"?attr/actionMenuTextColor\"\n        style=\"?attr/actionButtonStyle\"/>\n<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/layout/abc_action_menu_item_layout.xml --><!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_action_menu_item_layout.xml -->"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/layout/abc_action_menu_layout.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2010 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<android.support.v7.widget.ActionMenuView\n        xmlns:android=\"http://schemas.android.com/apk/res/android\"\n        xmlns:app=\"http://schemas.android.com/apk/res-auto\"\n        android:layout_width=\"wrap_content\"\n        android:layout_height=\"wrap_content\"\n        app:divider=\"?attr/actionBarDivider\"\n        app:dividerPadding=\"12dip\"\n        android:gravity=\"center_vertical\"/>\n<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/layout/abc_action_menu_layout.xml --><!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_action_menu_layout.xml -->"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/layout/abc_action_mode_bar.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!--\n/*\n** Copyright 2012, The Android Open Source Project\n**\n** Licensed under the Apache License, Version 2.0 (the \"License\");\n** you may not use this file except in compliance with the License.\n** You may obtain a copy of the License at\n**\n**     http://www.apache.org/licenses/LICENSE-2.0\n**\n** Unless required by applicable law or agreed to in writing, software\n** distributed under the License is distributed on an \"AS IS\" BASIS,\n** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n** See the License for the specific language governing permissions and\n** limitations under the License.\n*/\n-->\n<android.support.v7.internal.widget.ActionBarContextView\n        xmlns:android=\"http://schemas.android.com/apk/res/android\"\n        android:layout_width=\"match_parent\"\n        android:layout_height=\"wrap_content\"\n        android:visibility=\"gone\"\n        android:theme=\"?attr/actionBarTheme\"\n        style=\"?attr/actionModeStyle\"/>\n<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/layout/abc_action_mode_bar.xml --><!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_action_mode_bar.xml -->"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/layout/abc_action_mode_close_item_material.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2014 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<android.support.v7.internal.widget.TintImageView\n             xmlns:android=\"http://schemas.android.com/apk/res/android\"\n             android:id=\"@+id/action_mode_close_button\"\n             android:contentDescription=\"@string/abc_action_mode_done\"\n             android:focusable=\"true\"\n             android:clickable=\"true\"\n             android:src=\"?attr/actionModeCloseDrawable\"\n             style=\"?attr/actionModeCloseButtonStyle\"\n             android:layout_width=\"wrap_content\"\n             android:layout_height=\"match_parent\" /><!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/layout/abc_action_mode_close_item_material.xml --><!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_action_mode_close_item_material.xml -->"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/layout/abc_activity_chooser_view.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!--\n**\n** Copyright 2013, The Android Open Source Project\n**\n** Licensed under the Apache License, Version 2.0 (the \"License\");\n** you may not use this file except in compliance with the License.\n** You may obtain a copy of the License at\n**\n**     http://www.apache.org/licenses/LICENSE-2.0\n**\n** Unless required by applicable law or agreed to in writing, software\n** distributed under the License is distributed on an \"AS IS\" BASIS,\n** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n** See the License for the specific language governing permissions and\n** limitations under the License.\n*/\n-->\n<view xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    class=\"android.support.v7.internal.widget.ActivityChooserView$InnerLayout\"\n    android:id=\"@+id/activity_chooser_view_content\"\n    android:layout_width=\"wrap_content\"\n    android:layout_height=\"match_parent\"\n    android:layout_gravity=\"center\"\n    style=\"?attr/activityChooserViewStyle\">\n\n    <FrameLayout\n        android:id=\"@+id/expand_activities_button\"\n        android:layout_width=\"wrap_content\"\n        android:layout_height=\"match_parent\"\n        android:layout_gravity=\"center\"\n        android:focusable=\"true\"\n        android:addStatesFromChildren=\"true\"\n        android:background=\"?attr/actionBarItemBackground\">\n\n        <ImageView android:id=\"@+id/image\"\n            android:layout_width=\"32dip\"\n            android:layout_height=\"32dip\"\n            android:layout_gravity=\"center\"\n            android:layout_marginTop=\"2dip\"\n            android:layout_marginBottom=\"2dip\"\n            android:layout_marginLeft=\"12dip\"\n            android:layout_marginRight=\"12dip\"\n            android:scaleType=\"fitCenter\"\n            android:adjustViewBounds=\"true\" />\n\n    </FrameLayout>\n\n    <FrameLayout\n        android:id=\"@+id/default_activity_button\"\n        android:layout_width=\"wrap_content\"\n        android:layout_height=\"match_parent\"\n        android:layout_gravity=\"center\"\n        android:focusable=\"true\"\n        android:addStatesFromChildren=\"true\"\n        android:background=\"?attr/actionBarItemBackground\">\n\n        <ImageView android:id=\"@+id/image\"\n            android:layout_width=\"32dip\"\n            android:layout_height=\"32dip\"\n            android:layout_gravity=\"center\"\n            android:layout_marginTop=\"2dip\"\n            android:layout_marginBottom=\"2dip\"\n            android:layout_marginLeft=\"12dip\"\n            android:layout_marginRight=\"12dip\"\n            android:scaleType=\"fitCenter\"\n            android:adjustViewBounds=\"true\" />\n\n    </FrameLayout>\n\n</view>\n<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/layout/abc_activity_chooser_view.xml --><!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_activity_chooser_view.xml -->"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/layout/abc_activity_chooser_view_list_item.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2013 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<LinearLayout xmlns:android=\"http://schemas.android.com/apk/res/android\"\n              android:id=\"@+id/list_item\"\n              android:layout_width=\"match_parent\"\n              android:layout_height=\"?attr/dropdownListPreferredItemHeight\"\n              android:paddingLeft=\"16dip\"\n              android:paddingRight=\"16dip\"\n              android:minWidth=\"196dip\"\n              android:orientation=\"vertical\">\n\n    <LinearLayout\n            android:layout_width=\"wrap_content\"\n            android:layout_height=\"match_parent\"\n            android:duplicateParentState=\"true\" >\n\n        <ImageView\n                android:id=\"@+id/icon\"\n                android:layout_width=\"32dip\"\n                android:layout_height=\"32dip\"\n                android:layout_gravity=\"center_vertical\"\n                android:layout_marginRight=\"8dip\"\n                android:duplicateParentState=\"true\"/>\n\n        <TextView\n                android:id=\"@+id/title\"\n                android:layout_width=\"wrap_content\"\n                android:layout_height=\"wrap_content\"\n                android:layout_gravity=\"center_vertical\"\n                android:textAppearance=\"?attr/textAppearanceLargePopupMenu\"\n                android:duplicateParentState=\"true\"\n                android:singleLine=\"true\"\n                android:ellipsize=\"marquee\"\n                android:fadingEdge=\"horizontal\"/>\n\n    </LinearLayout>\n\n</LinearLayout><!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/layout/abc_activity_chooser_view_list_item.xml --><!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_activity_chooser_view_list_item.xml -->"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/layout/abc_alert_dialog_material.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!--\n     Copyright (C) 2015 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<LinearLayout xmlns:android=\"http://schemas.android.com/apk/res/android\"\n        android:id=\"@+id/parentPanel\"\n        android:layout_width=\"match_parent\"\n        android:layout_height=\"wrap_content\"\n        android:orientation=\"vertical\">\n\n    <LinearLayout\n            android:id=\"@+id/topPanel\"\n            android:layout_width=\"match_parent\"\n            android:layout_height=\"wrap_content\"\n            android:orientation=\"vertical\">\n\n        <LinearLayout\n                android:id=\"@+id/title_template\"\n                android:layout_width=\"match_parent\"\n                android:layout_height=\"wrap_content\"\n                android:orientation=\"horizontal\"\n                android:gravity=\"center_vertical\"\n                android:paddingLeft=\"?attr/dialogPreferredPadding\"\n                android:paddingRight=\"?attr/dialogPreferredPadding\"\n                android:paddingTop=\"@dimen/abc_dialog_padding_top_material\">\n\n            <ImageView\n                    android:id=\"@android:id/icon\"\n                    android:layout_width=\"32dip\"\n                    android:layout_height=\"32dip\"\n                    android:scaleType=\"fitCenter\"\n                    android:src=\"@null\"\n                    style=\"@style/RtlOverlay.Widget.AppCompat.DialogTitle.Icon\"/>\n\n            <android.support.v7.internal.widget.DialogTitle\n                    android:id=\"@+id/alertTitle\"\n                    style=\"?attr/android:windowTitleStyle\"\n                    android:singleLine=\"true\"\n                    android:ellipsize=\"end\"\n                    android:layout_width=\"match_parent\"\n                    android:layout_height=\"wrap_content\"\n                    android:textAlignment=\"viewStart\" />\n\n        </LinearLayout>\n        <!-- If the client uses a customTitle, it will be added here. -->\n    </LinearLayout>\n\n    <FrameLayout\n            android:id=\"@+id/contentPanel\"\n            android:layout_width=\"match_parent\"\n            android:layout_height=\"wrap_content\"\n            android:layout_weight=\"1\"\n            android:minHeight=\"48dp\">\n\n        <ScrollView\n                android:id=\"@+id/scrollView\"\n                android:layout_width=\"match_parent\"\n                android:layout_height=\"wrap_content\"\n                android:clipToPadding=\"false\">\n\n            <LinearLayout\n                    android:layout_width=\"match_parent\"\n                    android:layout_height=\"wrap_content\"\n                    android:orientation=\"vertical\">\n\n                <TextView\n                        android:id=\"@android:id/message\"\n                        style=\"@style/TextAppearance.AppCompat.Subhead\"\n                        android:layout_width=\"match_parent\"\n                        android:layout_height=\"wrap_content\"\n                        android:paddingLeft=\"?attr/dialogPreferredPadding\"\n                        android:paddingTop=\"@dimen/abc_dialog_padding_top_material\"\n                        android:paddingRight=\"?attr/dialogPreferredPadding\"/>\n\n                <View\n                        android:id=\"@+id/textSpacerNoButtons\"\n                        android:visibility=\"gone\"\n                        android:layout_width=\"0dp\"\n                        android:layout_height=\"@dimen/abc_dialog_padding_top_material\"/>\n            </LinearLayout>\n        </ScrollView>\n\n    </FrameLayout>\n\n    <FrameLayout\n            android:id=\"@+id/customPanel\"\n            android:layout_width=\"match_parent\"\n            android:layout_height=\"wrap_content\"\n            android:layout_weight=\"1\"\n            android:minHeight=\"48dp\">\n\n        <FrameLayout\n                android:id=\"@+id/custom\"\n                android:layout_width=\"match_parent\"\n                android:layout_height=\"wrap_content\"/>\n    </FrameLayout>\n\n    <LinearLayout\n            android:id=\"@+id/buttonPanel\"\n            style=\"?attr/buttonBarStyle\"\n            android:layout_width=\"match_parent\"\n            android:layout_height=\"wrap_content\"\n            android:layoutDirection=\"locale\"\n            android:orientation=\"horizontal\"\n            android:paddingLeft=\"12dp\"\n            android:paddingRight=\"12dp\"\n            android:paddingTop=\"8dp\"\n            android:paddingBottom=\"8dp\"\n            android:gravity=\"bottom\">\n\n        <Button\n                android:id=\"@android:id/button3\"\n                style=\"?attr/buttonBarNeutralButtonStyle\"\n                android:layout_width=\"wrap_content\"\n                android:layout_height=\"wrap_content\"/>\n\n        <android.support.v4.widget.Space\n                android:layout_width=\"0dp\"\n                android:layout_height=\"0dp\"\n                android:layout_weight=\"1\"\n                android:visibility=\"invisible\"/>\n\n        <Button\n                android:id=\"@android:id/button2\"\n                style=\"?attr/buttonBarNegativeButtonStyle\"\n                android:layout_width=\"wrap_content\"\n                android:layout_height=\"wrap_content\"/>\n\n        <Button\n                android:id=\"@android:id/button1\"\n                style=\"?attr/buttonBarPositiveButtonStyle\"\n                android:layout_width=\"wrap_content\"\n                android:layout_height=\"wrap_content\"/>\n    </LinearLayout>\n</LinearLayout><!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/layout/abc_alert_dialog_material.xml --><!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_alert_dialog_material.xml -->"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/layout/abc_dialog_title_material.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2014 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<!--\nThis is an optimized layout for a screen, with the minimum set of features\nenabled.\n-->\n\n<android.support.v7.internal.widget.FitWindowsLinearLayout\n        xmlns:android=\"http://schemas.android.com/apk/res/android\"\n        android:layout_height=\"match_parent\"\n        android:layout_width=\"match_parent\"\n        android:orientation=\"vertical\"\n        android:fitsSystemWindows=\"true\">\n\n    <TextView\n            android:id=\"@+id/title\"\n            style=\"?android:attr/windowTitleStyle\"\n            android:singleLine=\"true\"\n            android:ellipsize=\"end\"\n            android:layout_width=\"match_parent\"\n            android:layout_height=\"wrap_content\"\n            android:textAlignment=\"viewStart\"\n            android:paddingLeft=\"?attr/dialogPreferredPadding\"\n            android:paddingRight=\"?attr/dialogPreferredPadding\"\n            android:paddingTop=\"@dimen/abc_dialog_padding_top_material\"/>\n\n    <include\n            layout=\"@layout/abc_screen_content_include\"\n            android:layout_width=\"match_parent\"\n            android:layout_height=\"wrap_content\"\n            android:layout_weight=\"1\"/>\n\n</android.support.v7.internal.widget.FitWindowsLinearLayout><!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/layout/abc_dialog_title_material.xml --><!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_dialog_title_material.xml -->"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/layout/abc_expanded_menu_layout.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2013 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<android.support.v7.internal.view.menu.ExpandedMenuView\n        xmlns:android=\"http://schemas.android.com/apk/res/android\"\n        android:id=\"@+id/expanded_menu\"\n        android:layout_width=\"?attr/panelMenuListWidth\"\n        android:layout_height=\"wrap_content\" />\n<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/layout/abc_expanded_menu_layout.xml --><!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_expanded_menu_layout.xml -->"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/layout/abc_list_menu_item_checkbox.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2007 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n  \n          http://www.apache.org/licenses/LICENSE-2.0\n  \n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<CheckBox xmlns:android=\"http://schemas.android.com/apk/res/android\"\n          android:id=\"@+id/checkbox\"\n          android:layout_width=\"wrap_content\"\n          android:layout_height=\"wrap_content\"\n          android:layout_gravity=\"center_vertical\"\n          android:focusable=\"false\"\n          android:clickable=\"false\"\n          android:duplicateParentState=\"true\"/>\n\n\n<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/layout/abc_list_menu_item_checkbox.xml --><!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_list_menu_item_checkbox.xml -->"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/layout/abc_list_menu_item_icon.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2007 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n  \n          http://www.apache.org/licenses/LICENSE-2.0\n  \n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<ImageView xmlns:android=\"http://schemas.android.com/apk/res/android\"\n           android:id=\"@+id/icon\"\n           android:layout_width=\"wrap_content\"\n           android:layout_height=\"wrap_content\"\n           android:layout_gravity=\"center_vertical\"\n           android:layout_marginLeft=\"8dip\"\n           android:layout_marginRight=\"-8dip\"\n           android:layout_marginTop=\"8dip\"\n           android:layout_marginBottom=\"8dip\"\n           android:scaleType=\"centerInside\"\n           android:duplicateParentState=\"true\"/>\n\n<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/layout/abc_list_menu_item_icon.xml --><!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_list_menu_item_icon.xml -->"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/layout/abc_list_menu_item_layout.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2013 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<android.support.v7.internal.view.menu.ListMenuItemView\n        xmlns:android=\"http://schemas.android.com/apk/res/android\"\n        android:layout_width=\"match_parent\"\n        android:layout_height=\"?attr/listPreferredItemHeightSmall\">\n\n    <!-- Icon will be inserted here. -->\n\n    <!-- The title and summary have some gap between them, and this 'group' should be centered vertically. -->\n    <RelativeLayout\n            android:layout_width=\"0dip\"\n            android:layout_weight=\"1\"\n            android:layout_height=\"wrap_content\"\n            android:layout_gravity=\"center_vertical\"\n            android:layout_marginLeft=\"?attr/listPreferredItemPaddingLeft\"\n            android:layout_marginRight=\"?attr/listPreferredItemPaddingRight\"\n            android:duplicateParentState=\"true\">\n\n        <TextView\n            android:id=\"@+id/title\"\n            android:layout_width=\"match_parent\"\n            android:layout_height=\"wrap_content\"\n            android:layout_alignParentTop=\"true\"\n            android:layout_alignParentLeft=\"true\"\n            android:textAppearance=\"?attr/textAppearanceListItemSmall\"\n            android:singleLine=\"true\"\n            android:duplicateParentState=\"true\"\n            android:ellipsize=\"marquee\"\n            android:fadingEdge=\"horizontal\" />\n\n        <TextView\n            android:id=\"@+id/shortcut\"\n            android:layout_width=\"wrap_content\"\n            android:layout_height=\"wrap_content\"\n            android:layout_below=\"@id/title\"\n            android:layout_alignParentLeft=\"true\"\n            android:textAppearance=\"?android:attr/textAppearanceSmall\"\n            android:singleLine=\"true\"\n            android:duplicateParentState=\"true\" />\n\n    </RelativeLayout>\n\n    <!-- Checkbox, and/or radio button will be inserted here. -->\n\n</android.support.v7.internal.view.menu.ListMenuItemView>\n<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/layout/abc_list_menu_item_layout.xml --><!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_list_menu_item_layout.xml -->"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/layout/abc_list_menu_item_radio.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2007 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n  \n          http://www.apache.org/licenses/LICENSE-2.0\n  \n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<RadioButton xmlns:android=\"http://schemas.android.com/apk/res/android\"\n             android:id=\"@+id/radio\"\n             android:layout_width=\"wrap_content\"\n             android:layout_height=\"wrap_content\"\n             android:layout_gravity=\"center_vertical\"\n             android:focusable=\"false\"\n             android:clickable=\"false\"\n             android:duplicateParentState=\"true\"/>\n<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/layout/abc_list_menu_item_radio.xml --><!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_list_menu_item_radio.xml -->"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/layout/abc_popup_menu_item_layout.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2010 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<android.support.v7.internal.view.menu.ListMenuItemView\n        xmlns:android=\"http://schemas.android.com/apk/res/android\"\n        android:layout_width=\"match_parent\"\n        android:layout_height=\"?attr/dropdownListPreferredItemHeight\"\n        android:minWidth=\"196dip\"\n        style=\"@style/RtlOverlay.Widget.AppCompat.PopupMenuItem\">\n\n    <!-- Icon will be inserted here. -->\n\n    <!-- The title and summary have some gap between them, and this 'group' should be centered vertically. -->\n    <RelativeLayout\n            android:layout_width=\"0dip\"\n            android:layout_weight=\"1\"\n            android:layout_height=\"wrap_content\"\n            android:layout_gravity=\"center_vertical\"\n            android:duplicateParentState=\"true\"\n            style=\"@style/RtlOverlay.Widget.AppCompat.PopupMenuItem.InternalGroup\">\n\n        <TextView\n                android:id=\"@+id/title\"\n                android:layout_width=\"match_parent\"\n                android:layout_height=\"wrap_content\"\n                android:layout_alignParentTop=\"true\"\n                android:textAppearance=\"?attr/textAppearanceLargePopupMenu\"\n                android:singleLine=\"true\"\n                android:duplicateParentState=\"true\"\n                android:ellipsize=\"marquee\"\n                android:fadingEdge=\"horizontal\"\n                style=\"@style/RtlOverlay.Widget.AppCompat.PopupMenuItem.Text\" />\n\n        <TextView\n                android:id=\"@+id/shortcut\"\n                android:layout_width=\"wrap_content\"\n                android:layout_height=\"wrap_content\"\n                android:layout_below=\"@id/title\"\n                android:textAppearance=\"?attr/textAppearanceSmallPopupMenu\"\n                android:singleLine=\"true\"\n                android:duplicateParentState=\"true\"\n                style=\"@style/RtlOverlay.Widget.AppCompat.PopupMenuItem.Text\" />\n\n    </RelativeLayout>\n\n    <!-- Checkbox, and/or radio button will be inserted here. -->\n\n</android.support.v7.internal.view.menu.ListMenuItemView>\n<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/layout/abc_popup_menu_item_layout.xml --><!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_popup_menu_item_layout.xml -->"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/layout/abc_screen_content_include.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2014 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<merge xmlns:android=\"http://schemas.android.com/apk/res/android\">\n\n    <android.support.v7.internal.widget.ContentFrameLayout\n            android:id=\"@id/action_bar_activity_content\"\n            android:layout_width=\"match_parent\"\n            android:layout_height=\"match_parent\"\n            android:foregroundGravity=\"fill_horizontal|top\"\n            android:foreground=\"?android:attr/windowContentOverlay\" />\n\n</merge>\n<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/layout/abc_screen_content_include.xml --><!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_screen_content_include.xml -->"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/layout/abc_screen_simple.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2013 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<android.support.v7.internal.widget.FitWindowsLinearLayout\n    xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:id=\"@+id/action_bar_root\"\n    android:layout_width=\"match_parent\"\n    android:layout_height=\"match_parent\"\n    android:orientation=\"vertical\"\n    android:fitsSystemWindows=\"true\">\n\n    <android.support.v7.internal.widget.ViewStubCompat\n        android:id=\"@+id/action_mode_bar_stub\"\n        android:inflatedId=\"@+id/action_mode_bar\"\n        android:layout=\"@layout/abc_action_mode_bar\"\n        android:layout_width=\"match_parent\"\n        android:layout_height=\"wrap_content\" />\n\n    <include layout=\"@layout/abc_screen_content_include\" />\n\n</android.support.v7.internal.widget.FitWindowsLinearLayout>\n<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/layout/abc_screen_simple.xml --><!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_screen_simple.xml -->"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/layout/abc_screen_simple_overlay_action_mode.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!--\n/*\n** Copyright 2014, The Android Open Source Project\n**\n** Licensed under the Apache License, Version 2.0 (the \"License\");\n** you may not use this file except in compliance with the License.\n** You may obtain a copy of the License at\n**\n**     http://www.apache.org/licenses/LICENSE-2.0\n**\n** Unless required by applicable law or agreed to in writing, software\n** distributed under the License is distributed on an \"AS IS\" BASIS,\n** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n** See the License for the specific language governing permissions and\n** limitations under the License.\n*/\n\nThis is an optimized layout for a screen, with the minimum set of features\nenabled.\n-->\n\n<android.support.v7.internal.widget.FitWindowsFrameLayout\n        xmlns:android=\"http://schemas.android.com/apk/res/android\"\n        android:id=\"@+id/action_bar_root\"\n        android:layout_width=\"match_parent\"\n        android:layout_height=\"match_parent\"\n        android:fitsSystemWindows=\"true\">\n\n    <include layout=\"@layout/abc_screen_content_include\" />\n\n    <android.support.v7.internal.widget.ViewStubCompat\n            android:id=\"@+id/action_mode_bar_stub\"\n            android:inflatedId=\"@+id/action_mode_bar\"\n            android:layout=\"@layout/abc_action_mode_bar\"\n            android:layout_width=\"match_parent\"\n            android:layout_height=\"wrap_content\" />\n\n</android.support.v7.internal.widget.FitWindowsFrameLayout><!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/layout/abc_screen_simple_overlay_action_mode.xml --><!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_screen_simple_overlay_action_mode.xml -->"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/layout/abc_screen_toolbar.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2014 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<android.support.v7.internal.widget.ActionBarOverlayLayout\n        xmlns:android=\"http://schemas.android.com/apk/res/android\"\n        xmlns:app=\"http://schemas.android.com/apk/res-auto\"\n        android:id=\"@+id/decor_content_parent\"\n        android:layout_width=\"match_parent\"\n        android:layout_height=\"match_parent\"\n        android:fitsSystemWindows=\"true\">\n\n    <include layout=\"@layout/abc_screen_content_include\"/>\n\n    <android.support.v7.internal.widget.ActionBarContainer\n            android:id=\"@+id/action_bar_container\"\n            android:layout_width=\"match_parent\"\n            android:layout_height=\"wrap_content\"\n            android:layout_alignParentTop=\"true\"\n            style=\"?attr/actionBarStyle\"\n            android:touchscreenBlocksFocus=\"true\"\n            android:gravity=\"top\">\n\n        <android.support.v7.widget.Toolbar\n                android:id=\"@+id/action_bar\"\n                android:layout_width=\"match_parent\"\n                android:layout_height=\"wrap_content\"\n                app:navigationContentDescription=\"@string/abc_action_bar_up_description\"\n                style=\"?attr/toolbarStyle\"/>\n\n        <android.support.v7.internal.widget.ActionBarContextView\n                android:id=\"@+id/action_context_bar\"\n                android:layout_width=\"match_parent\"\n                android:layout_height=\"wrap_content\"\n                android:visibility=\"gone\"\n                android:theme=\"?attr/actionBarTheme\"\n                style=\"?attr/actionModeStyle\"/>\n\n    </android.support.v7.internal.widget.ActionBarContainer>\n\n</android.support.v7.internal.widget.ActionBarOverlayLayout>\n<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/layout/abc_screen_toolbar.xml --><!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_screen_toolbar.xml -->"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/layout/abc_search_dropdown_item_icons_2line.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!--\n/*\n * Copyright (C) 2014 The Android Open Source Project\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *      http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n-->\n\n<RelativeLayout xmlns:android=\"http://schemas.android.com/apk/res/android\"\n                android:layout_width=\"match_parent\"\n                android:layout_height=\"58dip\"\n                style=\"@style/RtlOverlay.Widget.AppCompat.Search.DropDown\">\n\n    <!-- Icons come first in the layout, since their placement doesn't depend on\n         the placement of the text views. -->\n    <android.support.v7.internal.widget.TintImageView\n               android:id=\"@android:id/icon1\"\n               android:layout_width=\"@dimen/abc_dropdownitem_icon_width\"\n               android:layout_height=\"48dip\"\n               android:scaleType=\"centerInside\"\n               android:layout_alignParentTop=\"true\"\n               android:layout_alignParentBottom=\"true\"\n               android:visibility=\"invisible\"\n               style=\"@style/RtlOverlay.Widget.AppCompat.Search.DropDown.Icon1\" />\n\n    <android.support.v7.internal.widget.TintImageView\n               android:id=\"@+id/edit_query\"\n               android:layout_width=\"48dip\"\n               android:layout_height=\"48dip\"\n               android:scaleType=\"centerInside\"\n               android:layout_alignParentTop=\"true\"\n               android:layout_alignParentBottom=\"true\"\n               android:background=\"?attr/selectableItemBackground\"\n               android:visibility=\"gone\"\n               style=\"@style/RtlOverlay.Widget.AppCompat.Search.DropDown.Query\" />\n\n    <android.support.v7.internal.widget.TintImageView\n               android:id=\"@id/android:icon2\"\n               android:layout_width=\"48dip\"\n               android:layout_height=\"48dip\"\n               android:scaleType=\"centerInside\"\n               android:layout_alignWithParentIfMissing=\"true\"\n               android:layout_alignParentTop=\"true\"\n               android:layout_alignParentBottom=\"true\"\n               android:visibility=\"gone\"\n               style=\"@style/RtlOverlay.Widget.AppCompat.Search.DropDown.Icon2\" />\n\n\n    <!-- The subtitle comes before the title, since the height of the title depends on whether the\n         subtitle is visible or gone. -->\n    <TextView android:id=\"@android:id/text2\"\n              style=\"?android:attr/dropDownItemStyle\"\n              android:textAppearance=\"?attr/textAppearanceSearchResultSubtitle\"\n              android:singleLine=\"true\"\n              android:layout_width=\"match_parent\"\n              android:layout_height=\"29dip\"\n              android:paddingBottom=\"4dip\"\n              android:gravity=\"top\"\n              android:layout_alignWithParentIfMissing=\"true\"\n              android:layout_alignParentBottom=\"true\"\n              android:visibility=\"gone\" />\n\n    <!-- The title is placed above the subtitle, if there is one. If there is no\n         subtitle, it fills the parent. -->\n    <TextView android:id=\"@android:id/text1\"\n              style=\"?android:attr/dropDownItemStyle\"\n              android:textAppearance=\"?attr/textAppearanceSearchResultTitle\"\n              android:singleLine=\"true\"\n              android:layout_width=\"match_parent\"\n              android:layout_height=\"wrap_content\"\n              android:layout_centerVertical=\"true\"\n              android:layout_above=\"@android:id/text2\" />\n\n</RelativeLayout>\n<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/layout/abc_search_dropdown_item_icons_2line.xml --><!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_search_dropdown_item_icons_2line.xml -->"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/layout/abc_search_view.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!--\n/*\n * Copyright (C) 2014 The Android Open Source Project\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *      http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n-->\n<LinearLayout xmlns:android=\"http://schemas.android.com/apk/res/android\"\n        android:id=\"@+id/search_bar\"\n        android:layout_width=\"match_parent\"\n        android:layout_height=\"match_parent\"\n        android:orientation=\"horizontal\">\n\n    <!-- This is actually used for the badge icon *or* the badge label (or neither) -->\n    <TextView\n            android:id=\"@+id/search_badge\"\n            android:layout_width=\"wrap_content\"\n            android:layout_height=\"match_parent\"\n            android:gravity=\"center_vertical\"\n            android:layout_marginBottom=\"2dip\"\n            android:drawablePadding=\"0dip\"\n            android:textAppearance=\"?android:attr/textAppearanceMedium\"\n            android:textColor=\"?android:attr/textColorPrimary\"\n            android:visibility=\"gone\" />\n\n    <android.support.v7.internal.widget.TintImageView\n            android:id=\"@+id/search_button\"\n            style=\"?attr/actionButtonStyle\"\n            android:layout_width=\"wrap_content\"\n            android:layout_height=\"match_parent\"\n            android:layout_gravity=\"center_vertical\"\n            android:focusable=\"true\"\n            android:contentDescription=\"@string/abc_searchview_description_search\" />\n\n    <LinearLayout\n            android:id=\"@+id/search_edit_frame\"\n            android:layout_width=\"wrap_content\"\n            android:layout_height=\"wrap_content\"\n            android:layout_weight=\"1\"\n            android:layout_gravity=\"center_vertical\"\n            android:layout_marginTop=\"4dip\"\n            android:layout_marginBottom=\"4dip\"\n            android:layout_marginLeft=\"8dip\"\n            android:layout_marginRight=\"8dip\"\n            android:orientation=\"horizontal\"\n            android:layoutDirection=\"locale\">\n\n        <android.support.v7.internal.widget.TintImageView\n                android:id=\"@+id/search_mag_icon\"\n                android:layout_width=\"@dimen/abc_dropdownitem_icon_width\"\n                android:layout_height=\"wrap_content\"\n                android:scaleType=\"centerInside\"\n                android:layout_gravity=\"center_vertical\"\n                android:visibility=\"gone\"\n                style=\"@style/RtlOverlay.Widget.AppCompat.SearchView.MagIcon\" />\n\n        <!-- Inner layout contains the app icon, button(s) and EditText -->\n        <LinearLayout\n                android:id=\"@+id/search_plate\"\n                android:layout_width=\"wrap_content\"\n                android:layout_height=\"wrap_content\"\n                android:layout_weight=\"1\"\n                android:layout_gravity=\"center_vertical\"\n                android:orientation=\"horizontal\">\n\n            <view class=\"android.support.v7.widget.SearchView$SearchAutoComplete\"\n                  android:id=\"@+id/search_src_text\"\n                  android:layout_height=\"36dip\"\n                  android:layout_width=\"0dp\"\n                  android:layout_weight=\"1\"\n                  android:minWidth=\"@dimen/abc_search_view_text_min_width\"\n                  android:layout_gravity=\"bottom\"\n                  android:paddingLeft=\"@dimen/abc_dropdownitem_text_padding_left\"\n                  android:paddingRight=\"@dimen/abc_dropdownitem_text_padding_right\"\n                  android:singleLine=\"true\"\n                  android:ellipsize=\"end\"\n                  android:background=\"@null\"\n                  android:inputType=\"text|textAutoComplete|textNoSuggestions\"\n                  android:imeOptions=\"actionSearch\"\n                  android:dropDownHeight=\"wrap_content\"\n                  android:dropDownAnchor=\"@id/search_edit_frame\"\n                  android:dropDownVerticalOffset=\"0dip\"\n                  android:dropDownHorizontalOffset=\"0dip\" />\n\n            <android.support.v7.internal.widget.TintImageView\n                    android:id=\"@+id/search_close_btn\"\n                    android:layout_width=\"wrap_content\"\n                    android:layout_height=\"match_parent\"\n                    android:paddingLeft=\"8dip\"\n                    android:paddingRight=\"8dip\"\n                    android:layout_gravity=\"center_vertical\"\n                    android:background=\"?attr/selectableItemBackgroundBorderless\"\n                    android:focusable=\"true\"\n                    android:contentDescription=\"@string/abc_searchview_description_clear\" />\n\n        </LinearLayout>\n\n        <LinearLayout\n                android:id=\"@+id/submit_area\"\n                android:orientation=\"horizontal\"\n                android:layout_width=\"wrap_content\"\n                android:layout_height=\"match_parent\">\n\n            <android.support.v7.internal.widget.TintImageView\n                    android:id=\"@+id/search_go_btn\"\n                    android:layout_width=\"wrap_content\"\n                    android:layout_height=\"match_parent\"\n                    android:layout_gravity=\"center_vertical\"\n                    android:paddingLeft=\"16dip\"\n                    android:paddingRight=\"16dip\"\n                    android:background=\"?attr/selectableItemBackgroundBorderless\"\n                    android:visibility=\"gone\"\n                    android:focusable=\"true\"\n                    android:contentDescription=\"@string/abc_searchview_description_submit\" />\n\n            <android.support.v7.internal.widget.TintImageView\n                    android:id=\"@+id/search_voice_btn\"\n                    android:layout_width=\"wrap_content\"\n                    android:layout_height=\"match_parent\"\n                    android:layout_gravity=\"center_vertical\"\n                    android:paddingLeft=\"16dip\"\n                    android:paddingRight=\"16dip\"\n                    android:background=\"?attr/selectableItemBackgroundBorderless\"\n                    android:visibility=\"gone\"\n                    android:focusable=\"true\"\n                    android:contentDescription=\"@string/abc_searchview_description_voice\" />\n        </LinearLayout>\n    </LinearLayout>\n</LinearLayout>\n<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/layout/abc_search_view.xml --><!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_search_view.xml -->"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/layout/abc_select_dialog_material.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!--\n     Copyright (C) 2015 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<!--\n    This layout file is used by the AlertDialog when displaying a list of items.\n    This layout file is inflated and used as the ListView to display the items.\n    Assign an ID so its state will be saved/restored.\n-->\n<ListView xmlns:android=\"http://schemas.android.com/apk/res/android\"\n      android:id=\"@+id/select_dialog_listview\"\n      android:layout_width=\"match_parent\"\n      android:layout_height=\"match_parent\"\n      android:cacheColorHint=\"@null\"\n      android:divider=\"?attr/listDividerAlertDialog\"\n      android:scrollbars=\"vertical\"\n      android:overScrollMode=\"ifContentScrolls\"\n      android:fadingEdge=\"none\"\n      android:paddingTop=\"@dimen/abc_dialog_list_padding_vertical_material\"\n      android:paddingBottom=\"@dimen/abc_dialog_list_padding_vertical_material\"\n      android:clipToPadding=\"false\"\n      style=\"@style/Widget.AppCompat.ListView\" /><!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/layout/abc_select_dialog_material.xml --><!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/abc_select_dialog_material.xml -->"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/layout/fps_view.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n\n<merge\n    xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    >\n  <TextView\n      android:id=\"@+id/fps_text\"\n      android:layout_width=\"wrap_content\"\n      android:layout_height=\"wrap_content\"\n      android:layout_margin=\"3dp\"\n      android:background=\"#a4141823\"\n      android:gravity=\"right\"\n      android:layout_gravity=\"top|right\"\n      android:padding=\"3dp\"\n      android:textColor=\"@android:color/white\"\n      android:textSize=\"11sp\"\n      />\n</merge>\n<!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/layout/fps_view.xml -->"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/layout/notification_media_action.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2012 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<ImageButton xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    style=\"?android:attr/borderlessButtonStyle\"\n    android:id=\"@+id/action0\"\n    android:layout_width=\"48dp\"\n    android:layout_height=\"match_parent\"\n    android:layout_marginLeft=\"2dp\"\n    android:layout_marginRight=\"2dp\"\n    android:layout_weight=\"1\"\n    android:gravity=\"center\"/><!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/layout/notification_media_action.xml --><!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/notification_media_action.xml -->"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/layout/notification_media_cancel_action.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!--\n  ~ Copyright (C) 2015 The Android Open Source Project\n  ~\n  ~ Licensed under the Apache License, Version 2.0 (the \"License\");\n  ~ you may not use this file except in compliance with the License.\n  ~ You may obtain a copy of the License at\n  ~\n  ~      http://www.apache.org/licenses/LICENSE-2.0\n  ~\n  ~ Unless required by applicable law or agreed to in writing, software\n  ~ distributed under the License is distributed on an \"AS IS\" BASIS,\n  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n  ~ See the License for the specific language governing permissions and\n  ~ limitations under the License\n  -->\n\n<ImageButton xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    style=\"?android:attr/borderlessButtonStyle\"\n    android:id=\"@+id/cancel_action\"\n    android:layout_width=\"48dp\"\n    android:layout_height=\"match_parent\"\n    android:layout_marginLeft=\"2dp\"\n    android:layout_marginRight=\"2dp\"\n    android:layout_weight=\"1\"\n    android:src=\"@drawable/abc_ic_clear_mtrl_alpha\"\n    android:gravity=\"center\"\n    android:visibility=\"gone\"/><!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/layout/notification_media_cancel_action.xml --><!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/notification_media_cancel_action.xml -->"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/layout/notification_template_big_media.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!--\n  ~ Copyright (C) 2015 The Android Open Source Project\n  ~\n  ~ Licensed under the Apache License, Version 2.0 (the \"License\");\n  ~ you may not use this file except in compliance with the License.\n  ~ You may obtain a copy of the License at\n  ~\n  ~      http://www.apache.org/licenses/LICENSE-2.0\n  ~\n  ~ Unless required by applicable law or agreed to in writing, software\n  ~ distributed under the License is distributed on an \"AS IS\" BASIS,\n  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n  ~ See the License for the specific language governing permissions and\n  ~ limitations under the License\n  -->\n\n<RelativeLayout xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:id=\"@+id/status_bar_latest_event_content\"\n    android:layout_width=\"match_parent\"\n    android:layout_height=\"128dp\"\n    >\n    <ImageView android:id=\"@+id/icon\"\n        android:layout_width=\"@dimen/notification_large_icon_width\"\n        android:layout_height=\"@dimen/notification_large_icon_height\"\n        android:scaleType=\"centerCrop\"\n        />\n    <include layout=\"@layout/notification_media_cancel_action\"\n        android:layout_width=\"48dp\"\n        android:layout_height=\"48dp\"\n        android:layout_marginLeft=\"2dp\"\n        android:layout_marginRight=\"2dp\"\n        android:layout_alignParentRight=\"true\"/>\n    <include layout=\"@layout/notification_template_lines\"\n        android:layout_width=\"fill_parent\"\n        android:layout_height=\"wrap_content\"\n        android:layout_gravity=\"fill_vertical\"\n        android:layout_marginLeft=\"@dimen/notification_large_icon_width\"\n        android:layout_marginStart=\"@dimen/notification_large_icon_width\"\n        android:layout_toLeftOf=\"@id/cancel_action\"\n        android:layout_toStartOf=\"@id/cancel_action\"/>\n    <LinearLayout\n        android:id=\"@+id/media_actions\"\n        android:layout_width=\"match_parent\"\n        android:layout_height=\"48dp\"\n        android:layout_alignParentBottom=\"true\"\n        android:layout_marginLeft=\"12dp\"\n        android:layout_marginRight=\"12dp\"\n        android:orientation=\"horizontal\"\n        android:layoutDirection=\"ltr\"\n        >\n        <!-- media buttons will be added here -->\n    </LinearLayout>\n    <ImageView\n        android:layout_width=\"match_parent\"\n        android:layout_height=\"1dp\"\n        android:layout_above=\"@id/media_actions\"\n        android:id=\"@+id/action_divider\"\n        android:background=\"?android:attr/dividerHorizontal\" />\n</RelativeLayout>\n<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/layout/notification_template_big_media.xml --><!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/notification_template_big_media.xml -->"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/layout/notification_template_big_media_narrow.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!--\n  ~ Copyright (C) 2015 The Android Open Source Project\n  ~\n  ~ Licensed under the Apache License, Version 2.0 (the \"License\");\n  ~ you may not use this file except in compliance with the License.\n  ~ You may obtain a copy of the License at\n  ~\n  ~      http://www.apache.org/licenses/LICENSE-2.0\n  ~\n  ~ Unless required by applicable law or agreed to in writing, software\n  ~ distributed under the License is distributed on an \"AS IS\" BASIS,\n  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n  ~ See the License for the specific language governing permissions and\n  ~ limitations under the License\n  -->\n\n<!-- Layout to be used with only max 3 actions. It has a much larger picture at the left side-->\n<RelativeLayout xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:id=\"@+id/status_bar_latest_event_content\"\n    android:layout_width=\"match_parent\"\n    android:layout_height=\"128dp\"\n    >\n    <ImageView android:id=\"@+id/icon\"\n        android:layout_width=\"128dp\"\n        android:layout_height=\"128dp\"\n        android:scaleType=\"centerCrop\"\n        />\n\n    <include layout=\"@layout/notification_media_cancel_action\"\n        android:layout_width=\"48dp\"\n        android:layout_height=\"48dp\"\n        android:layout_marginLeft=\"2dp\"\n        android:layout_marginRight=\"2dp\"\n        android:layout_alignParentRight=\"true\"\n        android:layout_alignParentEnd=\"true\"/>\n\n    <include layout=\"@layout/notification_template_lines\"\n        android:layout_width=\"fill_parent\"\n        android:layout_height=\"wrap_content\"\n        android:layout_marginLeft=\"128dp\"\n        android:layout_marginStart=\"128dp\"\n        android:layout_toLeftOf=\"@id/cancel_action\"\n        android:layout_toStartOf=\"@id/cancel_action\"/>\n\n    <LinearLayout\n        android:id=\"@+id/media_actions\"\n        android:layout_width=\"match_parent\"\n        android:layout_height=\"48dp\"\n        android:layout_toRightOf=\"@id/icon\"\n        android:layout_toEndOf=\"@id/icon\"\n        android:layout_alignParentBottom=\"true\"\n        android:layout_marginLeft=\"12dp\"\n        android:layout_marginRight=\"12dp\"\n        android:orientation=\"horizontal\"\n        android:layoutDirection=\"ltr\"\n        >\n        <!-- media buttons will be added here -->\n    </LinearLayout>\n    <ImageView\n        android:layout_width=\"match_parent\"\n        android:layout_height=\"1dp\"\n        android:layout_toRightOf=\"@id/icon\"\n        android:layout_toEndOf=\"@id/icon\"\n        android:layout_above=\"@id/media_actions\"\n        android:id=\"@+id/action_divider\"\n        android:background=\"?android:attr/dividerHorizontal\" />\n</RelativeLayout>\n<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/layout/notification_template_big_media_narrow.xml --><!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/notification_template_big_media_narrow.xml -->"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/layout/notification_template_lines.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!--\n  ~ Copyright (C) 2015 The Android Open Source Project\n  ~\n  ~ Licensed under the Apache License, Version 2.0 (the \"License\");\n  ~ you may not use this file except in compliance with the License.\n  ~ You may obtain a copy of the License at\n  ~\n  ~      http://www.apache.org/licenses/LICENSE-2.0\n  ~\n  ~ Unless required by applicable law or agreed to in writing, software\n  ~ distributed under the License is distributed on an \"AS IS\" BASIS,\n  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n  ~ See the License for the specific language governing permissions and\n  ~ limitations under the License\n  -->\n\n<LinearLayout xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:layout_width=\"wrap_content\"\n    android:layout_height=\"wrap_content\"\n    android:orientation=\"vertical\"\n    android:paddingRight=\"8dp\"\n    android:paddingEnd=\"8dp\"\n    android:paddingTop=\"2dp\"\n    android:paddingBottom=\"2dp\"\n    >\n    <LinearLayout\n        android:id=\"@+id/line1\"\n        android:layout_width=\"fill_parent\"\n        android:layout_height=\"wrap_content\"\n        android:paddingTop=\"6dp\"\n        android:layout_marginLeft=\"8dp\"\n        android:layout_marginStart=\"8dp\"\n        android:orientation=\"horizontal\"\n        >\n        <TextView android:id=\"@+id/title\"\n            android:textAppearance=\"@style/TextAppearance.StatusBar.EventContent.Title\"\n            android:layout_width=\"fill_parent\"\n            android:layout_height=\"wrap_content\"\n            android:singleLine=\"true\"\n            android:ellipsize=\"marquee\"\n            android:fadingEdge=\"horizontal\"\n            android:layout_weight=\"1\"\n            />\n        <include\n            layout=\"@layout/notification_template_part_time\"\n            android:id=\"@+id/time\"\n            android:layout_width=\"wrap_content\"\n            android:layout_height=\"wrap_content\"\n            android:layout_gravity=\"center\"\n            android:layout_weight=\"0\"\n            android:visibility=\"gone\"\n            />\n        <include\n            layout=\"@layout/notification_template_part_chronometer\"\n            android:id=\"@+id/chronometer\"\n            android:layout_width=\"wrap_content\"\n            android:layout_height=\"wrap_content\"\n            android:layout_gravity=\"center\"\n            android:layout_weight=\"0\"\n            android:visibility=\"gone\"\n            />\n    </LinearLayout>\n    <TextView android:id=\"@+id/text2\"\n        android:textAppearance=\"@style/TextAppearance.StatusBar.EventContent.Line2\"\n        android:layout_width=\"fill_parent\"\n        android:layout_height=\"wrap_content\"\n        android:layout_marginTop=\"-2dp\"\n        android:layout_marginBottom=\"-2dp\"\n        android:layout_marginLeft=\"8dp\"\n        android:layout_marginStart=\"8dp\"\n        android:singleLine=\"true\"\n        android:fadingEdge=\"horizontal\"\n        android:ellipsize=\"marquee\"\n        android:visibility=\"gone\"\n        />\n    <LinearLayout\n        android:id=\"@+id/line3\"\n        android:layout_width=\"fill_parent\"\n        android:layout_height=\"wrap_content\"\n        android:orientation=\"horizontal\"\n        android:gravity=\"center_vertical\"\n        android:layout_marginLeft=\"8dp\"\n        android:layout_marginStart=\"8dp\"\n        >\n        <TextView android:id=\"@+id/text\"\n            android:textAppearance=\"@style/TextAppearance.StatusBar.EventContent\"\n            android:layout_width=\"0dp\"\n            android:layout_height=\"wrap_content\"\n            android:layout_weight=\"1\"\n            android:layout_gravity=\"center\"\n            android:singleLine=\"true\"\n            android:ellipsize=\"marquee\"\n            android:fadingEdge=\"horizontal\"\n            />\n        <TextView android:id=\"@+id/info\"\n            android:textAppearance=\"@style/TextAppearance.StatusBar.EventContent.Info\"\n            android:layout_width=\"wrap_content\"\n            android:layout_height=\"wrap_content\"\n            android:layout_gravity=\"center\"\n            android:layout_weight=\"0\"\n            android:singleLine=\"true\"\n            android:gravity=\"center\"\n            android:paddingLeft=\"8dp\"\n            android:paddingStart=\"8dp\"\n            />\n    </LinearLayout>\n</LinearLayout><!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/layout/notification_template_lines.xml --><!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/notification_template_lines.xml -->"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/layout/notification_template_media.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!--\n  ~ Copyright (C) 2015 The Android Open Source Project\n  ~\n  ~ Licensed under the Apache License, Version 2.0 (the \"License\");\n  ~ you may not use this file except in compliance with the License.\n  ~ You may obtain a copy of the License at\n  ~\n  ~      http://www.apache.org/licenses/LICENSE-2.0\n  ~\n  ~ Unless required by applicable law or agreed to in writing, software\n  ~ distributed under the License is distributed on an \"AS IS\" BASIS,\n  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n  ~ See the License for the specific language governing permissions and\n  ~ limitations under the License\n  -->\n\n<LinearLayout xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:id=\"@+id/status_bar_latest_event_content\"\n    android:layout_width=\"match_parent\"\n    android:layout_height=\"64dp\"\n    android:orientation=\"horizontal\"\n    >\n    <ImageView android:id=\"@+id/icon\"\n        android:layout_width=\"@dimen/notification_large_icon_width\"\n        android:layout_height=\"@dimen/notification_large_icon_width\"\n        android:scaleType=\"centerCrop\"\n        />\n    <include layout=\"@layout/notification_template_lines\"\n        android:layout_width=\"0dp\"\n        android:layout_height=\"wrap_content\"\n        android:layout_weight=\"1\"/>\n    <LinearLayout\n        android:id=\"@+id/media_actions\"\n        android:layout_width=\"wrap_content\"\n        android:layout_height=\"match_parent\"\n        android:layout_gravity=\"center_vertical|end\"\n        android:orientation=\"horizontal\"\n        android:layoutDirection=\"ltr\"\n        >\n        <!-- media buttons will be added here -->\n    </LinearLayout>\n    <include layout=\"@layout/notification_media_cancel_action\"\n        android:layout_width=\"48dp\"\n        android:layout_height=\"match_parent\"\n        android:layout_marginRight=\"6dp\"\n        android:layout_marginEnd=\"6dp\"/>\n    <ImageView android:id=\"@+id/end_padder\"\n        android:layout_width=\"6dp\"\n        android:layout_height=\"match_parent\"\n        />\n</LinearLayout>\n<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/layout/notification_template_media.xml --><!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/notification_template_media.xml -->"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/layout/notification_template_part_chronometer.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!--\n  ~ Copyright (C) 2015 The Android Open Source Project\n  ~\n  ~ Licensed under the Apache License, Version 2.0 (the \"License\");\n  ~ you may not use this file except in compliance with the License.\n  ~ You may obtain a copy of the License at\n  ~\n  ~      http://www.apache.org/licenses/LICENSE-2.0\n  ~\n  ~ Unless required by applicable law or agreed to in writing, software\n  ~ distributed under the License is distributed on an \"AS IS\" BASIS,\n  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n  ~ See the License for the specific language governing permissions and\n  ~ limitations under the License\n  -->\n\n<Chronometer android:id=\"@+id/chronometer\" xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:textAppearance=\"@style/TextAppearance.StatusBar.EventContent.Time\"\n    android:layout_width=\"wrap_content\"\n    android:layout_height=\"wrap_content\"\n    android:layout_gravity=\"center\"\n    android:layout_weight=\"0\"\n    android:singleLine=\"true\"\n    android:gravity=\"center\"\n    android:paddingLeft=\"8dp\"\n    android:paddingStart=\"8dp\"\n    />\n<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/layout/notification_template_part_chronometer.xml --><!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/notification_template_part_chronometer.xml -->"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/layout/notification_template_part_time.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!--\n  ~ Copyright (C) 2015 The Android Open Source Project\n  ~\n  ~ Licensed under the Apache License, Version 2.0 (the \"License\");\n  ~ you may not use this file except in compliance with the License.\n  ~ You may obtain a copy of the License at\n  ~\n  ~      http://www.apache.org/licenses/LICENSE-2.0\n  ~\n  ~ Unless required by applicable law or agreed to in writing, software\n  ~ distributed under the License is distributed on an \"AS IS\" BASIS,\n  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n  ~ See the License for the specific language governing permissions and\n  ~ limitations under the License\n  -->\n\n<DateTimeView android:id=\"@+id/time\" xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:textAppearance=\"@style/TextAppearance.StatusBar.EventContent.Time\"\n    android:layout_width=\"wrap_content\"\n    android:layout_height=\"wrap_content\"\n    android:layout_gravity=\"center\"\n    android:layout_weight=\"0\"\n    android:singleLine=\"true\"\n    android:gravity=\"center\"\n    android:paddingLeft=\"8dp\"\n    android:paddingStart=\"8dp\"\n    />\n<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/layout/notification_template_part_time.xml --><!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/notification_template_part_time.xml -->"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/layout/redbox_item_frame.xml",
    "content": "<LinearLayout xmlns:android=\"http://schemas.android.com/apk/res/android\"\n  android:layout_width=\"match_parent\"\n  android:layout_height=\"match_parent\"\n  android:orientation=\"vertical\"\n  android:paddingTop=\"8dp\"\n  android:paddingBottom=\"8dp\"\n  android:paddingLeft=\"16dp\"\n  android:paddingRight=\"16dp\"\n    >\n  <TextView\n    android:id=\"@+id/rn_frame_method\"\n    android:layout_width=\"match_parent\"\n    android:layout_height=\"wrap_content\"\n    android:textColor=\"@android:color/white\"\n    android:textSize=\"14sp\"\n    android:fontFamily=\"monospace\"\n    />\n  <TextView\n    android:id=\"@+id/rn_frame_file\"\n    android:layout_width=\"match_parent\"\n    android:layout_height=\"wrap_content\"\n    android:textColor=\"#E6B8B8\"\n    android:textSize=\"12sp\"\n    android:fontFamily=\"monospace\"\n    />\n</LinearLayout>\n<!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/layout/redbox_item_frame.xml -->"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/layout/redbox_item_title.xml",
    "content": "<TextView xmlns:android=\"http://schemas.android.com/apk/res/android\"\n  android:id=\"@+id/catalyst_redbox_title\"\n  android:layout_width=\"match_parent\"\n  android:layout_height=\"wrap_content\"\n  android:padding=\"16dp\"\n  android:gravity=\"center_vertical\"\n  android:textColor=\"@android:color/white\"\n  android:textSize=\"16sp\"\n  android:textStyle=\"bold\"\n  />\n<!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/layout/redbox_item_title.xml -->"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/layout/redbox_view.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<LinearLayout xmlns:android=\"http://schemas.android.com/apk/res/android\"\n  android:layout_width=\"match_parent\"\n  android:layout_height=\"match_parent\"\n  android:orientation=\"vertical\"\n  android:background=\"#E80000\"\n  >\n  <ListView\n    android:id=\"@+id/rn_redbox_stack\"\n    android:layout_width=\"match_parent\"\n    android:layout_height=\"0dp\"\n    android:layout_weight=\"1\"\n    />\n  <Button\n    android:id=\"@+id/rn_redbox_reloadjs\"\n    android:layout_width=\"match_parent\"\n    android:layout_height=\"wrap_content\"\n    android:layout_margin=\"8dp\"\n    android:text=\"@string/catalyst_reloadjs\"\n    />\n</LinearLayout>\n<!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/layout/redbox_view.xml -->"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/layout/select_dialog_item_material.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!--\n     Copyright (C) 2014 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<!--\n    This layout file is used by the AlertDialog when displaying a list of items.\n    This layout file is inflated and used as the TextView to display individual\n    items.\n-->\n<TextView xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:id=\"@android:id/text1\"\n    android:layout_width=\"match_parent\"\n    android:layout_height=\"wrap_content\"\n    android:minHeight=\"?attr/listPreferredItemHeightSmall\"\n    android:textAppearance=\"?attr/textAppearanceListItemSmall\"\n    android:textColor=\"?attr/textColorAlertDialogListItem\"\n    android:gravity=\"center_vertical\"\n    android:paddingLeft=\"?attr/listPreferredItemPaddingLeft\"\n    android:paddingRight=\"?attr/listPreferredItemPaddingRight\"\n    android:ellipsize=\"marquee\" />\n<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/layout/select_dialog_item_material.xml --><!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/select_dialog_item_material.xml -->"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/layout/select_dialog_multichoice_material.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!--\n     Copyright (C) 2014 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<CheckedTextView xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:id=\"@android:id/text1\"\n    android:layout_width=\"match_parent\"\n    android:layout_height=\"wrap_content\"\n    android:minHeight=\"?attr/listPreferredItemHeightSmall\"\n    android:textAppearance=\"?android:attr/textAppearanceMedium\"\n    android:textColor=\"?attr/textColorAlertDialogListItem\"\n    android:gravity=\"center_vertical\"\n    android:paddingLeft=\"?attr/dialogPreferredPadding\"\n    android:paddingRight=\"?attr/dialogPreferredPadding\"\n    android:checkMark=\"?android:attr/listChoiceIndicatorMultiple\"\n    android:ellipsize=\"marquee\" />\n<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/layout/select_dialog_multichoice_material.xml --><!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/select_dialog_multichoice_material.xml -->"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/layout/select_dialog_singlechoice_material.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!--\n     Copyright (C) 2014 The Android Open Source Project\n\n     Licensed under the Apache License, Version 2.0 (the \"License\");\n     you may not use this file except in compliance with the License.\n     You may obtain a copy of the License at\n\n          http://www.apache.org/licenses/LICENSE-2.0\n\n     Unless required by applicable law or agreed to in writing, software\n     distributed under the License is distributed on an \"AS IS\" BASIS,\n     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n     See the License for the specific language governing permissions and\n     limitations under the License.\n-->\n\n<CheckedTextView xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:id=\"@android:id/text1\"\n    android:layout_width=\"match_parent\"\n    android:layout_height=\"wrap_content\"\n    android:minHeight=\"?attr/listPreferredItemHeightSmall\"\n    android:textAppearance=\"?android:attr/textAppearanceMedium\"\n    android:textColor=\"?attr/textColorAlertDialogListItem\"\n    android:gravity=\"center_vertical\"\n    android:paddingLeft=\"?attr/dialogPreferredPadding\"\n    android:paddingRight=\"?attr/dialogPreferredPadding\"\n    android:checkMark=\"?android:attr/listChoiceIndicatorSingle\"\n    android:ellipsize=\"marquee\" />\n<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/layout/select_dialog_singlechoice_material.xml --><!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/select_dialog_singlechoice_material.xml -->"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/layout/support_simple_spinner_dropdown_item.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!--\n**\n** Copyright 2008, The Android Open Source Project\n**\n** Licensed under the Apache License, Version 2.0 (the \"License\"); \n** you may not use this file except in compliance with the License. \n** You may obtain a copy of the License at \n**\n**     http://www.apache.org/licenses/LICENSE-2.0 \n**\n** Unless required by applicable law or agreed to in writing, software \n** distributed under the License is distributed on an \"AS IS\" BASIS, \n** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. \n** See the License for the specific language governing permissions and \n** limitations under the License.\n*/\n-->\n<TextView xmlns:android=\"http://schemas.android.com/apk/res/android\"\n          android:id=\"@android:id/text1\"\n          style=\"?attr/spinnerDropDownItemStyle\"\n          android:singleLine=\"true\"\n          android:layout_width=\"match_parent\"\n          android:layout_height=\"?attr/dropdownListPreferredItemHeight\"\n          android:ellipsize=\"marquee\"/><!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-sdk-release/frameworks/support/v7/appcompat/res/layout/support_simple_spinner_dropdown_item.xml --><!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/layout/support_simple_spinner_dropdown_item.xml -->"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/values/values.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml -->\n    <eat-comment/>\n    <attr format=\"reference\" name=\"drawerArrowStyle\"/>\n    <attr format=\"dimension\" name=\"height\"/>\n    <attr format=\"boolean\" name=\"isLightTheme\"/>\n    <attr format=\"string\" name=\"title\"/>\n    <bool name=\"abc_action_bar_embed_tabs\">true</bool>\n    <bool name=\"abc_action_bar_embed_tabs_pre_jb\">false</bool>\n    <bool name=\"abc_action_bar_expanded_action_views_exclusive\">true</bool>\n    <bool name=\"abc_config_actionMenuItemAllCaps\">true</bool>\n    <bool name=\"abc_config_allowActionMenuItemTextWithIcon\">false</bool>\n    <bool name=\"abc_config_closeDialogWhenTouchOutside\">true</bool>\n    <bool name=\"abc_config_showMenuShortcutsWhenKeyboardPresent\">false</bool>\n    <color name=\"abc_input_method_navigation_guard\">@android:color/black</color>\n    <color name=\"abc_search_url_text_normal\">#7fa87f</color>\n    <color name=\"abc_search_url_text_pressed\">@android:color/black</color>\n    <color name=\"abc_search_url_text_selected\">@android:color/black</color>\n    <color name=\"accent_material_dark\">@color/material_deep_teal_200</color>\n    <color name=\"accent_material_light\">@color/material_deep_teal_500</color>\n    <color name=\"background_floating_material_dark\">@color/material_grey_800</color>\n    <color name=\"background_floating_material_light\">@android:color/white</color>\n    <color name=\"background_material_dark\">@color/material_grey_850</color>\n    <color name=\"background_material_light\">@color/material_grey_50</color>\n    <color name=\"bright_foreground_disabled_material_dark\">#80ffffff</color>\n    <color name=\"bright_foreground_disabled_material_light\">#80000000</color>\n    <color name=\"bright_foreground_inverse_material_dark\">@color/bright_foreground_material_light</color>\n    <color name=\"bright_foreground_inverse_material_light\">@color/bright_foreground_material_dark</color>\n    <color name=\"bright_foreground_material_dark\">@android:color/white</color>\n    <color name=\"bright_foreground_material_light\">@android:color/black</color>\n    <color name=\"button_material_dark\">#ff5a595b</color>\n    <color name=\"button_material_light\">#ffd6d7d7</color>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/values/values.xml -->\n    <eat-comment/>\n    <color name=\"catalyst_redbox_background\">#eecc0000</color>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml -->\n    <eat-comment/>\n    <color name=\"dim_foreground_disabled_material_dark\">#80bebebe</color>\n    <color name=\"dim_foreground_disabled_material_light\">#80323232</color>\n    <color name=\"dim_foreground_material_dark\">#ffbebebe</color>\n    <color name=\"dim_foreground_material_light\">#ff323232</color>\n    <color name=\"foreground_material_dark\">@android:color/white</color>\n    <color name=\"foreground_material_light\">@android:color/black</color>\n    <color name=\"highlighted_text_material_dark\">#6680cbc4</color>\n    <color name=\"highlighted_text_material_light\">#66009688</color>\n    <color name=\"hint_foreground_material_dark\">@color/bright_foreground_disabled_material_dark</color>\n    <color name=\"hint_foreground_material_light\">@color/bright_foreground_disabled_material_light</color>\n    <color name=\"material_blue_grey_800\">#ff37474f</color>\n    <color name=\"material_blue_grey_900\">#ff263238</color>\n    <color name=\"material_blue_grey_950\">#ff21272b</color>\n    <color name=\"material_deep_teal_200\">#ff80cbc4</color>\n    <color name=\"material_deep_teal_500\">#ff009688</color>\n    <color name=\"material_grey_100\">#fff5f5f5</color>\n    <color name=\"material_grey_300\">#ffe0e0e0</color>\n    <color name=\"material_grey_50\">#fffafafa</color>\n    <color name=\"material_grey_600\">#ff757575</color>\n    <color name=\"material_grey_800\">#ff424242</color>\n    <color name=\"material_grey_850\">#ff303030</color>\n    <color name=\"material_grey_900\">#ff212121</color>\n    <color name=\"primary_dark_material_dark\">@android:color/black</color>\n    <color name=\"primary_dark_material_light\">@color/material_grey_600</color>\n    <color name=\"primary_material_dark\">@color/material_grey_900</color>\n    <color name=\"primary_material_light\">@color/material_grey_100</color>\n    <color name=\"primary_text_default_material_dark\">#ffffffff</color>\n    <color name=\"primary_text_default_material_light\">#de000000</color>\n    <color name=\"primary_text_disabled_material_dark\">#4Dffffff</color>\n    <color name=\"primary_text_disabled_material_light\">#39000000</color>\n    <color name=\"ripple_material_dark\">#42ffffff</color>\n    <color name=\"ripple_material_light\">#1f000000</color>\n    <color name=\"secondary_text_default_material_dark\">#b3ffffff</color>\n    <color name=\"secondary_text_default_material_light\">#8a000000</color>\n    <color name=\"secondary_text_disabled_material_dark\">#36ffffff</color>\n    <color name=\"secondary_text_disabled_material_light\">#24000000</color>\n    <color name=\"switch_thumb_disabled_material_dark\">#ff616161</color>\n    <color name=\"switch_thumb_disabled_material_light\">#ffbdbdbd</color>\n    <color name=\"switch_thumb_normal_material_dark\">#ffbdbdbd</color>\n    <color name=\"switch_thumb_normal_material_light\">#fff1f1f1</color>\n    <declare-styleable name=\"ActionBar\"><attr name=\"navigationMode\"><enum name=\"normal\" value=\"0\"/><enum name=\"listMode\" value=\"1\"/><enum name=\"tabMode\" value=\"2\"/></attr><attr name=\"displayOptions\"><flag name=\"none\" value=\"0\"/><flag name=\"useLogo\" value=\"0x1\"/><flag name=\"showHome\" value=\"0x2\"/><flag name=\"homeAsUp\" value=\"0x4\"/><flag name=\"showTitle\" value=\"0x8\"/><flag name=\"showCustom\" value=\"0x10\"/><flag name=\"disableHome\" value=\"0x20\"/></attr><attr name=\"title\"/><attr format=\"string\" name=\"subtitle\"/><attr format=\"reference\" name=\"titleTextStyle\"/><attr format=\"reference\" name=\"subtitleTextStyle\"/><attr format=\"reference\" name=\"icon\"/><attr format=\"reference\" name=\"logo\"/><attr format=\"reference\" name=\"divider\"/><attr format=\"reference\" name=\"background\"/><attr format=\"reference|color\" name=\"backgroundStacked\"/><attr format=\"reference|color\" name=\"backgroundSplit\"/><attr format=\"reference\" name=\"customNavigationLayout\"/><attr name=\"height\"/><attr format=\"reference\" name=\"homeLayout\"/><attr format=\"reference\" name=\"progressBarStyle\"/><attr format=\"reference\" name=\"indeterminateProgressStyle\"/><attr format=\"dimension\" name=\"progressBarPadding\"/><attr name=\"homeAsUpIndicator\"/><attr format=\"dimension\" name=\"itemPadding\"/><attr format=\"boolean\" name=\"hideOnContentScroll\"/><attr format=\"dimension\" name=\"contentInsetStart\"/><attr format=\"dimension\" name=\"contentInsetEnd\"/><attr format=\"dimension\" name=\"contentInsetLeft\"/><attr format=\"dimension\" name=\"contentInsetRight\"/><attr format=\"dimension\" name=\"elevation\"/><attr format=\"reference\" name=\"popupTheme\"/></declare-styleable>\n    <declare-styleable name=\"ActionBarLayout\"><attr name=\"android:layout_gravity\"/></declare-styleable>\n    <declare-styleable name=\"ActionMenuItemView\"><attr name=\"android:minWidth\"/></declare-styleable>\n    <declare-styleable name=\"ActionMenuView\"/>\n    <declare-styleable name=\"ActionMode\"><attr name=\"titleTextStyle\"/><attr name=\"subtitleTextStyle\"/><attr name=\"background\"/><attr name=\"backgroundSplit\"/><attr name=\"height\"/><attr format=\"reference\" name=\"closeItemLayout\"/></declare-styleable>\n    <declare-styleable name=\"ActivityChooserView\"><attr format=\"string\" name=\"initialActivityCount\"/><attr format=\"reference\" name=\"expandActivityOverflowButtonDrawable\"/></declare-styleable>\n    <declare-styleable name=\"AlertDialog\"><attr name=\"android:layout\"/><attr format=\"reference\" name=\"buttonPanelSideLayout\"/><attr format=\"reference\" name=\"listLayout\"/><attr format=\"reference\" name=\"multiChoiceItemLayout\"/><attr format=\"reference\" name=\"singleChoiceItemLayout\"/><attr format=\"reference\" name=\"listItemLayout\"/></declare-styleable>\n    <declare-styleable name=\"AppCompatTextView\"><attr format=\"reference|boolean\" name=\"textAllCaps\"/><attr name=\"android:textAppearance\"/></declare-styleable>\n    <declare-styleable name=\"CompoundButton\"><attr name=\"android:button\"/><attr format=\"color\" name=\"buttonTint\"/><attr name=\"buttonTintMode\"><enum name=\"src_over\" value=\"3\"/><enum name=\"src_in\" value=\"5\"/><enum name=\"src_atop\" value=\"9\"/><enum name=\"multiply\" value=\"14\"/><enum name=\"screen\" value=\"15\"/></attr></declare-styleable>\n    <declare-styleable name=\"DrawerArrowToggle\"><attr format=\"color\" name=\"color\"/><attr format=\"boolean\" name=\"spinBars\"/><attr format=\"dimension\" name=\"drawableSize\"/><attr format=\"dimension\" name=\"gapBetweenBars\"/><attr format=\"dimension\" name=\"arrowHeadLength\"/><attr format=\"dimension\" name=\"arrowShaftLength\"/><attr format=\"dimension\" name=\"barLength\"/><attr format=\"dimension\" name=\"thickness\"/></declare-styleable>\n    <declare-styleable name=\"GenericDraweeView\"><attr format=\"integer\" name=\"fadeDuration\"/><attr format=\"float\" name=\"viewAspectRatio\"/><attr format=\"reference\" name=\"placeholderImage\"/><attr name=\"placeholderImageScaleType\"><enum name=\"none\" value=\"-1\"/><enum name=\"fitXY\" value=\"0\"/><enum name=\"fitStart\" value=\"1\"/><enum name=\"fitCenter\" value=\"2\"/><enum name=\"fitEnd\" value=\"3\"/><enum name=\"center\" value=\"4\"/><enum name=\"centerInside\" value=\"5\"/><enum name=\"centerCrop\" value=\"6\"/><enum name=\"focusCrop\" value=\"7\"/></attr><attr format=\"reference\" name=\"retryImage\"/><attr name=\"retryImageScaleType\"><enum name=\"none\" value=\"-1\"/><enum name=\"fitXY\" value=\"0\"/><enum name=\"fitStart\" value=\"1\"/><enum name=\"fitCenter\" value=\"2\"/><enum name=\"fitEnd\" value=\"3\"/><enum name=\"center\" value=\"4\"/><enum name=\"centerInside\" value=\"5\"/><enum name=\"centerCrop\" value=\"6\"/><enum name=\"focusCrop\" value=\"7\"/></attr><attr format=\"reference\" name=\"failureImage\"/><attr name=\"failureImageScaleType\"><enum name=\"none\" value=\"-1\"/><enum name=\"fitXY\" value=\"0\"/><enum name=\"fitStart\" value=\"1\"/><enum name=\"fitCenter\" value=\"2\"/><enum name=\"fitEnd\" value=\"3\"/><enum name=\"center\" value=\"4\"/><enum name=\"centerInside\" value=\"5\"/><enum name=\"centerCrop\" value=\"6\"/><enum name=\"focusCrop\" value=\"7\"/></attr><attr format=\"reference\" name=\"progressBarImage\"/><attr name=\"progressBarImageScaleType\"><enum name=\"none\" value=\"-1\"/><enum name=\"fitXY\" value=\"0\"/><enum name=\"fitStart\" value=\"1\"/><enum name=\"fitCenter\" value=\"2\"/><enum name=\"fitEnd\" value=\"3\"/><enum name=\"center\" value=\"4\"/><enum name=\"centerInside\" value=\"5\"/><enum name=\"centerCrop\" value=\"6\"/><enum name=\"focusCrop\" value=\"7\"/></attr><attr format=\"integer\" name=\"progressBarAutoRotateInterval\"/><attr name=\"actualImageScaleType\"><enum name=\"none\" value=\"-1\"/><enum name=\"fitXY\" value=\"0\"/><enum name=\"fitStart\" value=\"1\"/><enum name=\"fitCenter\" value=\"2\"/><enum name=\"fitEnd\" value=\"3\"/><enum name=\"center\" value=\"4\"/><enum name=\"centerInside\" value=\"5\"/><enum name=\"centerCrop\" value=\"6\"/><enum name=\"focusCrop\" value=\"7\"/></attr><attr format=\"reference\" name=\"backgroundImage\"/><attr format=\"reference\" name=\"overlayImage\"/><attr format=\"reference\" name=\"pressedStateOverlayImage\"/><attr format=\"boolean\" name=\"roundAsCircle\"/><attr format=\"dimension\" name=\"roundedCornerRadius\"/><attr format=\"boolean\" name=\"roundTopLeft\"/><attr format=\"boolean\" name=\"roundTopRight\"/><attr format=\"boolean\" name=\"roundBottomRight\"/><attr format=\"boolean\" name=\"roundBottomLeft\"/><attr format=\"color\" name=\"roundWithOverlayColor\"/><attr format=\"dimension\" name=\"roundingBorderWidth\"/><attr format=\"color\" name=\"roundingBorderColor\"/></declare-styleable>\n    <declare-styleable name=\"LinearLayoutCompat\"><attr name=\"android:orientation\"/><attr name=\"android:gravity\"/><attr name=\"android:baselineAligned\"/><attr name=\"android:baselineAlignedChildIndex\"/><attr name=\"android:weightSum\"/><attr format=\"boolean\" name=\"measureWithLargestChild\"/><attr name=\"divider\"/><attr name=\"showDividers\"><flag name=\"none\" value=\"0\"/><flag name=\"beginning\" value=\"1\"/><flag name=\"middle\" value=\"2\"/><flag name=\"end\" value=\"4\"/></attr><attr format=\"dimension\" name=\"dividerPadding\"/></declare-styleable>\n    <declare-styleable name=\"LinearLayoutCompat_Layout\"><attr name=\"android:layout_width\"/><attr name=\"android:layout_height\"/><attr name=\"android:layout_weight\"/><attr name=\"android:layout_gravity\"/></declare-styleable>\n    <declare-styleable name=\"ListPopupWindow\"><attr name=\"android:dropDownVerticalOffset\"/><attr name=\"android:dropDownHorizontalOffset\"/></declare-styleable>\n    <declare-styleable name=\"MenuGroup\"><attr name=\"android:id\"/><attr name=\"android:menuCategory\"/><attr name=\"android:orderInCategory\"/><attr name=\"android:checkableBehavior\"/><attr name=\"android:visible\"/><attr name=\"android:enabled\"/></declare-styleable>\n    <declare-styleable name=\"MenuItem\"><attr name=\"android:id\"/><attr name=\"android:menuCategory\"/><attr name=\"android:orderInCategory\"/><attr name=\"android:title\"/><attr name=\"android:titleCondensed\"/><attr name=\"android:icon\"/><attr name=\"android:alphabeticShortcut\"/><attr name=\"android:numericShortcut\"/><attr name=\"android:checkable\"/><attr name=\"android:checked\"/><attr name=\"android:visible\"/><attr name=\"android:enabled\"/><attr name=\"android:onClick\"/><attr name=\"showAsAction\"><flag name=\"never\" value=\"0\"/><flag name=\"ifRoom\" value=\"1\"/><flag name=\"always\" value=\"2\"/><flag name=\"withText\" value=\"4\"/><flag name=\"collapseActionView\" value=\"8\"/></attr><attr format=\"reference\" name=\"actionLayout\"/><attr format=\"string\" name=\"actionViewClass\"/><attr format=\"string\" name=\"actionProviderClass\"/></declare-styleable>\n    <declare-styleable name=\"MenuView\"><attr name=\"android:itemTextAppearance\"/><attr name=\"android:horizontalDivider\"/><attr name=\"android:verticalDivider\"/><attr name=\"android:headerBackground\"/><attr name=\"android:itemBackground\"/><attr name=\"android:windowAnimationStyle\"/><attr name=\"android:itemIconDisabledAlpha\"/><attr format=\"boolean\" name=\"preserveIconSpacing\"/></declare-styleable>\n    <declare-styleable name=\"PopupWindow\"><attr format=\"boolean\" name=\"overlapAnchor\"/><attr name=\"android:popupBackground\"/></declare-styleable>\n    <declare-styleable name=\"PopupWindowBackgroundState\"><attr format=\"boolean\" name=\"state_above_anchor\"/></declare-styleable>\n    <declare-styleable name=\"RecyclerView\"><attr format=\"string\" name=\"layoutManager\"/><attr name=\"android:orientation\"/><attr format=\"integer\" name=\"spanCount\"/><attr format=\"boolean\" name=\"reverseLayout\"/><attr format=\"boolean\" name=\"stackFromEnd\"/></declare-styleable>\n    <declare-styleable name=\"SearchView\"><attr format=\"reference\" name=\"layout\"/><attr format=\"boolean\" name=\"iconifiedByDefault\"/><attr name=\"android:maxWidth\"/><attr format=\"string\" name=\"queryHint\"/><attr format=\"string\" name=\"defaultQueryHint\"/><attr name=\"android:imeOptions\"/><attr name=\"android:inputType\"/><attr format=\"reference\" name=\"closeIcon\"/><attr format=\"reference\" name=\"goIcon\"/><attr format=\"reference\" name=\"searchIcon\"/><attr format=\"reference\" name=\"searchHintIcon\"/><attr format=\"reference\" name=\"voiceIcon\"/><attr format=\"reference\" name=\"commitIcon\"/><attr format=\"reference\" name=\"suggestionRowLayout\"/><attr format=\"reference\" name=\"queryBackground\"/><attr format=\"reference\" name=\"submitBackground\"/><attr name=\"android:focusable\"/></declare-styleable>\n    <declare-styleable name=\"Spinner\"><attr name=\"android:prompt\"/><attr name=\"popupTheme\"/><attr name=\"android:popupBackground\"/><attr name=\"android:dropDownWidth\"/></declare-styleable>\n    <declare-styleable name=\"SwitchCompat\"><attr name=\"android:thumb\"/><attr format=\"reference\" name=\"track\"/><attr name=\"android:textOn\"/><attr name=\"android:textOff\"/><attr format=\"dimension\" name=\"thumbTextPadding\"/><attr format=\"reference\" name=\"switchTextAppearance\"/><attr format=\"dimension\" name=\"switchMinWidth\"/><attr format=\"dimension\" name=\"switchPadding\"/><attr format=\"boolean\" name=\"splitTrack\"/><attr format=\"boolean\" name=\"showText\"/></declare-styleable>\n    <declare-styleable name=\"TextAppearance\"><attr name=\"android:textSize\"/><attr name=\"android:textColor\"/><attr name=\"android:textStyle\"/><attr name=\"android:typeface\"/><attr name=\"textAllCaps\"/></declare-styleable>\n    <declare-styleable name=\"Theme\"><attr format=\"boolean\" name=\"windowActionBar\"/><attr format=\"boolean\" name=\"windowNoTitle\"/><attr format=\"boolean\" name=\"windowActionBarOverlay\"/><attr format=\"boolean\" name=\"windowActionModeOverlay\"/><attr format=\"dimension|fraction\" name=\"windowFixedWidthMajor\"/><attr format=\"dimension|fraction\" name=\"windowFixedHeightMinor\"/><attr format=\"dimension|fraction\" name=\"windowFixedWidthMinor\"/><attr format=\"dimension|fraction\" name=\"windowFixedHeightMajor\"/><attr format=\"dimension|fraction\" name=\"windowMinWidthMajor\"/><attr format=\"dimension|fraction\" name=\"windowMinWidthMinor\"/><attr name=\"android:windowIsFloating\"/><attr name=\"android:windowAnimationStyle\"/><attr format=\"reference\" name=\"actionBarTabStyle\"/><attr format=\"reference\" name=\"actionBarTabBarStyle\"/><attr format=\"reference\" name=\"actionBarTabTextStyle\"/><attr format=\"reference\" name=\"actionOverflowButtonStyle\"/><attr format=\"reference\" name=\"actionOverflowMenuStyle\"/><attr format=\"reference\" name=\"actionBarPopupTheme\"/><attr format=\"reference\" name=\"actionBarStyle\"/><attr format=\"reference\" name=\"actionBarSplitStyle\"/><attr format=\"reference\" name=\"actionBarTheme\"/><attr format=\"reference\" name=\"actionBarWidgetTheme\"/><attr format=\"dimension\" name=\"actionBarSize\"><enum name=\"wrap_content\" value=\"0\"/></attr><attr format=\"reference\" name=\"actionBarDivider\"/><attr format=\"reference\" name=\"actionBarItemBackground\"/><attr format=\"reference\" name=\"actionMenuTextAppearance\"/><attr format=\"color|reference\" name=\"actionMenuTextColor\"/><attr format=\"reference\" name=\"actionModeStyle\"/><attr format=\"reference\" name=\"actionModeCloseButtonStyle\"/><attr format=\"reference\" name=\"actionModeBackground\"/><attr format=\"reference\" name=\"actionModeSplitBackground\"/><attr format=\"reference\" name=\"actionModeCloseDrawable\"/><attr format=\"reference\" name=\"actionModeCutDrawable\"/><attr format=\"reference\" name=\"actionModeCopyDrawable\"/><attr format=\"reference\" name=\"actionModePasteDrawable\"/><attr format=\"reference\" name=\"actionModeSelectAllDrawable\"/><attr format=\"reference\" name=\"actionModeShareDrawable\"/><attr format=\"reference\" name=\"actionModeFindDrawable\"/><attr format=\"reference\" name=\"actionModeWebSearchDrawable\"/><attr format=\"reference\" name=\"actionModePopupWindowStyle\"/><attr format=\"reference\" name=\"textAppearanceLargePopupMenu\"/><attr format=\"reference\" name=\"textAppearanceSmallPopupMenu\"/><attr format=\"reference\" name=\"dialogTheme\"/><attr format=\"dimension\" name=\"dialogPreferredPadding\"/><attr format=\"reference\" name=\"listDividerAlertDialog\"/><attr format=\"reference\" name=\"actionDropDownStyle\"/><attr format=\"dimension\" name=\"dropdownListPreferredItemHeight\"/><attr format=\"reference\" name=\"spinnerDropDownItemStyle\"/><attr format=\"reference\" name=\"homeAsUpIndicator\"/><attr format=\"reference\" name=\"actionButtonStyle\"/><attr format=\"reference\" name=\"buttonBarStyle\"/><attr format=\"reference\" name=\"buttonBarButtonStyle\"/><attr format=\"reference\" name=\"selectableItemBackground\"/><attr format=\"reference\" name=\"selectableItemBackgroundBorderless\"/><attr format=\"reference\" name=\"borderlessButtonStyle\"/><attr format=\"reference\" name=\"dividerVertical\"/><attr format=\"reference\" name=\"dividerHorizontal\"/><attr format=\"reference\" name=\"activityChooserViewStyle\"/><attr format=\"reference\" name=\"toolbarStyle\"/><attr format=\"reference\" name=\"toolbarNavigationButtonStyle\"/><attr format=\"reference\" name=\"popupMenuStyle\"/><attr format=\"reference\" name=\"popupWindowStyle\"/><attr format=\"reference|color\" name=\"editTextColor\"/><attr format=\"reference\" name=\"editTextBackground\"/><attr format=\"reference\" name=\"textAppearanceSearchResultTitle\"/><attr format=\"reference\" name=\"textAppearanceSearchResultSubtitle\"/><attr format=\"reference|color\" name=\"textColorSearchUrl\"/><attr format=\"reference\" name=\"searchViewStyle\"/><attr format=\"dimension\" name=\"listPreferredItemHeight\"/><attr format=\"dimension\" name=\"listPreferredItemHeightSmall\"/><attr format=\"dimension\" name=\"listPreferredItemHeightLarge\"/><attr format=\"dimension\" name=\"listPreferredItemPaddingLeft\"/><attr format=\"dimension\" name=\"listPreferredItemPaddingRight\"/><attr format=\"reference\" name=\"dropDownListViewStyle\"/><attr format=\"reference\" name=\"listPopupWindowStyle\"/><attr format=\"reference\" name=\"textAppearanceListItem\"/><attr format=\"reference\" name=\"textAppearanceListItemSmall\"/><attr format=\"reference\" name=\"panelBackground\"/><attr format=\"dimension\" name=\"panelMenuListWidth\"/><attr format=\"reference\" name=\"panelMenuListTheme\"/><attr format=\"reference\" name=\"listChoiceBackgroundIndicator\"/><attr format=\"color\" name=\"colorPrimary\"/><attr format=\"color\" name=\"colorPrimaryDark\"/><attr format=\"color\" name=\"colorAccent\"/><attr format=\"color\" name=\"colorControlNormal\"/><attr format=\"color\" name=\"colorControlActivated\"/><attr format=\"color\" name=\"colorControlHighlight\"/><attr format=\"color\" name=\"colorButtonNormal\"/><attr format=\"color\" name=\"colorSwitchThumbNormal\"/><attr format=\"reference\" name=\"controlBackground\"/><attr format=\"reference\" name=\"alertDialogStyle\"/><attr format=\"reference\" name=\"alertDialogButtonGroupStyle\"/><attr format=\"boolean\" name=\"alertDialogCenterButtons\"/><attr format=\"reference\" name=\"alertDialogTheme\"/><attr format=\"reference|color\" name=\"textColorAlertDialogListItem\"/><attr format=\"reference\" name=\"buttonBarPositiveButtonStyle\"/><attr format=\"reference\" name=\"buttonBarNegativeButtonStyle\"/><attr format=\"reference\" name=\"buttonBarNeutralButtonStyle\"/><attr format=\"reference\" name=\"autoCompleteTextViewStyle\"/><attr format=\"reference\" name=\"buttonStyle\"/><attr format=\"reference\" name=\"buttonStyleSmall\"/><attr format=\"reference\" name=\"checkboxStyle\"/><attr format=\"reference\" name=\"checkedTextViewStyle\"/><attr format=\"reference\" name=\"editTextStyle\"/><attr format=\"reference\" name=\"radioButtonStyle\"/><attr format=\"reference\" name=\"ratingBarStyle\"/><attr format=\"reference\" name=\"spinnerStyle\"/><attr format=\"reference\" name=\"switchStyle\"/></declare-styleable>\n    <declare-styleable name=\"Toolbar\"><attr format=\"reference\" name=\"titleTextAppearance\"/><attr format=\"reference\" name=\"subtitleTextAppearance\"/><attr name=\"title\"/><attr name=\"subtitle\"/><attr name=\"android:gravity\"/><attr format=\"dimension\" name=\"titleMargins\"/><attr format=\"dimension\" name=\"titleMarginStart\"/><attr format=\"dimension\" name=\"titleMarginEnd\"/><attr format=\"dimension\" name=\"titleMarginTop\"/><attr format=\"dimension\" name=\"titleMarginBottom\"/><attr name=\"contentInsetStart\"/><attr name=\"contentInsetEnd\"/><attr name=\"contentInsetLeft\"/><attr name=\"contentInsetRight\"/><attr format=\"dimension\" name=\"maxButtonHeight\"/><attr format=\"reference\" name=\"collapseIcon\"/><attr format=\"string\" name=\"collapseContentDescription\"/><attr name=\"popupTheme\"/><attr format=\"reference\" name=\"navigationIcon\"/><attr format=\"string\" name=\"navigationContentDescription\"/><attr name=\"android:minHeight\"/><attr name=\"logo\"/><attr format=\"string\" name=\"logoDescription\"/><attr format=\"color\" name=\"titleTextColor\"/><attr format=\"color\" name=\"subtitleTextColor\"/></declare-styleable>\n    <declare-styleable name=\"View\"><attr format=\"dimension\" name=\"paddingStart\"/><attr format=\"dimension\" name=\"paddingEnd\"/><attr name=\"android:focusable\"/><attr format=\"reference\" name=\"theme\"/><attr name=\"android:theme\"/></declare-styleable>\n    <declare-styleable name=\"ViewBackgroundHelper\"><attr name=\"android:background\"/><attr format=\"color\" name=\"backgroundTint\"/><attr name=\"backgroundTintMode\"><enum name=\"src_over\" value=\"3\"/><enum name=\"src_in\" value=\"5\"/><enum name=\"src_atop\" value=\"9\"/><enum name=\"multiply\" value=\"14\"/><enum name=\"screen\" value=\"15\"/></attr></declare-styleable>\n    <declare-styleable name=\"ViewStubCompat\"><attr name=\"android:layout\"/><attr name=\"android:inflatedId\"/><attr name=\"android:id\"/></declare-styleable>\n    <dimen name=\"abc_action_bar_content_inset_material\">16dp</dimen>\n    <dimen name=\"abc_action_bar_default_height_material\">56dp</dimen>\n    <dimen name=\"abc_action_bar_default_padding_end_material\">0dp</dimen>\n    <dimen name=\"abc_action_bar_default_padding_start_material\">0dp</dimen>\n    <dimen name=\"abc_action_bar_icon_vertical_padding_material\">16dp</dimen>\n    <dimen name=\"abc_action_bar_overflow_padding_end_material\">10dp</dimen>\n    <dimen name=\"abc_action_bar_overflow_padding_start_material\">6dp</dimen>\n    <dimen name=\"abc_action_bar_progress_bar_size\">40dp</dimen>\n    <dimen name=\"abc_action_bar_stacked_max_height\">48dp</dimen>\n    <dimen name=\"abc_action_bar_stacked_tab_max_width\">180dp</dimen>\n    <dimen name=\"abc_action_bar_subtitle_bottom_margin_material\">5dp</dimen>\n    <dimen name=\"abc_action_bar_subtitle_top_margin_material\">-3dp</dimen>\n    <dimen name=\"abc_action_button_min_height_material\">48dp</dimen>\n    <dimen name=\"abc_action_button_min_width_material\">48dp</dimen>\n    <dimen name=\"abc_action_button_min_width_overflow_material\">36dp</dimen>\n    <dimen name=\"abc_alert_dialog_button_bar_height\">48dp</dimen>\n    <dimen name=\"abc_button_inset_horizontal_material\">@dimen/abc_control_inset_material</dimen>\n    <dimen name=\"abc_button_inset_vertical_material\">6dp</dimen>\n    <dimen name=\"abc_button_padding_horizontal_material\">8dp</dimen>\n    <dimen name=\"abc_button_padding_vertical_material\">@dimen/abc_control_padding_material</dimen>\n    <dimen name=\"abc_config_prefDialogWidth\">320dp</dimen>\n    <dimen name=\"abc_control_corner_material\">2dp</dimen>\n    <dimen name=\"abc_control_inset_material\">4dp</dimen>\n    <dimen name=\"abc_control_padding_material\">4dp</dimen>\n    <dimen name=\"abc_dialog_list_padding_vertical_material\">8dp</dimen>\n    <item name=\"abc_dialog_min_width_major\" type=\"dimen\">65%</item>\n    <item name=\"abc_dialog_min_width_minor\" type=\"dimen\">95%</item>\n    <dimen name=\"abc_dialog_padding_material\">24dp</dimen>\n    <dimen name=\"abc_dialog_padding_top_material\">18dp</dimen>\n    <item format=\"float\" name=\"abc_disabled_alpha_material_dark\" type=\"dimen\">0.30</item>\n    <item format=\"float\" name=\"abc_disabled_alpha_material_light\" type=\"dimen\">0.26</item>\n    <dimen name=\"abc_dropdownitem_icon_width\">32dip</dimen>\n    <dimen name=\"abc_dropdownitem_text_padding_left\">8dip</dimen>\n    <dimen name=\"abc_dropdownitem_text_padding_right\">8dip</dimen>\n    <dimen name=\"abc_edit_text_inset_bottom_material\">7dp</dimen>\n    <dimen name=\"abc_edit_text_inset_horizontal_material\">4dp</dimen>\n    <dimen name=\"abc_edit_text_inset_top_material\">10dp</dimen>\n    <dimen name=\"abc_floating_window_z\">16dp</dimen>\n    <dimen name=\"abc_list_item_padding_horizontal_material\">@dimen/abc_action_bar_content_inset_material</dimen>\n    <dimen name=\"abc_panel_menu_list_width\">296dp</dimen>\n    <dimen name=\"abc_search_view_preferred_width\">320dip</dimen>\n    <dimen name=\"abc_search_view_text_min_width\">160dip</dimen>\n    <dimen name=\"abc_switch_padding\">3dp</dimen>\n    <dimen name=\"abc_text_size_body_1_material\">14sp</dimen>\n    <dimen name=\"abc_text_size_body_2_material\">14sp</dimen>\n    <dimen name=\"abc_text_size_button_material\">14sp</dimen>\n    <dimen name=\"abc_text_size_caption_material\">12sp</dimen>\n    <dimen name=\"abc_text_size_display_1_material\">34sp</dimen>\n    <dimen name=\"abc_text_size_display_2_material\">45sp</dimen>\n    <dimen name=\"abc_text_size_display_3_material\">56sp</dimen>\n    <dimen name=\"abc_text_size_display_4_material\">112sp</dimen>\n    <dimen name=\"abc_text_size_headline_material\">24sp</dimen>\n    <dimen name=\"abc_text_size_large_material\">22sp</dimen>\n    <dimen name=\"abc_text_size_medium_material\">18sp</dimen>\n    <dimen name=\"abc_text_size_menu_material\">16sp</dimen>\n    <dimen name=\"abc_text_size_small_material\">14sp</dimen>\n    <dimen name=\"abc_text_size_subhead_material\">16sp</dimen>\n    <dimen name=\"abc_text_size_subtitle_material_toolbar\">16dp</dimen>\n    <dimen name=\"abc_text_size_title_material\">20sp</dimen>\n    <dimen name=\"abc_text_size_title_material_toolbar\">20dp</dimen>\n    <item name=\"dialog_fixed_height_major\" type=\"dimen\">80%</item>\n    <item name=\"dialog_fixed_height_minor\" type=\"dimen\">100%</item>\n    <item name=\"dialog_fixed_width_major\" type=\"dimen\">320dp</item>\n    <item name=\"dialog_fixed_width_minor\" type=\"dimen\">320dp</item>\n    <item format=\"float\" name=\"disabled_alpha_material_dark\" type=\"dimen\">0.30</item>\n    <item format=\"float\" name=\"disabled_alpha_material_light\" type=\"dimen\">0.26</item>\n    <item format=\"float\" name=\"highlight_alpha_material_colored\" type=\"dimen\">0.26</item>\n    <item format=\"float\" name=\"highlight_alpha_material_dark\" type=\"dimen\">0.20</item>\n    <item format=\"float\" name=\"highlight_alpha_material_light\" type=\"dimen\">0.12</item>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/recyclerview-v7/23.0.1/res/values/values.xml -->\n    <eat-comment/>\n    <dimen name=\"item_touch_helper_max_drag_scroll_per_frame\">20dp</dimen>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml -->\n    <eat-comment/>\n    <dimen name=\"notification_large_icon_height\">64dp</dimen>\n    <dimen name=\"notification_large_icon_width\">64dp</dimen>\n    <dimen name=\"notification_subtext_size\">12dp</dimen>\n    <drawable name=\"notification_template_icon_bg\">#3333B5E5</drawable>\n    <item name=\"action_bar_activity_content\" type=\"id\"/>\n    <item name=\"action_bar_spinner\" type=\"id\"/>\n    <item name=\"action_menu_divider\" type=\"id\"/>\n    <item name=\"action_menu_presenter\" type=\"id\"/>\n    <item name=\"home\" type=\"id\"/>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/recyclerview-v7/23.0.1/res/values/values.xml -->\n    <eat-comment/>\n    <item name=\"item_touch_helper_previous_elevation\" type=\"id\"/>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml -->\n    <eat-comment/>\n    <item name=\"progress_circular\" type=\"id\"/>\n    <item name=\"progress_horizontal\" type=\"id\"/>\n    <item name=\"split_action_bar\" type=\"id\"/>\n    <item name=\"up\" type=\"id\"/>\n    <integer name=\"abc_config_activityDefaultDur\">220</integer>\n    <integer name=\"abc_config_activityShortDur\">150</integer>\n    <integer name=\"abc_max_action_buttons\">2</integer>\n    <integer name=\"cancel_button_image_alpha\">127</integer>\n    <integer name=\"status_bar_notification_info_maxnum\">999</integer>\n    <string name=\"abc_action_bar_home_description\">Navigate home</string>\n    <string name=\"abc_action_bar_home_description_format\">%1$s, %2$s</string>\n    <string name=\"abc_action_bar_home_subtitle_description_format\">%1$s, %2$s, %3$s</string>\n    <string name=\"abc_action_bar_up_description\">Navigate up</string>\n    <string name=\"abc_action_menu_overflow_description\">More options</string>\n    <string name=\"abc_action_mode_done\">Done</string>\n    <string name=\"abc_activity_chooser_view_see_all\">See all</string>\n    <string name=\"abc_activitychooserview_choose_application\">Choose an app</string>\n    <string name=\"abc_search_hint\">Search…</string>\n    <string name=\"abc_searchview_description_clear\">Clear query</string>\n    <string name=\"abc_searchview_description_query\">Search query</string>\n    <string name=\"abc_searchview_description_search\">Search</string>\n    <string name=\"abc_searchview_description_submit\">Submit query</string>\n    <string name=\"abc_searchview_description_voice\">Voice search</string>\n    <string name=\"abc_shareactionprovider_share_with\">Share with</string>\n    <string name=\"abc_shareactionprovider_share_with_application\">Share with %s</string>\n    <string name=\"abc_toolbar_collapse_description\">Collapse</string>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/src/main/res/values/strings.xml -->\n    <eat-comment/>\n    <string name=\"app_name\">GoReact</string>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/values/values.xml -->\n    <eat-comment/>\n    <string name=\"catalyst_debugjs\" project=\"catalyst\" translatable=\"false\">Debug in Chrome</string>\n    <string name=\"catalyst_debugjs_off\" project=\"catalyst\" translatable=\"false\">Stop Chrome Debugging</string>\n    <string name=\"catalyst_element_inspector\" project=\"catalyst\" translatable=\"false\">Show Inspector</string>\n    <string name=\"catalyst_element_inspector_off\" project=\"catalyst\" translatable=\"false\">Hide Inspector</string>\n    <string name=\"catalyst_hot_module_replacement\" project=\"catalyst\" translatable=\"false\">Enable Hot Reloading</string>\n    <string name=\"catalyst_hot_module_replacement_off\" project=\"catalyst\" translatable=\"false\">Disable Hot Reloading</string>\n    <string name=\"catalyst_jsload_error\" project=\"catalyst\" translatable=\"false\">Unable to download JS bundle. Did you forget to start the development server or connect your device?</string>\n    <string name=\"catalyst_jsload_message\" project=\"catalyst\" translatable=\"false\">Fetching JS bundle</string>\n    <string name=\"catalyst_jsload_title\" project=\"catalyst\" translatable=\"false\">Please wait…</string>\n    <string name=\"catalyst_live_reload\" project=\"catalyst\" translatable=\"false\">Enable Live Reload</string>\n    <string name=\"catalyst_live_reload_off\" project=\"catalyst\" translatable=\"false\">Disable Live Reload</string>\n    <string name=\"catalyst_perf_monitor\" project=\"catalyst\" translatable=\"false\">Enable Perf Monitor</string>\n    <string name=\"catalyst_perf_monitor_off\" project=\"catalyst\" translatable=\"false\">Disable Perf Monitor</string>\n    <string name=\"catalyst_reloadjs\" project=\"catalyst\" translatable=\"false\">Reload JS</string>\n    <string name=\"catalyst_remotedbg_error\" project=\"catalyst\" translatable=\"false\">Unable to connect with remote debugger</string>\n    <string name=\"catalyst_remotedbg_message\" project=\"catalyst\" translatable=\"false\">Connecting to remote debugger</string>\n    <string name=\"catalyst_settings\" project=\"catalyst\" translatable=\"false\">Dev Settings</string>\n    <string name=\"catalyst_settings_title\" project=\"catalyst\" translatable=\"false\">Catalyst Dev Settings</string>\n    <string name=\"catalyst_start_profile\" project=\"catalyst\" translatable=\"false\">Start Profile</string>\n    <string name=\"catalyst_stop_profile\" project=\"catalyst\" translatable=\"false\">Stop Profile</string>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml -->\n    <eat-comment/>\n    <string name=\"status_bar_notification_info_overflow\">999+</string>\n    <style name=\"AlertDialog.AppCompat\" parent=\"Base.AlertDialog.AppCompat\"/>\n    <style name=\"AlertDialog.AppCompat.Light\" parent=\"Base.AlertDialog.AppCompat.Light\"/>\n    <style name=\"Animation.AppCompat.Dialog\" parent=\"Base.Animation.AppCompat.Dialog\"/>\n    <style name=\"Animation.AppCompat.DropDownUp\" parent=\"Base.Animation.AppCompat.DropDownUp\"/>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/values/values.xml -->\n    <eat-comment/>\n    <style name=\"Animation.Catalyst.RedBox\" parent=\"@android:style/Animation\">\n    <item name=\"android:windowEnterAnimation\">@anim/catalyst_push_up_in</item>\n    <item name=\"android:windowExitAnimation\">@anim/catalyst_push_up_out</item>\n  </style>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/src/main/res/values/styles.xml -->\n    <eat-comment/>\n    <style name=\"AppTheme\" parent=\"Theme.AppCompat.Light.NoActionBar\">\n        <!-- Customize your theme here. -->\n    </style>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml -->\n    <eat-comment/>\n    <style name=\"Base.AlertDialog.AppCompat\" parent=\"android:Widget\">\n        <item name=\"android:layout\">@layout/abc_alert_dialog_material</item>\n        <item name=\"listLayout\">@layout/abc_select_dialog_material</item>\n        <item name=\"listItemLayout\">@layout/select_dialog_item_material</item>\n        <item name=\"multiChoiceItemLayout\">@layout/select_dialog_multichoice_material</item>\n        <item name=\"singleChoiceItemLayout\">@layout/select_dialog_singlechoice_material</item>\n    </style>\n    <style name=\"Base.AlertDialog.AppCompat.Light\" parent=\"Base.AlertDialog.AppCompat\"/>\n    <style name=\"Base.Animation.AppCompat.Dialog\" parent=\"android:Animation\">\n        <item name=\"android:windowEnterAnimation\">@anim/abc_popup_enter</item>\n        <item name=\"android:windowExitAnimation\">@anim/abc_popup_exit</item>\n    </style>\n    <style name=\"Base.Animation.AppCompat.DropDownUp\" parent=\"android:Animation\">\n        <item name=\"android:windowEnterAnimation\">@anim/abc_grow_fade_in_from_bottom</item>\n        <item name=\"android:windowExitAnimation\">@anim/abc_shrink_fade_out_from_bottom</item>\n    </style>\n    <style name=\"Base.DialogWindowTitle.AppCompat\" parent=\"android:Widget\">\n        <item name=\"android:maxLines\">1</item>\n        <item name=\"android:scrollHorizontally\">true</item>\n        <item name=\"android:textAppearance\">@style/TextAppearance.AppCompat.Title</item>\n    </style>\n    <style name=\"Base.DialogWindowTitleBackground.AppCompat\" parent=\"android:Widget\">\n        <item name=\"android:background\">@null</item>\n        <item name=\"android:paddingLeft\">?attr/dialogPreferredPadding</item>\n        <item name=\"android:paddingRight\">?attr/dialogPreferredPadding</item>\n        <item name=\"android:paddingTop\">@dimen/abc_dialog_padding_top_material</item>\n    </style>\n    <style name=\"Base.TextAppearance.AppCompat\" parent=\"android:TextAppearance\">\n        <item name=\"android:textColor\">?android:textColorPrimary</item>\n        <item name=\"android:textColorHint\">?android:textColorHint</item>\n        <item name=\"android:textColorHighlight\">?android:textColorHighlight</item>\n        <item name=\"android:textColorLink\">?android:textColorLink</item>\n        <item name=\"android:textSize\">@dimen/abc_text_size_body_1_material</item>\n    </style>\n    <style name=\"Base.TextAppearance.AppCompat.Body1\">\n        <item name=\"android:textSize\">@dimen/abc_text_size_body_1_material</item>\n        <item name=\"android:textColor\">?android:textColorPrimary</item>\n    </style>\n    <style name=\"Base.TextAppearance.AppCompat.Body2\">\n        <item name=\"android:textSize\">@dimen/abc_text_size_body_2_material</item>\n        <item name=\"android:textColor\">?android:textColorPrimary</item>\n    </style>\n    <style name=\"Base.TextAppearance.AppCompat.Button\">\n        <item name=\"android:textSize\">@dimen/abc_text_size_button_material</item>\n        <item name=\"textAllCaps\">true</item>\n        <item name=\"android:textColor\">?android:textColorPrimary</item>\n    </style>\n    <style name=\"Base.TextAppearance.AppCompat.Caption\">\n        <item name=\"android:textSize\">@dimen/abc_text_size_caption_material</item>\n        <item name=\"android:textColor\">?android:textColorSecondary</item>\n    </style>\n    <style name=\"Base.TextAppearance.AppCompat.Display1\">\n        <item name=\"android:textSize\">@dimen/abc_text_size_display_1_material</item>\n        <item name=\"android:textColor\">?android:textColorSecondary</item>\n    </style>\n    <style name=\"Base.TextAppearance.AppCompat.Display2\">\n        <item name=\"android:textSize\">@dimen/abc_text_size_display_2_material</item>\n        <item name=\"android:textColor\">?android:textColorSecondary</item>\n    </style>\n    <style name=\"Base.TextAppearance.AppCompat.Display3\">\n        <item name=\"android:textSize\">@dimen/abc_text_size_display_3_material</item>\n        <item name=\"android:textColor\">?android:textColorSecondary</item>\n    </style>\n    <style name=\"Base.TextAppearance.AppCompat.Display4\">\n        <item name=\"android:textSize\">@dimen/abc_text_size_display_4_material</item>\n        <item name=\"android:textColor\">?android:textColorSecondary</item>\n    </style>\n    <style name=\"Base.TextAppearance.AppCompat.Headline\">\n        <item name=\"android:textSize\">@dimen/abc_text_size_headline_material</item>\n        <item name=\"android:textColor\">?android:textColorPrimary</item>\n    </style>\n    <style name=\"Base.TextAppearance.AppCompat.Inverse\">\n        <item name=\"android:textColor\">?android:attr/textColorPrimaryInverse</item>\n        <item name=\"android:textColorHint\">?android:attr/textColorHintInverse</item>\n    </style>\n    <style name=\"Base.TextAppearance.AppCompat.Large\">\n        <item name=\"android:textSize\">@dimen/abc_text_size_large_material</item>\n        <item name=\"android:textColor\">?android:attr/textColorPrimary</item>\n    </style>\n    <style name=\"Base.TextAppearance.AppCompat.Large.Inverse\">\n        <item name=\"android:textColor\">?android:attr/textColorPrimaryInverse</item>\n        <item name=\"android:textColorHint\">?android:attr/textColorHintInverse</item>\n    </style>\n    <style name=\"Base.TextAppearance.AppCompat.Light.Widget.PopupMenu.Large\" parent=\"TextAppearance.AppCompat.Menu\">\n    </style>\n    <style name=\"Base.TextAppearance.AppCompat.Light.Widget.PopupMenu.Small\" parent=\"TextAppearance.AppCompat.Menu\">\n    </style>\n    <style name=\"Base.TextAppearance.AppCompat.Medium\">\n        <item name=\"android:textSize\">@dimen/abc_text_size_medium_material</item>\n        <item name=\"android:textColor\">?android:attr/textColorSecondary</item>\n    </style>\n    <style name=\"Base.TextAppearance.AppCompat.Medium.Inverse\">\n        <item name=\"android:textColor\">?android:attr/textColorSecondaryInverse</item>\n        <item name=\"android:textColorHint\">?android:attr/textColorHintInverse</item>\n    </style>\n    <style name=\"Base.TextAppearance.AppCompat.Menu\">\n        <item name=\"android:textSize\">@dimen/abc_text_size_menu_material</item>\n        <item name=\"android:textColor\">?android:textColorPrimary</item>\n    </style>\n    <style name=\"Base.TextAppearance.AppCompat.SearchResult\" parent=\"\">\n        <item name=\"android:textStyle\">normal</item>\n        <item name=\"android:textColor\">?android:textColorPrimary</item>\n        <item name=\"android:textColorHint\">?android:textColorHint</item>\n    </style>\n    <style name=\"Base.TextAppearance.AppCompat.SearchResult.Subtitle\">\n        <item name=\"android:textSize\">14sp</item>\n        <item name=\"android:textColor\">?android:textColorSecondary</item>\n    </style>\n    <style name=\"Base.TextAppearance.AppCompat.SearchResult.Title\">\n        <item name=\"android:textSize\">18sp</item>\n    </style>\n    <style name=\"Base.TextAppearance.AppCompat.Small\">\n        <item name=\"android:textSize\">@dimen/abc_text_size_small_material</item>\n        <item name=\"android:textColor\">?android:attr/textColorTertiary</item>\n    </style>\n    <style name=\"Base.TextAppearance.AppCompat.Small.Inverse\">\n        <item name=\"android:textColor\">?android:attr/textColorTertiaryInverse</item>\n        <item name=\"android:textColorHint\">?android:attr/textColorHintInverse</item>\n    </style>\n    <style name=\"Base.TextAppearance.AppCompat.Subhead\">\n        <item name=\"android:textSize\">@dimen/abc_text_size_subhead_material</item>\n        <item name=\"android:textColor\">?android:textColorPrimary</item>\n    </style>\n    <style name=\"Base.TextAppearance.AppCompat.Subhead.Inverse\">\n        <item name=\"android:textColor\">?android:attr/textColorPrimaryInverse</item>\n        <item name=\"android:textColorHint\">?android:attr/textColorHintInverse</item>\n    </style>\n    <style name=\"Base.TextAppearance.AppCompat.Title\">\n        <item name=\"android:textSize\">@dimen/abc_text_size_title_material</item>\n        <item name=\"android:textColor\">?android:textColorPrimary</item>\n    </style>\n    <style name=\"Base.TextAppearance.AppCompat.Title.Inverse\">\n        <item name=\"android:textColor\">?android:attr/textColorPrimaryInverse</item>\n        <item name=\"android:textColorHint\">?android:attr/textColorHintInverse</item>\n    </style>\n    <style name=\"Base.TextAppearance.AppCompat.Widget.ActionBar.Menu\" parent=\"TextAppearance.AppCompat.Menu\">\n        <item name=\"android:textColor\">?attr/actionMenuTextColor</item>\n        <item name=\"textAllCaps\">@bool/abc_config_actionMenuItemAllCaps</item>\n    </style>\n    <style name=\"Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle\" parent=\"TextAppearance.AppCompat.Subhead\">\n        <item name=\"android:textSize\">@dimen/abc_text_size_subtitle_material_toolbar</item>\n        <item name=\"android:textColor\">?android:attr/textColorSecondary</item>\n    </style>\n    <style name=\"Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle.Inverse\" parent=\"TextAppearance.AppCompat.Subhead.Inverse\">\n        <item name=\"android:textSize\">@dimen/abc_text_size_subtitle_material_toolbar</item>\n        <item name=\"android:textColor\">?android:attr/textColorSecondaryInverse</item>\n    </style>\n    <style name=\"Base.TextAppearance.AppCompat.Widget.ActionBar.Title\" parent=\"TextAppearance.AppCompat.Title\">\n        <item name=\"android:textSize\">@dimen/abc_text_size_title_material_toolbar</item>\n        <item name=\"android:textColor\">?android:attr/textColorPrimary</item>\n    </style>\n    <style name=\"Base.TextAppearance.AppCompat.Widget.ActionBar.Title.Inverse\" parent=\"TextAppearance.AppCompat.Title.Inverse\">\n        <item name=\"android:textSize\">@dimen/abc_text_size_title_material_toolbar</item>\n        <item name=\"android:textColor\">?android:attr/textColorPrimaryInverse</item>\n    </style>\n    <style name=\"Base.TextAppearance.AppCompat.Widget.ActionMode.Subtitle\" parent=\"TextAppearance.AppCompat.Widget.ActionBar.Subtitle\"/>\n    <style name=\"Base.TextAppearance.AppCompat.Widget.ActionMode.Title\" parent=\"TextAppearance.AppCompat.Widget.ActionBar.Title\"/>\n    <style name=\"Base.TextAppearance.AppCompat.Widget.Button\" parent=\"TextAppearance.AppCompat.Button\"/>\n    <style name=\"Base.TextAppearance.AppCompat.Widget.Button.Inverse\" parent=\"TextAppearance.AppCompat.Button\">\n        <item name=\"android:textColor\">?android:textColorPrimaryInverse</item>\n    </style>\n    <style name=\"Base.TextAppearance.AppCompat.Widget.DropDownItem\" parent=\"android:TextAppearance.Small\">\n        <item name=\"android:textColor\">?android:attr/textColorPrimaryDisableOnly</item>\n    </style>\n    <style name=\"Base.TextAppearance.AppCompat.Widget.PopupMenu.Large\" parent=\"TextAppearance.AppCompat.Menu\">\n    </style>\n    <style name=\"Base.TextAppearance.AppCompat.Widget.PopupMenu.Small\" parent=\"TextAppearance.AppCompat.Menu\">\n    </style>\n    <style name=\"Base.TextAppearance.AppCompat.Widget.Switch\" parent=\"TextAppearance.AppCompat.Button\"/>\n    <style name=\"Base.TextAppearance.AppCompat.Widget.TextView.SpinnerItem\" parent=\"TextAppearance.AppCompat.Menu\"/>\n    <style name=\"Base.TextAppearance.Widget.AppCompat.ExpandedMenu.Item\" parent=\"android:TextAppearance.Medium\">\n        <item name=\"android:textColor\">?android:attr/textColorPrimaryDisableOnly</item>\n    </style>\n    <style name=\"Base.TextAppearance.Widget.AppCompat.Toolbar.Subtitle\" parent=\"TextAppearance.AppCompat.Widget.ActionBar.Subtitle\">\n    </style>\n    <style name=\"Base.TextAppearance.Widget.AppCompat.Toolbar.Title\" parent=\"TextAppearance.AppCompat.Widget.ActionBar.Title\">\n    </style>\n    <style name=\"Base.Theme.AppCompat\" parent=\"Base.V7.Theme.AppCompat\">\n    </style>\n    <style name=\"Base.Theme.AppCompat.CompactMenu\" parent=\"\">\n        <item name=\"android:itemTextAppearance\">?android:attr/textAppearanceMedium</item>\n        <item name=\"android:listViewStyle\">@style/Widget.AppCompat.ListView.Menu</item>\n        <item name=\"android:windowAnimationStyle\">@style/Animation.AppCompat.DropDownUp</item>\n    </style>\n    <style name=\"Base.Theme.AppCompat.Dialog\" parent=\"Base.V7.Theme.AppCompat.Dialog\"/>\n    <style name=\"Base.Theme.AppCompat.Dialog.Alert\">\n        <item name=\"windowMinWidthMajor\">@dimen/abc_dialog_min_width_major</item>\n        <item name=\"windowMinWidthMinor\">@dimen/abc_dialog_min_width_minor</item>\n    </style>\n    <style name=\"Base.Theme.AppCompat.Dialog.FixedSize\">\n        <item name=\"windowFixedWidthMajor\">@dimen/dialog_fixed_width_major</item>\n        <item name=\"windowFixedWidthMinor\">@dimen/dialog_fixed_width_minor</item>\n        <item name=\"windowFixedHeightMajor\">@dimen/dialog_fixed_height_major</item>\n        <item name=\"windowFixedHeightMinor\">@dimen/dialog_fixed_height_minor</item>\n    </style>\n    <style name=\"Base.Theme.AppCompat.Dialog.MinWidth\">\n        <item name=\"windowMinWidthMajor\">@dimen/abc_dialog_min_width_major</item>\n        <item name=\"windowMinWidthMinor\">@dimen/abc_dialog_min_width_minor</item>\n    </style>\n    <style name=\"Base.Theme.AppCompat.DialogWhenLarge\" parent=\"Theme.AppCompat\"/>\n    <style name=\"Base.Theme.AppCompat.Light\" parent=\"Base.V7.Theme.AppCompat.Light\">\n    </style>\n    <style name=\"Base.Theme.AppCompat.Light.DarkActionBar\" parent=\"Base.Theme.AppCompat.Light\">\n        <item name=\"actionBarPopupTheme\">@style/ThemeOverlay.AppCompat.Light</item>\n        <item name=\"actionBarWidgetTheme\">@null</item>\n        <item name=\"actionBarTheme\">@style/ThemeOverlay.AppCompat.Dark.ActionBar</item>\n\n        <!-- Panel attributes -->\n        <item name=\"listChoiceBackgroundIndicator\">@drawable/abc_list_selector_holo_dark</item>\n\n        <item name=\"colorPrimaryDark\">@color/primary_dark_material_dark</item>\n        <item name=\"colorPrimary\">@color/primary_material_dark</item>\n    </style>\n    <style name=\"Base.Theme.AppCompat.Light.Dialog\" parent=\"Base.V7.Theme.AppCompat.Light.Dialog\"/>\n    <style name=\"Base.Theme.AppCompat.Light.Dialog.Alert\">\n        <item name=\"windowMinWidthMajor\">@dimen/abc_dialog_min_width_major</item>\n        <item name=\"windowMinWidthMinor\">@dimen/abc_dialog_min_width_minor</item>\n    </style>\n    <style name=\"Base.Theme.AppCompat.Light.Dialog.FixedSize\">\n        <item name=\"windowFixedWidthMajor\">@dimen/dialog_fixed_width_major</item>\n        <item name=\"windowFixedWidthMinor\">@dimen/dialog_fixed_width_minor</item>\n        <item name=\"windowFixedHeightMajor\">@dimen/dialog_fixed_height_major</item>\n        <item name=\"windowFixedHeightMinor\">@dimen/dialog_fixed_height_minor</item>\n    </style>\n    <style name=\"Base.Theme.AppCompat.Light.Dialog.MinWidth\">\n        <item name=\"windowMinWidthMajor\">@dimen/abc_dialog_min_width_major</item>\n        <item name=\"windowMinWidthMinor\">@dimen/abc_dialog_min_width_minor</item>\n    </style>\n    <style name=\"Base.Theme.AppCompat.Light.DialogWhenLarge\" parent=\"Theme.AppCompat.Light\"/>\n    <style name=\"Base.ThemeOverlay.AppCompat\" parent=\"Platform.ThemeOverlay.AppCompat\"/>\n    <style name=\"Base.ThemeOverlay.AppCompat.ActionBar\">\n        <item name=\"colorControlNormal\">?android:attr/textColorPrimary</item>\n        <item name=\"searchViewStyle\">@style/Widget.AppCompat.SearchView.ActionBar</item>\n    </style>\n    <style name=\"Base.ThemeOverlay.AppCompat.Dark\" parent=\"Platform.ThemeOverlay.AppCompat.Dark\">\n        <item name=\"android:windowBackground\">@color/background_material_dark</item>\n        <item name=\"android:colorForeground\">@color/foreground_material_dark</item>\n        <item name=\"android:colorForegroundInverse\">@color/foreground_material_light</item>\n        <item name=\"android:colorBackground\">@color/background_material_dark</item>\n        <item name=\"android:colorBackgroundCacheHint\">@color/abc_background_cache_hint_selector_material_dark</item>\n\n        <item name=\"android:textColorPrimary\">@color/abc_primary_text_material_dark</item>\n        <item name=\"android:textColorPrimaryInverse\">@color/abc_primary_text_material_light</item>\n        <item name=\"android:textColorPrimaryDisableOnly\">@color/abc_primary_text_disable_only_material_dark</item>\n        <item name=\"android:textColorSecondary\">@color/abc_secondary_text_material_dark</item>\n        <item name=\"android:textColorSecondaryInverse\">@color/abc_secondary_text_material_light</item>\n        <item name=\"android:textColorTertiary\">@color/abc_secondary_text_material_dark</item>\n        <item name=\"android:textColorTertiaryInverse\">@color/abc_secondary_text_material_light</item>\n        <item name=\"android:textColorHint\">@color/hint_foreground_material_dark</item>\n        <item name=\"android:textColorHintInverse\">@color/hint_foreground_material_light</item>\n        <item name=\"android:textColorHighlight\">@color/highlighted_text_material_dark</item>\n\n        <item name=\"colorControlNormal\">?android:attr/textColorSecondary</item>\n        <item name=\"colorControlHighlight\">@color/ripple_material_dark</item>\n        <item name=\"colorButtonNormal\">@color/button_material_dark</item>\n        <item name=\"colorSwitchThumbNormal\">@color/switch_thumb_material_dark</item>\n\n        <!-- Used by MediaRouter -->\n        <item name=\"isLightTheme\">false</item>\n    </style>\n    <style name=\"Base.ThemeOverlay.AppCompat.Dark.ActionBar\">\n        <item name=\"colorControlNormal\">?android:attr/textColorPrimary</item>\n        <item name=\"searchViewStyle\">@style/Widget.AppCompat.SearchView.ActionBar</item>\n    </style>\n    <style name=\"Base.ThemeOverlay.AppCompat.Light\" parent=\"Platform.ThemeOverlay.AppCompat.Light\">\n        <item name=\"android:windowBackground\">@color/background_material_light</item>\n        <item name=\"android:colorForeground\">@color/foreground_material_light</item>\n        <item name=\"android:colorForegroundInverse\">@color/foreground_material_dark</item>\n        <item name=\"android:colorBackground\">@color/background_material_light</item>\n        <item name=\"android:colorBackgroundCacheHint\">@color/abc_background_cache_hint_selector_material_light</item>\n\n        <item name=\"android:textColorPrimary\">@color/abc_primary_text_material_light</item>\n        <item name=\"android:textColorPrimaryInverse\">@color/abc_primary_text_material_dark</item>\n        <item name=\"android:textColorSecondary\">@color/abc_secondary_text_material_light</item>\n        <item name=\"android:textColorSecondaryInverse\">@color/abc_secondary_text_material_dark</item>\n        <item name=\"android:textColorTertiary\">@color/abc_secondary_text_material_light</item>\n        <item name=\"android:textColorTertiaryInverse\">@color/abc_secondary_text_material_dark</item>\n        <item name=\"android:textColorPrimaryDisableOnly\">@color/abc_primary_text_disable_only_material_light</item>\n        <item name=\"android:textColorPrimaryInverseDisableOnly\">@color/abc_primary_text_disable_only_material_dark</item>\n        <item name=\"android:textColorHint\">@color/hint_foreground_material_light</item>\n        <item name=\"android:textColorHintInverse\">@color/hint_foreground_material_dark</item>\n        <item name=\"android:textColorHighlight\">@color/highlighted_text_material_light</item>\n\n        <item name=\"colorControlNormal\">?android:attr/textColorSecondary</item>\n        <item name=\"colorControlHighlight\">@color/ripple_material_light</item>\n        <item name=\"colorButtonNormal\">@color/button_material_light</item>\n        <item name=\"colorSwitchThumbNormal\">@color/switch_thumb_material_light</item>\n\n        <!-- Used by MediaRouter -->\n        <item name=\"isLightTheme\">true</item>\n    </style>\n    <style name=\"Base.V7.Theme.AppCompat\" parent=\"Platform.AppCompat\">\n        <item name=\"windowActionBar\">true</item>\n        <item name=\"windowActionBarOverlay\">false</item>\n        <item name=\"actionBarPopupTheme\">@null</item>\n\n        <!-- Used by MediaRouter -->\n        <item name=\"isLightTheme\">false</item>\n\n        <item name=\"selectableItemBackground\">@drawable/abc_item_background_holo_dark</item>\n        <item name=\"selectableItemBackgroundBorderless\">?attr/selectableItemBackground</item>\n        <item name=\"borderlessButtonStyle\">@style/Widget.AppCompat.Button.Borderless</item>\n        <item name=\"homeAsUpIndicator\">@drawable/abc_ic_ab_back_mtrl_am_alpha</item>\n\n        <item name=\"dividerVertical\">@drawable/abc_list_divider_mtrl_alpha</item>\n        <item name=\"dividerHorizontal\">@drawable/abc_list_divider_mtrl_alpha</item>\n\n        <!-- Action Bar Styles -->\n        <item name=\"actionBarTabStyle\">@style/Widget.AppCompat.ActionBar.TabView</item>\n        <item name=\"actionBarTabBarStyle\">@style/Widget.AppCompat.ActionBar.TabBar</item>\n        <item name=\"actionBarTabTextStyle\">@style/Widget.AppCompat.ActionBar.TabText</item>\n        <item name=\"actionButtonStyle\">@style/Widget.AppCompat.ActionButton</item>\n        <item name=\"actionOverflowButtonStyle\">@style/Widget.AppCompat.ActionButton.Overflow</item>\n        <item name=\"actionOverflowMenuStyle\">@style/Widget.AppCompat.PopupMenu.Overflow</item>\n        <item name=\"actionBarStyle\">@style/Widget.AppCompat.ActionBar.Solid</item>\n        <item name=\"actionBarSplitStyle\">?attr/actionBarStyle</item>\n        <item name=\"actionBarWidgetTheme\">@null</item>\n        <item name=\"actionBarTheme\">@style/ThemeOverlay.AppCompat.ActionBar</item>\n        <item name=\"actionBarSize\">@dimen/abc_action_bar_default_height_material</item>\n        <item name=\"actionBarDivider\">?attr/dividerVertical</item>\n        <item name=\"actionBarItemBackground\">?attr/selectableItemBackgroundBorderless</item>\n        <item name=\"actionMenuTextAppearance\">@style/TextAppearance.AppCompat.Widget.ActionBar.Menu</item>\n        <item name=\"actionMenuTextColor\">?android:attr/textColorPrimaryDisableOnly</item>\n\n        <!-- Dropdown Spinner Attributes -->\n        <item name=\"actionDropDownStyle\">@style/Widget.AppCompat.Spinner.DropDown.ActionBar</item>\n\n        <!-- Action Mode -->\n        <item name=\"actionModeStyle\">@style/Widget.AppCompat.ActionMode</item>\n        <item name=\"actionModeBackground\">@drawable/abc_cab_background_top_material</item>\n        <item name=\"actionModeSplitBackground\">?attr/colorPrimaryDark</item>\n        <item name=\"actionModeCloseDrawable\">@drawable/abc_ic_ab_back_mtrl_am_alpha</item>\n        <item name=\"actionModeCloseButtonStyle\">@style/Widget.AppCompat.ActionButton.CloseMode</item>\n\n        <item name=\"actionModeCutDrawable\">@drawable/abc_ic_menu_cut_mtrl_alpha</item>\n        <item name=\"actionModeCopyDrawable\">@drawable/abc_ic_menu_copy_mtrl_am_alpha</item>\n        <item name=\"actionModePasteDrawable\">@drawable/abc_ic_menu_paste_mtrl_am_alpha</item>\n        <item name=\"actionModeSelectAllDrawable\">@drawable/abc_ic_menu_selectall_mtrl_alpha</item>\n        <item name=\"actionModeShareDrawable\">@drawable/abc_ic_menu_share_mtrl_alpha</item>\n\n        <!-- Panel attributes -->\n        <item name=\"panelMenuListWidth\">@dimen/abc_panel_menu_list_width</item>\n        <item name=\"panelMenuListTheme\">@style/Theme.AppCompat.CompactMenu</item>\n        <item name=\"panelBackground\">@drawable/abc_menu_hardkey_panel_mtrl_mult</item>\n        <item name=\"android:panelBackground\">@android:color/transparent</item>\n        <item name=\"listChoiceBackgroundIndicator\">@drawable/abc_list_selector_holo_dark</item>\n\n        <!-- List attributes -->\n        <item name=\"textAppearanceListItem\">@style/TextAppearance.AppCompat.Subhead</item>\n        <item name=\"textAppearanceListItemSmall\">@style/TextAppearance.AppCompat.Subhead</item>\n        <item name=\"listPreferredItemHeight\">64dp</item>\n        <item name=\"listPreferredItemHeightSmall\">48dp</item>\n        <item name=\"listPreferredItemHeightLarge\">80dp</item>\n        <item name=\"listPreferredItemPaddingLeft\">@dimen/abc_list_item_padding_horizontal_material</item>\n        <item name=\"listPreferredItemPaddingRight\">@dimen/abc_list_item_padding_horizontal_material</item>\n\n        <!-- Spinner styles -->\n        <item name=\"spinnerStyle\">@style/Widget.AppCompat.Spinner</item>\n        <item name=\"android:spinnerItemStyle\">@style/Widget.AppCompat.TextView.SpinnerItem</item>\n        <item name=\"android:dropDownListViewStyle\">@style/Widget.AppCompat.ListView.DropDown</item>\n\n        <!-- Required for use of support_simple_spinner_dropdown_item.xml -->\n        <item name=\"spinnerDropDownItemStyle\">@style/Widget.AppCompat.DropDownItem.Spinner</item>\n        <item name=\"dropdownListPreferredItemHeight\">?attr/listPreferredItemHeightSmall</item>\n\n        <!-- Popup Menu styles -->\n        <item name=\"popupMenuStyle\">@style/Widget.AppCompat.PopupMenu</item>\n        <item name=\"textAppearanceLargePopupMenu\">@style/TextAppearance.AppCompat.Widget.PopupMenu.Large</item>\n        <item name=\"textAppearanceSmallPopupMenu\">@style/TextAppearance.AppCompat.Widget.PopupMenu.Small</item>\n        <item name=\"listPopupWindowStyle\">@style/Widget.AppCompat.ListPopupWindow</item>\n        <item name=\"dropDownListViewStyle\">@style/Widget.AppCompat.ListView.DropDown</item>\n\n        <!-- SearchView attributes -->\n        <item name=\"searchViewStyle\">@style/Widget.AppCompat.SearchView</item>\n        <item name=\"android:dropDownItemStyle\">@style/Widget.AppCompat.DropDownItem.Spinner</item>\n        <item name=\"textColorSearchUrl\">@color/abc_search_url_text</item>\n        <item name=\"textAppearanceSearchResultTitle\">@style/TextAppearance.AppCompat.SearchResult.Title</item>\n        <item name=\"textAppearanceSearchResultSubtitle\">@style/TextAppearance.AppCompat.SearchResult.Subtitle</item>\n\n        <!-- ShareActionProvider attributes -->\n        <item name=\"activityChooserViewStyle\">@style/Widget.AppCompat.ActivityChooserView</item>\n\n        <!-- Toolbar styles -->\n        <item name=\"toolbarStyle\">@style/Widget.AppCompat.Toolbar</item>\n        <item name=\"toolbarNavigationButtonStyle\">@style/Widget.AppCompat.Toolbar.Button.Navigation</item>\n\n        <item name=\"editTextStyle\">@style/Widget.AppCompat.EditText</item>\n        <item name=\"editTextBackground\">@drawable/abc_edit_text_material</item>\n        <item name=\"editTextColor\">?android:attr/textColorPrimary</item>\n        <item name=\"autoCompleteTextViewStyle\">@style/Widget.AppCompat.AutoCompleteTextView</item>\n\n        <!-- Color palette -->\n        <item name=\"colorPrimaryDark\">@color/primary_dark_material_dark</item>\n        <item name=\"colorPrimary\">@color/primary_material_dark</item>\n        <item name=\"colorAccent\">@color/accent_material_dark</item>\n\n        <item name=\"colorControlNormal\">?android:attr/textColorSecondary</item>\n        <item name=\"colorControlActivated\">?attr/colorAccent</item>\n        <item name=\"colorControlHighlight\">@color/ripple_material_dark</item>\n        <item name=\"colorButtonNormal\">@color/button_material_dark</item>\n        <item name=\"colorSwitchThumbNormal\">@color/switch_thumb_material_dark</item>\n        <item name=\"controlBackground\">?attr/selectableItemBackgroundBorderless</item>\n\n        <item name=\"drawerArrowStyle\">@style/Widget.AppCompat.DrawerArrowToggle</item>\n\n        <item name=\"checkboxStyle\">@style/Widget.AppCompat.CompoundButton.CheckBox</item>\n        <item name=\"radioButtonStyle\">@style/Widget.AppCompat.CompoundButton.RadioButton</item>\n        <item name=\"switchStyle\">@style/Widget.AppCompat.CompoundButton.Switch</item>\n\n        <item name=\"ratingBarStyle\">@style/Widget.AppCompat.RatingBar</item>\n\n        <!-- Button styles -->\n        <item name=\"buttonStyle\">@style/Widget.AppCompat.Button</item>\n        <item name=\"buttonStyleSmall\">@style/Widget.AppCompat.Button.Small</item>\n        <item name=\"android:textAppearanceButton\">@style/TextAppearance.AppCompat.Widget.Button</item>\n\n        <item name=\"buttonBarStyle\">@style/Widget.AppCompat.ButtonBar</item>\n        <item name=\"buttonBarButtonStyle\">@style/Widget.AppCompat.Button.ButtonBar.AlertDialog</item>\n        <item name=\"buttonBarPositiveButtonStyle\">?attr/buttonBarButtonStyle</item>\n        <item name=\"buttonBarNegativeButtonStyle\">?attr/buttonBarButtonStyle</item>\n        <item name=\"buttonBarNeutralButtonStyle\">?attr/buttonBarButtonStyle</item>\n\n        <!-- Dialog attributes -->\n        <item name=\"dialogTheme\">@style/Theme.AppCompat.Dialog</item>\n        <item name=\"dialogPreferredPadding\">@dimen/abc_dialog_padding_material</item>\n\n        <item name=\"alertDialogTheme\">@style/Theme.AppCompat.Dialog.Alert</item>\n        <item name=\"alertDialogStyle\">@style/AlertDialog.AppCompat</item>\n        <item name=\"alertDialogCenterButtons\">false</item>\n        <item name=\"textColorAlertDialogListItem\">@color/abc_primary_text_material_dark</item>\n        <item name=\"listDividerAlertDialog\">@null</item>\n\n        <!-- Define these here; ContextThemeWrappers around themes that define them should\n             always clear these values. -->\n        <item name=\"windowFixedWidthMajor\">0dp</item>\n        <item name=\"windowFixedWidthMinor\">0dp</item>\n        <item name=\"windowFixedHeightMajor\">0dp</item>\n        <item name=\"windowFixedHeightMinor\">0dp</item>\n    </style>\n    <style name=\"Base.V7.Theme.AppCompat.Dialog\" parent=\"Base.Theme.AppCompat\">\n        <item name=\"android:colorBackground\">@color/background_floating_material_dark</item>\n        <item name=\"android:colorBackgroundCacheHint\">@null</item>\n\n        <item name=\"android:windowFrame\">@null</item>\n        <item name=\"android:windowTitleStyle\">@style/RtlOverlay.DialogWindowTitle.AppCompat</item>\n        <item name=\"android:windowTitleBackgroundStyle\">@style/Base.DialogWindowTitleBackground.AppCompat</item>\n        <item name=\"android:windowBackground\">@drawable/abc_dialog_material_background_dark</item>\n        <item name=\"android:windowIsFloating\">true</item>\n        <item name=\"android:backgroundDimEnabled\">true</item>\n        <item name=\"android:windowContentOverlay\">@null</item>\n        <item name=\"android:windowAnimationStyle\">@style/Animation.AppCompat.Dialog</item>\n        <item name=\"android:windowSoftInputMode\">stateUnspecified|adjustPan</item>\n\n        <item name=\"windowActionBar\">false</item>\n        <item name=\"windowActionModeOverlay\">true</item>\n\n        <item name=\"listPreferredItemPaddingLeft\">24dip</item>\n        <item name=\"listPreferredItemPaddingRight\">24dip</item>\n\n        <item name=\"android:listDivider\">@null</item>\n    </style>\n    <style name=\"Base.V7.Theme.AppCompat.Light\" parent=\"Platform.AppCompat.Light\">\n        <item name=\"windowActionBar\">true</item>\n        <item name=\"windowActionBarOverlay\">false</item>\n        <item name=\"actionBarPopupTheme\">@null</item>\n\n        <!-- Used by MediaRouter -->\n        <item name=\"isLightTheme\">true</item>\n\n        <item name=\"selectableItemBackground\">@drawable/abc_item_background_holo_light</item>\n        <item name=\"selectableItemBackgroundBorderless\">?attr/selectableItemBackground</item>\n        <item name=\"borderlessButtonStyle\">@style/Widget.AppCompat.Button.Borderless</item>\n        <item name=\"homeAsUpIndicator\">@drawable/abc_ic_ab_back_mtrl_am_alpha</item>\n\n        <item name=\"dividerVertical\">@drawable/abc_list_divider_mtrl_alpha</item>\n        <item name=\"dividerHorizontal\">@drawable/abc_list_divider_mtrl_alpha</item>\n\n        <!-- Action Bar Styles -->\n        <item name=\"actionBarTabStyle\">@style/Widget.AppCompat.Light.ActionBar.TabView</item>\n        <item name=\"actionBarTabBarStyle\">@style/Widget.AppCompat.Light.ActionBar.TabBar</item>\n        <item name=\"actionBarTabTextStyle\">@style/Widget.AppCompat.Light.ActionBar.TabText</item>\n        <item name=\"actionButtonStyle\">@style/Widget.AppCompat.Light.ActionButton</item>\n        <item name=\"actionOverflowButtonStyle\">@style/Widget.AppCompat.Light.ActionButton.Overflow</item>\n        <item name=\"actionOverflowMenuStyle\">@style/Widget.AppCompat.Light.PopupMenu.Overflow</item>\n        <item name=\"actionBarStyle\">@style/Widget.AppCompat.Light.ActionBar.Solid</item>\n        <item name=\"actionBarSplitStyle\">?attr/actionBarStyle</item>\n        <item name=\"actionBarWidgetTheme\">@null</item>\n        <item name=\"actionBarTheme\">@style/ThemeOverlay.AppCompat.ActionBar</item>\n        <item name=\"actionBarSize\">@dimen/abc_action_bar_default_height_material</item>\n        <item name=\"actionBarDivider\">?attr/dividerVertical</item>\n        <item name=\"actionBarItemBackground\">?attr/selectableItemBackgroundBorderless</item>\n        <item name=\"actionMenuTextAppearance\">@style/TextAppearance.AppCompat.Widget.ActionBar.Menu</item>\n        <item name=\"actionMenuTextColor\">?android:attr/textColorPrimaryDisableOnly</item>\n\n        <!-- Action Mode -->\n        <item name=\"actionModeStyle\">@style/Widget.AppCompat.ActionMode</item>\n        <item name=\"actionModeBackground\">@drawable/abc_cab_background_top_material</item>\n        <item name=\"actionModeSplitBackground\">?attr/colorPrimaryDark</item>\n        <item name=\"actionModeCloseDrawable\">@drawable/abc_ic_ab_back_mtrl_am_alpha</item>\n        <item name=\"actionModeCloseButtonStyle\">@style/Widget.AppCompat.ActionButton.CloseMode</item>\n\n        <item name=\"actionModeCutDrawable\">@drawable/abc_ic_menu_cut_mtrl_alpha</item>\n        <item name=\"actionModeCopyDrawable\">@drawable/abc_ic_menu_copy_mtrl_am_alpha</item>\n        <item name=\"actionModePasteDrawable\">@drawable/abc_ic_menu_paste_mtrl_am_alpha</item>\n        <item name=\"actionModeSelectAllDrawable\">@drawable/abc_ic_menu_selectall_mtrl_alpha</item>\n        <item name=\"actionModeShareDrawable\">@drawable/abc_ic_menu_share_mtrl_alpha</item>\n\n        <!-- Dropdown Spinner Attributes -->\n        <item name=\"actionDropDownStyle\">@style/Widget.AppCompat.Light.Spinner.DropDown.ActionBar</item>\n\n        <!-- Panel attributes -->\n        <item name=\"panelMenuListWidth\">@dimen/abc_panel_menu_list_width</item>\n        <item name=\"panelMenuListTheme\">@style/Theme.AppCompat.CompactMenu</item>\n        <item name=\"panelBackground\">@drawable/abc_menu_hardkey_panel_mtrl_mult</item>\n        <item name=\"android:panelBackground\">@android:color/transparent</item>\n        <item name=\"listChoiceBackgroundIndicator\">@drawable/abc_list_selector_holo_light</item>\n\n        <!-- List attributes -->\n        <item name=\"textAppearanceListItem\">@style/TextAppearance.AppCompat.Subhead</item>\n        <item name=\"textAppearanceListItemSmall\">@style/TextAppearance.AppCompat.Subhead</item>\n        <item name=\"listPreferredItemHeight\">64dp</item>\n        <item name=\"listPreferredItemHeightSmall\">48dp</item>\n        <item name=\"listPreferredItemHeightLarge\">80dp</item>\n        <item name=\"listPreferredItemPaddingLeft\">@dimen/abc_list_item_padding_horizontal_material</item>\n        <item name=\"listPreferredItemPaddingRight\">@dimen/abc_list_item_padding_horizontal_material</item>\n\n        <!-- Spinner styles -->\n        <item name=\"spinnerStyle\">@style/Widget.AppCompat.Spinner</item>\n        <item name=\"android:spinnerItemStyle\">@style/Widget.AppCompat.TextView.SpinnerItem</item>\n        <item name=\"android:dropDownListViewStyle\">@style/Widget.AppCompat.ListView.DropDown</item>\n\n        <!-- Required for use of support_simple_spinner_dropdown_item.xml -->\n        <item name=\"spinnerDropDownItemStyle\">@style/Widget.AppCompat.DropDownItem.Spinner</item>\n        <item name=\"dropdownListPreferredItemHeight\">?attr/listPreferredItemHeightSmall</item>\n\n        <!-- Popup Menu styles -->\n        <item name=\"popupMenuStyle\">@style/Widget.AppCompat.Light.PopupMenu</item>\n        <item name=\"textAppearanceLargePopupMenu\">@style/TextAppearance.AppCompat.Light.Widget.PopupMenu.Large</item>\n        <item name=\"textAppearanceSmallPopupMenu\">@style/TextAppearance.AppCompat.Light.Widget.PopupMenu.Small</item>\n        <item name=\"listPopupWindowStyle\">@style/Widget.AppCompat.ListPopupWindow</item>\n        <item name=\"dropDownListViewStyle\">@style/Widget.AppCompat.ListView.DropDown</item>\n\n        <!-- SearchView attributes -->\n        <item name=\"searchViewStyle\">@style/Widget.AppCompat.Light.SearchView</item>\n        <item name=\"android:dropDownItemStyle\">@style/Widget.AppCompat.DropDownItem.Spinner</item>\n        <item name=\"textColorSearchUrl\">@color/abc_search_url_text</item>\n        <item name=\"textAppearanceSearchResultTitle\">@style/TextAppearance.AppCompat.SearchResult.Title</item>\n        <item name=\"textAppearanceSearchResultSubtitle\">@style/TextAppearance.AppCompat.SearchResult.Subtitle</item>\n\n        <!-- ShareActionProvider attributes -->\n        <item name=\"activityChooserViewStyle\">@style/Widget.AppCompat.ActivityChooserView</item>\n\n        <!-- Toolbar styles -->\n        <item name=\"toolbarStyle\">@style/Widget.AppCompat.Toolbar</item>\n        <item name=\"toolbarNavigationButtonStyle\">@style/Widget.AppCompat.Toolbar.Button.Navigation</item>\n\n        <item name=\"editTextStyle\">@style/Widget.AppCompat.EditText</item>\n        <item name=\"editTextBackground\">@drawable/abc_edit_text_material</item>\n        <item name=\"editTextColor\">?android:attr/textColorPrimary</item>\n        <item name=\"autoCompleteTextViewStyle\">@style/Widget.AppCompat.AutoCompleteTextView</item>\n\n        <!-- Color palette -->\n        <item name=\"colorPrimaryDark\">@color/primary_dark_material_light</item>\n        <item name=\"colorPrimary\">@color/primary_material_light</item>\n        <item name=\"colorAccent\">@color/accent_material_light</item>\n\n        <item name=\"colorControlNormal\">?android:attr/textColorSecondary</item>\n        <item name=\"colorControlActivated\">?attr/colorAccent</item>\n        <item name=\"colorControlHighlight\">@color/ripple_material_light</item>\n        <item name=\"colorButtonNormal\">@color/button_material_light</item>\n        <item name=\"colorSwitchThumbNormal\">@color/switch_thumb_material_light</item>\n        <item name=\"controlBackground\">?attr/selectableItemBackgroundBorderless</item>\n\n        <item name=\"drawerArrowStyle\">@style/Widget.AppCompat.DrawerArrowToggle</item>\n\n        <item name=\"checkboxStyle\">@style/Widget.AppCompat.CompoundButton.CheckBox</item>\n        <item name=\"radioButtonStyle\">@style/Widget.AppCompat.CompoundButton.RadioButton</item>\n        <item name=\"switchStyle\">@style/Widget.AppCompat.CompoundButton.Switch</item>\n\n        <item name=\"ratingBarStyle\">@style/Widget.AppCompat.RatingBar</item>\n\n        <!-- Button styles -->\n        <item name=\"buttonStyle\">@style/Widget.AppCompat.Button</item>\n        <item name=\"buttonStyleSmall\">@style/Widget.AppCompat.Button.Small</item>\n        <item name=\"android:textAppearanceButton\">@style/TextAppearance.AppCompat.Widget.Button</item>\n\n        <item name=\"buttonBarStyle\">@style/Widget.AppCompat.ButtonBar</item>\n        <item name=\"buttonBarButtonStyle\">@style/Widget.AppCompat.Button.ButtonBar.AlertDialog</item>\n        <item name=\"buttonBarPositiveButtonStyle\">?attr/buttonBarButtonStyle</item>\n        <item name=\"buttonBarNegativeButtonStyle\">?attr/buttonBarButtonStyle</item>\n        <item name=\"buttonBarNeutralButtonStyle\">?attr/buttonBarButtonStyle</item>\n\n        <!-- Dialog attributes -->\n        <item name=\"dialogTheme\">@style/Theme.AppCompat.Light.Dialog</item>\n        <item name=\"dialogPreferredPadding\">@dimen/abc_dialog_padding_material</item>\n\n        <item name=\"alertDialogTheme\">@style/Theme.AppCompat.Light.Dialog.Alert</item>\n        <item name=\"alertDialogStyle\">@style/AlertDialog.AppCompat.Light</item>\n        <item name=\"alertDialogCenterButtons\">false</item>\n        <item name=\"textColorAlertDialogListItem\">@color/abc_primary_text_material_light</item>\n        <item name=\"listDividerAlertDialog\">@null</item>\n\n        <!-- Define these here; ContextThemeWrappers around themes that define them should\n             always clear these values. -->\n        <item name=\"windowFixedWidthMajor\">0dp</item>\n        <item name=\"windowFixedWidthMinor\">0dp</item>\n        <item name=\"windowFixedHeightMajor\">0dp</item>\n        <item name=\"windowFixedHeightMinor\">0dp</item>\n    </style>\n    <style name=\"Base.V7.Theme.AppCompat.Light.Dialog\" parent=\"Base.Theme.AppCompat.Light\">\n        <item name=\"android:colorBackground\">@color/background_floating_material_light</item>\n        <item name=\"android:colorBackgroundCacheHint\">@null</item>\n\n        <item name=\"android:windowFrame\">@null</item>\n        <item name=\"android:windowTitleStyle\">@style/RtlOverlay.DialogWindowTitle.AppCompat</item>\n        <item name=\"android:windowTitleBackgroundStyle\">@style/Base.DialogWindowTitleBackground.AppCompat</item>\n        <item name=\"android:windowBackground\">@drawable/abc_dialog_material_background_light</item>\n        <item name=\"android:windowIsFloating\">true</item>\n        <item name=\"android:backgroundDimEnabled\">true</item>\n        <item name=\"android:windowContentOverlay\">@null</item>\n        <item name=\"android:windowAnimationStyle\">@style/Animation.AppCompat.Dialog</item>\n        <item name=\"android:windowSoftInputMode\">stateUnspecified|adjustPan</item>\n\n        <item name=\"windowActionBar\">false</item>\n        <item name=\"windowActionModeOverlay\">true</item>\n\n        <item name=\"listPreferredItemPaddingLeft\">24dip</item>\n        <item name=\"listPreferredItemPaddingRight\">24dip</item>\n\n        <item name=\"android:listDivider\">@null</item>\n    </style>\n    <style name=\"Base.V7.Widget.AppCompat.AutoCompleteTextView\" parent=\"android:Widget.AutoCompleteTextView\">\n        <item name=\"android:dropDownSelector\">?attr/listChoiceBackgroundIndicator</item>\n        <item name=\"android:popupBackground\">@drawable/abc_popup_background_mtrl_mult</item>\n        <item name=\"android:background\">?attr/editTextBackground</item>\n        <item name=\"android:textColor\">?attr/editTextColor</item>\n        <item name=\"android:textAppearance\">?android:attr/textAppearanceMediumInverse</item>\n    </style>\n    <style name=\"Base.V7.Widget.AppCompat.EditText\" parent=\"android:Widget.EditText\">\n        <item name=\"android:background\">?attr/editTextBackground</item>\n        <item name=\"android:textColor\">?attr/editTextColor</item>\n        <item name=\"android:textAppearance\">?android:attr/textAppearanceMediumInverse</item>\n    </style>\n    <style name=\"Base.Widget.AppCompat.ActionBar\" parent=\"\">\n        <item name=\"displayOptions\">showTitle</item>\n        <item name=\"divider\">?attr/dividerVertical</item>\n        <item name=\"height\">?attr/actionBarSize</item>\n\n        <item name=\"titleTextStyle\">@style/TextAppearance.AppCompat.Widget.ActionBar.Title</item>\n        <item name=\"subtitleTextStyle\">@style/TextAppearance.AppCompat.Widget.ActionBar.Subtitle</item>\n\n        <item name=\"background\">@null</item>\n        <item name=\"backgroundStacked\">@null</item>\n        <item name=\"backgroundSplit\">@null</item>\n\n        <item name=\"actionButtonStyle\">@style/Widget.AppCompat.ActionButton</item>\n        <item name=\"actionOverflowButtonStyle\">@style/Widget.AppCompat.ActionButton.Overflow</item>\n\n        <item name=\"android:gravity\">center_vertical</item>\n        <item name=\"contentInsetStart\">@dimen/abc_action_bar_content_inset_material</item>\n        <item name=\"contentInsetEnd\">@dimen/abc_action_bar_content_inset_material</item>\n        <item name=\"elevation\">8dp</item>\n        <item name=\"popupTheme\">?attr/actionBarPopupTheme</item>\n    </style>\n    <style name=\"Base.Widget.AppCompat.ActionBar.Solid\">\n        <item name=\"background\">?attr/colorPrimary</item>\n        <item name=\"backgroundStacked\">?attr/colorPrimary</item>\n        <item name=\"backgroundSplit\">?attr/colorPrimary</item>\n    </style>\n    <style name=\"Base.Widget.AppCompat.ActionBar.TabBar\" parent=\"\">\n        <item name=\"divider\">?attr/actionBarDivider</item>\n        <item name=\"showDividers\">middle</item>\n        <item name=\"dividerPadding\">8dip</item>\n    </style>\n    <style name=\"Base.Widget.AppCompat.ActionBar.TabText\" parent=\"\">\n        <item name=\"android:textAppearance\">@style/TextAppearance.AppCompat.Medium</item>\n        <item name=\"android:textColor\">?android:attr/textColorPrimary</item>\n        <item name=\"android:textSize\">12sp</item>\n        <item name=\"android:textStyle\">bold</item>\n        <item name=\"android:ellipsize\">marquee</item>\n        <item name=\"android:maxLines\">2</item>\n        <item name=\"android:maxWidth\">180dp</item>\n        <item name=\"textAllCaps\">true</item>\n    </style>\n    <style name=\"Base.Widget.AppCompat.ActionBar.TabView\" parent=\"\">\n        <item name=\"android:background\">@drawable/abc_tab_indicator_material</item>\n        <item name=\"android:gravity\">center_horizontal</item>\n        <item name=\"android:paddingLeft\">16dip</item>\n        <item name=\"android:paddingRight\">16dip</item>\n        <item name=\"android:layout_width\">0dip</item>\n        <item name=\"android:layout_weight\">1</item>\n        <item name=\"android:minWidth\">80dip</item>\n    </style>\n    <style name=\"Base.Widget.AppCompat.ActionButton\" parent=\"\">\n        <item name=\"android:background\">?attr/actionBarItemBackground</item>\n        <item name=\"android:paddingLeft\">12dip</item>\n        <item name=\"android:paddingRight\">12dip</item>\n        <item name=\"android:minWidth\">@dimen/abc_action_button_min_width_material</item>\n        <item name=\"android:minHeight\">@dimen/abc_action_button_min_height_material</item>\n        <item name=\"android:scaleType\">center</item>\n        <item name=\"android:gravity\">center</item>\n        <item name=\"android:maxLines\">2</item>\n        <item name=\"textAllCaps\">@bool/abc_config_actionMenuItemAllCaps</item>\n    </style>\n    <style name=\"Base.Widget.AppCompat.ActionButton.CloseMode\">\n        <item name=\"android:background\">?attr/controlBackground</item>\n    </style>\n    <style name=\"Base.Widget.AppCompat.ActionButton.Overflow\">\n        <item name=\"android:src\">@drawable/abc_ic_menu_moreoverflow_mtrl_alpha</item>\n        <item name=\"android:background\">?attr/actionBarItemBackground</item>\n        <item name=\"android:contentDescription\">@string/abc_action_menu_overflow_description</item>\n        <item name=\"android:minWidth\">@dimen/abc_action_button_min_width_overflow_material</item>\n        <item name=\"android:minHeight\">@dimen/abc_action_button_min_height_material</item>\n    </style>\n    <style name=\"Base.Widget.AppCompat.ActionMode\" parent=\"\">\n        <item name=\"background\">?attr/actionModeBackground</item>\n        <item name=\"backgroundSplit\">?attr/actionModeSplitBackground</item>\n        <item name=\"height\">?attr/actionBarSize</item>\n        <item name=\"titleTextStyle\">@style/TextAppearance.AppCompat.Widget.ActionMode.Title</item>\n        <item name=\"subtitleTextStyle\">@style/TextAppearance.AppCompat.Widget.ActionMode.Subtitle</item>\n        <item name=\"closeItemLayout\">@layout/abc_action_mode_close_item_material</item>\n    </style>\n    <style name=\"Base.Widget.AppCompat.ActivityChooserView\" parent=\"\">\n        <item name=\"android:gravity\">center</item>\n        <item name=\"android:background\">@drawable/abc_ab_share_pack_mtrl_alpha</item>\n        <item name=\"divider\">?attr/dividerVertical</item>\n        <item name=\"showDividers\">middle</item>\n        <item name=\"dividerPadding\">6dip</item>\n    </style>\n    <style name=\"Base.Widget.AppCompat.AutoCompleteTextView\" parent=\"Base.V7.Widget.AppCompat.AutoCompleteTextView\"/>\n    <style name=\"Base.Widget.AppCompat.Button\" parent=\"android:Widget\">\n        <item name=\"android:background\">@drawable/abc_btn_default_mtrl_shape</item>\n        <item name=\"android:textAppearance\">?android:attr/textAppearanceButton</item>\n        <item name=\"android:minHeight\">48dip</item>\n        <item name=\"android:minWidth\">88dip</item>\n        <item name=\"android:focusable\">true</item>\n        <item name=\"android:clickable\">true</item>\n        <item name=\"android:gravity\">center_vertical|center_horizontal</item>\n    </style>\n    <style name=\"Base.Widget.AppCompat.Button.Borderless\">\n        <item name=\"android:background\">@drawable/abc_btn_borderless_material</item>\n    </style>\n    <style name=\"Base.Widget.AppCompat.Button.Borderless.Colored\">\n        <item name=\"android:textColor\">?attr/colorAccent</item>\n    </style>\n    <style name=\"Base.Widget.AppCompat.Button.ButtonBar.AlertDialog\" parent=\"Widget.AppCompat.Button.Borderless.Colored\">\n        <item name=\"android:minWidth\">64dp</item>\n        <item name=\"android:maxLines\">2</item>\n        <item name=\"android:minHeight\">@dimen/abc_alert_dialog_button_bar_height</item>\n    </style>\n    <style name=\"Base.Widget.AppCompat.Button.Colored\">\n        <item name=\"android:background\">@drawable/abc_btn_colored_material</item>\n        <item name=\"android:textAppearance\">@style/TextAppearance.AppCompat.Widget.Button.Inverse</item>\n    </style>\n    <style name=\"Base.Widget.AppCompat.Button.Small\">\n        <item name=\"android:minHeight\">48dip</item>\n        <item name=\"android:minWidth\">48dip</item>\n    </style>\n    <style name=\"Base.Widget.AppCompat.ButtonBar\" parent=\"android:Widget\">\n        <item name=\"android:background\">@null</item>\n    </style>\n    <style name=\"Base.Widget.AppCompat.ButtonBar.AlertDialog\"/>\n    <style name=\"Base.Widget.AppCompat.CompoundButton.CheckBox\" parent=\"android:Widget.CompoundButton.CheckBox\">\n        <item name=\"android:button\">?android:attr/listChoiceIndicatorMultiple</item>\n        <item name=\"android:background\">?attr/controlBackground</item>\n    </style>\n    <style name=\"Base.Widget.AppCompat.CompoundButton.RadioButton\" parent=\"android:Widget.CompoundButton.RadioButton\">\n        <item name=\"android:button\">?android:attr/listChoiceIndicatorSingle</item>\n        <item name=\"android:background\">?attr/controlBackground</item>\n    </style>\n    <style name=\"Base.Widget.AppCompat.CompoundButton.Switch\" parent=\"android:Widget.CompoundButton\">\n        <item name=\"track\">@drawable/abc_switch_track_mtrl_alpha</item>\n        <item name=\"android:thumb\">@drawable/abc_switch_thumb_material</item>\n        <item name=\"switchTextAppearance\">@style/TextAppearance.AppCompat.Widget.Switch</item>\n        <item name=\"android:background\">?attr/controlBackground</item>\n        <item name=\"showText\">false</item>\n        <item name=\"switchPadding\">@dimen/abc_switch_padding</item>\n    </style>\n    <style name=\"Base.Widget.AppCompat.DrawerArrowToggle\" parent=\"Base.Widget.AppCompat.DrawerArrowToggle.Common\">\n        <item name=\"barLength\">18dp</item>\n        <item name=\"gapBetweenBars\">3dp</item>\n        <item name=\"drawableSize\">24dp</item>\n    </style>\n    <style name=\"Base.Widget.AppCompat.DrawerArrowToggle.Common\" parent=\"\">\n        <item name=\"color\">?android:attr/textColorSecondary</item>\n        <item name=\"spinBars\">true</item>\n        <item name=\"thickness\">2dp</item>\n        <item name=\"arrowShaftLength\">16dp</item>\n        <item name=\"arrowHeadLength\">8dp</item>\n    </style>\n    <style name=\"Base.Widget.AppCompat.DropDownItem.Spinner\" parent=\"\">\n        <item name=\"android:textAppearance\">@style/TextAppearance.AppCompat.Widget.DropDownItem</item>\n        <item name=\"android:paddingLeft\">8dp</item>\n        <item name=\"android:paddingRight\">8dp</item>\n        <item name=\"android:gravity\">center_vertical</item>\n    </style>\n    <style name=\"Base.Widget.AppCompat.EditText\" parent=\"Base.V7.Widget.AppCompat.EditText\"/>\n    <style name=\"Base.Widget.AppCompat.Light.ActionBar\" parent=\"Base.Widget.AppCompat.ActionBar\">\n        <item name=\"actionButtonStyle\">@style/Widget.AppCompat.Light.ActionButton</item>\n        <item name=\"actionOverflowButtonStyle\">@style/Widget.AppCompat.Light.ActionButton.Overflow</item>\n    </style>\n    <style name=\"Base.Widget.AppCompat.Light.ActionBar.Solid\">\n        <item name=\"background\">?attr/colorPrimary</item>\n        <item name=\"backgroundStacked\">?attr/colorPrimary</item>\n        <item name=\"backgroundSplit\">?attr/colorPrimary</item>\n    </style>\n    <style name=\"Base.Widget.AppCompat.Light.ActionBar.TabBar\" parent=\"Base.Widget.AppCompat.ActionBar.TabBar\">\n    </style>\n    <style name=\"Base.Widget.AppCompat.Light.ActionBar.TabText\" parent=\"Base.Widget.AppCompat.ActionBar.TabText\">\n    </style>\n    <style name=\"Base.Widget.AppCompat.Light.ActionBar.TabText.Inverse\" parent=\"Base.Widget.AppCompat.Light.ActionBar.TabText\">\n        <item name=\"android:textAppearance\">@style/TextAppearance.AppCompat.Medium.Inverse</item>\n    </style>\n    <style name=\"Base.Widget.AppCompat.Light.ActionBar.TabView\" parent=\"Base.Widget.AppCompat.ActionBar.TabView\">\n        <item name=\"android:background\">@drawable/abc_tab_indicator_material</item>\n    </style>\n    <style name=\"Base.Widget.AppCompat.Light.PopupMenu\" parent=\"@style/Widget.AppCompat.ListPopupWindow\">\n    </style>\n    <style name=\"Base.Widget.AppCompat.Light.PopupMenu.Overflow\">\n        <item name=\"overlapAnchor\">true</item>\n        <item name=\"android:dropDownHorizontalOffset\">-4dip</item>\n    </style>\n    <style name=\"Base.Widget.AppCompat.ListPopupWindow\" parent=\"\">\n        <item name=\"android:dropDownSelector\">?attr/listChoiceBackgroundIndicator</item>\n        <item name=\"android:popupBackground\">@drawable/abc_popup_background_mtrl_mult</item>\n        <item name=\"android:dropDownVerticalOffset\">0dip</item>\n        <item name=\"android:dropDownHorizontalOffset\">0dip</item>\n        <item name=\"android:dropDownWidth\">wrap_content</item>\n    </style>\n    <style name=\"Base.Widget.AppCompat.ListView\" parent=\"android:Widget.ListView\">\n        <item name=\"android:listSelector\">?attr/listChoiceBackgroundIndicator</item>\n    </style>\n    <style name=\"Base.Widget.AppCompat.ListView.DropDown\">\n        <item name=\"android:divider\">@null</item>\n    </style>\n    <style name=\"Base.Widget.AppCompat.ListView.Menu\" parent=\"android:Widget.ListView.Menu\">\n        <item name=\"android:listSelector\">?attr/listChoiceBackgroundIndicator</item>\n        <item name=\"android:divider\">?attr/dividerHorizontal</item>\n    </style>\n    <style name=\"Base.Widget.AppCompat.PopupMenu\" parent=\"@style/Widget.AppCompat.ListPopupWindow\">\n    </style>\n    <style name=\"Base.Widget.AppCompat.PopupMenu.Overflow\">\n        <item name=\"overlapAnchor\">true</item>\n        <item name=\"android:dropDownHorizontalOffset\">-4dip</item>\n    </style>\n    <style name=\"Base.Widget.AppCompat.PopupWindow\" parent=\"android:Widget.PopupWindow\">\n    </style>\n    <style name=\"Base.Widget.AppCompat.ProgressBar\" parent=\"android:Widget.ProgressBar\">\n        <item name=\"android:minWidth\">@dimen/abc_action_bar_progress_bar_size</item>\n        <item name=\"android:maxWidth\">@dimen/abc_action_bar_progress_bar_size</item>\n        <item name=\"android:minHeight\">@dimen/abc_action_bar_progress_bar_size</item>\n        <item name=\"android:maxHeight\">@dimen/abc_action_bar_progress_bar_size</item>\n    </style>\n    <style name=\"Base.Widget.AppCompat.ProgressBar.Horizontal\" parent=\"android:Widget.ProgressBar.Horizontal\">\n    </style>\n    <style name=\"Base.Widget.AppCompat.RatingBar\" parent=\"android:Widget.RatingBar\">\n        <item name=\"android:progressDrawable\">@drawable/abc_ratingbar_full_material</item>\n        <item name=\"android:indeterminateDrawable\">@drawable/abc_ratingbar_full_material</item>\n    </style>\n    <style name=\"Base.Widget.AppCompat.SearchView\" parent=\"android:Widget\">\n        <item name=\"layout\">@layout/abc_search_view</item>\n        <item name=\"queryBackground\">@drawable/abc_textfield_search_material</item>\n        <item name=\"submitBackground\">@drawable/abc_textfield_search_material</item>\n        <item name=\"closeIcon\">@drawable/abc_ic_clear_mtrl_alpha</item>\n        <item name=\"searchIcon\">@drawable/abc_ic_search_api_mtrl_alpha</item>\n        <item name=\"searchHintIcon\">@drawable/abc_ic_search_api_mtrl_alpha</item>\n        <item name=\"goIcon\">@drawable/abc_ic_go_search_api_mtrl_alpha</item>\n        <item name=\"voiceIcon\">@drawable/abc_ic_voice_search_api_mtrl_alpha</item>\n        <item name=\"commitIcon\">@drawable/abc_ic_commit_search_api_mtrl_alpha</item>\n        <item name=\"suggestionRowLayout\">@layout/abc_search_dropdown_item_icons_2line</item>\n    </style>\n    <style name=\"Base.Widget.AppCompat.SearchView.ActionBar\">\n        <item name=\"queryBackground\">@null</item>\n        <item name=\"submitBackground\">@null</item>\n        <item name=\"searchHintIcon\">@null</item>\n        <item name=\"defaultQueryHint\">@string/abc_search_hint</item>\n    </style>\n    <style name=\"Base.Widget.AppCompat.Spinner\" parent=\"Platform.Widget.AppCompat.Spinner\">\n        <item name=\"android:background\">@drawable/abc_spinner_mtrl_am_alpha</item>\n        <item name=\"android:popupBackground\">@drawable/abc_popup_background_mtrl_mult</item>\n        <item name=\"android:dropDownSelector\">?attr/listChoiceBackgroundIndicator</item>\n        <item name=\"android:dropDownVerticalOffset\">0dip</item>\n        <item name=\"android:dropDownHorizontalOffset\">0dip</item>\n        <item name=\"android:dropDownWidth\">wrap_content</item>\n        <item name=\"android:clickable\">true</item>\n        <item name=\"android:gravity\">left|start|center_vertical</item>\n        <item name=\"overlapAnchor\">true</item>\n    </style>\n    <style name=\"Base.Widget.AppCompat.Spinner.Underlined\">\n        <item name=\"android:background\">@drawable/abc_spinner_textfield_background_material</item>\n    </style>\n    <style name=\"Base.Widget.AppCompat.TextView.SpinnerItem\" parent=\"android:Widget.TextView.SpinnerItem\">\n        <item name=\"android:textAppearance\">@style/TextAppearance.AppCompat.Widget.TextView.SpinnerItem</item>\n        <item name=\"android:paddingLeft\">8dp</item>\n        <item name=\"android:paddingRight\">8dp</item>\n    </style>\n    <style name=\"Base.Widget.AppCompat.Toolbar\" parent=\"android:Widget\">\n        <item name=\"titleTextAppearance\">@style/TextAppearance.Widget.AppCompat.Toolbar.Title</item>\n        <item name=\"subtitleTextAppearance\">@style/TextAppearance.Widget.AppCompat.Toolbar.Subtitle</item>\n        <item name=\"android:minHeight\">?attr/actionBarSize</item>\n        <item name=\"titleMargins\">4dp</item>\n        <item name=\"maxButtonHeight\">56dp</item>\n        <item name=\"collapseIcon\">?attr/homeAsUpIndicator</item>\n        <item name=\"collapseContentDescription\">@string/abc_toolbar_collapse_description</item>\n        <item name=\"contentInsetStart\">16dp</item>\n        <item name=\"android:paddingLeft\">@dimen/abc_action_bar_default_padding_start_material</item>\n        <item name=\"android:paddingRight\">@dimen/abc_action_bar_default_padding_end_material</item>\n    </style>\n    <style name=\"Base.Widget.AppCompat.Toolbar.Button.Navigation\" parent=\"android:Widget\">\n        <item name=\"android:background\">?attr/controlBackground</item>\n        <item name=\"android:minWidth\">56dp</item>\n        <item name=\"android:scaleType\">center</item>\n    </style>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/values/values.xml -->\n    <eat-comment/>\n    <style name=\"DialogAnimation\">\n    <item name=\"android:windowEnterAnimation\">@anim/slide_up</item>\n    <item name=\"android:windowExitAnimation\">@anim/slide_down</item>\n  </style>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml -->\n    <eat-comment/>\n    <style name=\"Platform.AppCompat\" parent=\"android:Theme\">\n        <item name=\"android:windowNoTitle\">true</item>\n\n        <!-- Window colors -->\n        <item name=\"android:colorForeground\">@color/foreground_material_dark</item>\n        <item name=\"android:colorForegroundInverse\">@color/foreground_material_light</item>\n        <item name=\"android:colorBackground\">@color/background_material_dark</item>\n        <item name=\"android:colorBackgroundCacheHint\">@color/abc_background_cache_hint_selector_material_dark</item>\n        <item name=\"android:disabledAlpha\">@dimen/abc_disabled_alpha_material_dark</item>\n        <item name=\"android:backgroundDimAmount\">0.6</item>\n        <item name=\"android:windowBackground\">@color/background_material_dark</item>\n\n        <!-- Text colors -->\n        <item name=\"android:textColorPrimary\">@color/abc_primary_text_material_dark</item>\n        <item name=\"android:textColorPrimaryInverse\">@color/abc_primary_text_material_light</item>\n        <item name=\"android:textColorPrimaryDisableOnly\">@color/abc_primary_text_disable_only_material_dark</item>\n        <item name=\"android:textColorSecondary\">@color/abc_secondary_text_material_dark</item>\n        <item name=\"android:textColorSecondaryInverse\">@color/abc_secondary_text_material_light</item>\n        <item name=\"android:textColorTertiary\">@color/abc_secondary_text_material_dark</item>\n        <item name=\"android:textColorTertiaryInverse\">@color/abc_secondary_text_material_light</item>\n        <item name=\"android:textColorHint\">@color/hint_foreground_material_dark</item>\n        <item name=\"android:textColorHintInverse\">@color/hint_foreground_material_light</item>\n        <item name=\"android:textColorHighlight\">@color/highlighted_text_material_dark</item>\n        <item name=\"android:textColorLink\">?attr/colorAccent</item>\n\n        <!-- Text styles -->\n        <item name=\"android:textAppearance\">@style/TextAppearance.AppCompat</item>\n        <item name=\"android:textAppearanceInverse\">@style/TextAppearance.AppCompat.Inverse</item>\n        <item name=\"android:textAppearanceLarge\">@style/TextAppearance.AppCompat.Large</item>\n        <item name=\"android:textAppearanceLargeInverse\">@style/TextAppearance.AppCompat.Large.Inverse</item>\n        <item name=\"android:textAppearanceMedium\">@style/TextAppearance.AppCompat.Medium</item>\n        <item name=\"android:textAppearanceMediumInverse\">@style/TextAppearance.AppCompat.Medium.Inverse</item>\n        <item name=\"android:textAppearanceSmall\">@style/TextAppearance.AppCompat.Small</item>\n        <item name=\"android:textAppearanceSmallInverse\">@style/TextAppearance.AppCompat.Small.Inverse</item>\n\n        <item name=\"android:listChoiceIndicatorSingle\">@drawable/abc_btn_radio_material</item>\n        <item name=\"android:listChoiceIndicatorMultiple\">@drawable/abc_btn_check_material</item>\n    </style>\n    <style name=\"Platform.AppCompat.Light\" parent=\"android:Theme.Light\">\n        <item name=\"android:windowNoTitle\">true</item>\n\n        <!-- Window colors -->\n        <item name=\"android:colorForeground\">@color/foreground_material_light</item>\n        <item name=\"android:colorForegroundInverse\">@color/foreground_material_dark</item>\n        <item name=\"android:colorBackground\">@color/background_material_light</item>\n        <item name=\"android:colorBackgroundCacheHint\">@color/abc_background_cache_hint_selector_material_light</item>\n        <item name=\"android:disabledAlpha\">@dimen/abc_disabled_alpha_material_light</item>\n        <item name=\"android:backgroundDimAmount\">0.6</item>\n        <item name=\"android:windowBackground\">@color/background_material_light</item>\n\n        <!-- Text colors -->\n        <item name=\"android:textColorPrimary\">@color/abc_primary_text_material_light</item>\n        <item name=\"android:textColorPrimaryInverse\">@color/abc_primary_text_material_dark</item>\n        <item name=\"android:textColorSecondary\">@color/abc_secondary_text_material_light</item>\n        <item name=\"android:textColorSecondaryInverse\">@color/abc_secondary_text_material_dark</item>\n        <item name=\"android:textColorTertiary\">@color/abc_secondary_text_material_light</item>\n        <item name=\"android:textColorTertiaryInverse\">@color/abc_secondary_text_material_dark</item>\n        <item name=\"android:textColorPrimaryDisableOnly\">@color/abc_primary_text_disable_only_material_light</item>\n        <item name=\"android:textColorPrimaryInverseDisableOnly\">@color/abc_primary_text_disable_only_material_dark</item>\n        <item name=\"android:textColorHint\">@color/hint_foreground_material_light</item>\n        <item name=\"android:textColorHintInverse\">@color/hint_foreground_material_dark</item>\n        <item name=\"android:textColorHighlight\">@color/highlighted_text_material_light</item>\n        <item name=\"android:textColorLink\">?attr/colorAccent</item>\n\n        <!-- Text styles -->\n        <item name=\"android:textAppearance\">@style/TextAppearance.AppCompat</item>\n        <item name=\"android:textAppearanceInverse\">@style/TextAppearance.AppCompat.Inverse</item>\n        <item name=\"android:textAppearanceLarge\">@style/TextAppearance.AppCompat.Large</item>\n        <item name=\"android:textAppearanceLargeInverse\">@style/TextAppearance.AppCompat.Large.Inverse</item>\n        <item name=\"android:textAppearanceMedium\">@style/TextAppearance.AppCompat.Medium</item>\n        <item name=\"android:textAppearanceMediumInverse\">@style/TextAppearance.AppCompat.Medium.Inverse</item>\n        <item name=\"android:textAppearanceSmall\">@style/TextAppearance.AppCompat.Small</item>\n        <item name=\"android:textAppearanceSmallInverse\">@style/TextAppearance.AppCompat.Small.Inverse</item>\n\n        <item name=\"android:listChoiceIndicatorSingle\">@drawable/abc_btn_radio_material</item>\n        <item name=\"android:listChoiceIndicatorMultiple\">@drawable/abc_btn_check_material</item>\n    </style>\n    <style name=\"Platform.ThemeOverlay.AppCompat\" parent=\"\"/>\n    <style name=\"Platform.ThemeOverlay.AppCompat.Dark\">\n        <!-- Action Bar styles -->\n        <item name=\"actionBarItemBackground\">@drawable/abc_item_background_holo_dark</item>\n        <item name=\"actionDropDownStyle\">@style/Widget.AppCompat.Spinner.DropDown.ActionBar</item>\n        <item name=\"selectableItemBackground\">@drawable/abc_item_background_holo_dark</item>\n\n        <!-- SearchView styles -->\n        <item name=\"android:autoCompleteTextViewStyle\">@style/Widget.AppCompat.AutoCompleteTextView</item>\n        <item name=\"android:dropDownItemStyle\">@style/Widget.AppCompat.DropDownItem.Spinner</item>\n    </style>\n    <style name=\"Platform.ThemeOverlay.AppCompat.Light\">\n        <item name=\"actionBarItemBackground\">@drawable/abc_item_background_holo_light</item>\n        <item name=\"actionDropDownStyle\">@style/Widget.AppCompat.Light.Spinner.DropDown.ActionBar</item>\n        <item name=\"selectableItemBackground\">@drawable/abc_item_background_holo_light</item>\n\n        <!-- SearchView attributes -->\n        <item name=\"android:autoCompleteTextViewStyle\">@style/Widget.AppCompat.Light.AutoCompleteTextView</item>\n        <item name=\"android:dropDownItemStyle\">@style/Widget.AppCompat.DropDownItem.Spinner</item>\n    </style>\n    <style name=\"Platform.Widget.AppCompat.Spinner\" parent=\"android:Widget.Spinner\"/>\n    <style name=\"RtlOverlay.DialogWindowTitle.AppCompat\" parent=\"Base.DialogWindowTitle.AppCompat\">\n    </style>\n    <style name=\"RtlOverlay.Widget.AppCompat.ActionBar.TitleItem\" parent=\"android:Widget\">\n        <item name=\"android:layout_gravity\">center_vertical|left</item>\n        <item name=\"android:paddingRight\">8dp</item>\n    </style>\n    <style name=\"RtlOverlay.Widget.AppCompat.ActionButton.Overflow\" parent=\"Base.Widget.AppCompat.ActionButton.Overflow\">\n        <item name=\"android:paddingLeft\">@dimen/abc_action_bar_overflow_padding_start_material</item>\n        <item name=\"android:paddingRight\">@dimen/abc_action_bar_overflow_padding_end_material</item>\n    </style>\n    <style name=\"RtlOverlay.Widget.AppCompat.DialogTitle.Icon\" parent=\"android:Widget\">\n        <item name=\"android:layout_marginRight\">8dp</item>\n    </style>\n    <style name=\"RtlOverlay.Widget.AppCompat.PopupMenuItem\" parent=\"android:Widget\">\n        <item name=\"android:paddingRight\">16dp</item>\n    </style>\n    <style name=\"RtlOverlay.Widget.AppCompat.PopupMenuItem.InternalGroup\" parent=\"android:Widget\">\n        <item name=\"android:layout_marginLeft\">16dp</item>\n    </style>\n    <style name=\"RtlOverlay.Widget.AppCompat.PopupMenuItem.Text\" parent=\"android:Widget\">\n        <item name=\"android:layout_alignParentLeft\">true</item>\n    </style>\n    <style name=\"RtlOverlay.Widget.AppCompat.Search.DropDown\" parent=\"android:Widget\">\n        <item name=\"android:paddingLeft\">@dimen/abc_dropdownitem_text_padding_left</item>\n        <item name=\"android:paddingRight\">4dp</item>\n    </style>\n    <style name=\"RtlOverlay.Widget.AppCompat.Search.DropDown.Icon1\" parent=\"android:Widget\">\n        <item name=\"android:layout_alignParentLeft\">true</item>\n    </style>\n    <style name=\"RtlOverlay.Widget.AppCompat.Search.DropDown.Icon2\" parent=\"android:Widget\">\n        <item name=\"android:layout_toLeftOf\">@id/edit_query</item>\n    </style>\n    <style name=\"RtlOverlay.Widget.AppCompat.Search.DropDown.Query\" parent=\"android:Widget\">\n        <item name=\"android:layout_alignParentRight\">true</item>\n    </style>\n    <style name=\"RtlOverlay.Widget.AppCompat.Search.DropDown.Text\" parent=\"Base.Widget.AppCompat.DropDownItem.Spinner\">\n        <item name=\"android:layout_toLeftOf\">@android:id/icon2</item>\n        <item name=\"android:layout_toRightOf\">@android:id/icon1</item>\n    </style>\n    <style name=\"RtlOverlay.Widget.AppCompat.SearchView.MagIcon\" parent=\"android:Widget\">\n        <item name=\"android:layout_marginLeft\">@dimen/abc_dropdownitem_text_padding_left</item>\n    </style>\n    <style name=\"TextAppearance.AppCompat\" parent=\"Base.TextAppearance.AppCompat\"/>\n    <style name=\"TextAppearance.AppCompat.Body1\" parent=\"Base.TextAppearance.AppCompat.Body1\"/>\n    <style name=\"TextAppearance.AppCompat.Body2\" parent=\"Base.TextAppearance.AppCompat.Body2\"/>\n    <style name=\"TextAppearance.AppCompat.Button\" parent=\"Base.TextAppearance.AppCompat.Button\"/>\n    <style name=\"TextAppearance.AppCompat.Caption\" parent=\"Base.TextAppearance.AppCompat.Caption\"/>\n    <style name=\"TextAppearance.AppCompat.Display1\" parent=\"Base.TextAppearance.AppCompat.Display1\"/>\n    <style name=\"TextAppearance.AppCompat.Display2\" parent=\"Base.TextAppearance.AppCompat.Display2\"/>\n    <style name=\"TextAppearance.AppCompat.Display3\" parent=\"Base.TextAppearance.AppCompat.Display3\"/>\n    <style name=\"TextAppearance.AppCompat.Display4\" parent=\"Base.TextAppearance.AppCompat.Display4\"/>\n    <style name=\"TextAppearance.AppCompat.Headline\" parent=\"Base.TextAppearance.AppCompat.Headline\"/>\n    <style name=\"TextAppearance.AppCompat.Inverse\" parent=\"Base.TextAppearance.AppCompat.Inverse\"/>\n    <style name=\"TextAppearance.AppCompat.Large\" parent=\"Base.TextAppearance.AppCompat.Large\"/>\n    <style name=\"TextAppearance.AppCompat.Large.Inverse\" parent=\"Base.TextAppearance.AppCompat.Large.Inverse\"/>\n    <style name=\"TextAppearance.AppCompat.Light.SearchResult.Subtitle\" parent=\"TextAppearance.AppCompat.SearchResult.Subtitle\"/>\n    <style name=\"TextAppearance.AppCompat.Light.SearchResult.Title\" parent=\"TextAppearance.AppCompat.SearchResult.Title\"/>\n    <style name=\"TextAppearance.AppCompat.Light.Widget.PopupMenu.Large\" parent=\"Base.TextAppearance.AppCompat.Light.Widget.PopupMenu.Large\">\n    </style>\n    <style name=\"TextAppearance.AppCompat.Light.Widget.PopupMenu.Small\" parent=\"Base.TextAppearance.AppCompat.Light.Widget.PopupMenu.Small\">\n    </style>\n    <style name=\"TextAppearance.AppCompat.Medium\" parent=\"Base.TextAppearance.AppCompat.Medium\"/>\n    <style name=\"TextAppearance.AppCompat.Medium.Inverse\" parent=\"Base.TextAppearance.AppCompat.Medium.Inverse\"/>\n    <style name=\"TextAppearance.AppCompat.Menu\" parent=\"Base.TextAppearance.AppCompat.Menu\"/>\n    <style name=\"TextAppearance.AppCompat.SearchResult.Subtitle\" parent=\"Base.TextAppearance.AppCompat.SearchResult.Subtitle\">\n    </style>\n    <style name=\"TextAppearance.AppCompat.SearchResult.Title\" parent=\"Base.TextAppearance.AppCompat.SearchResult.Title\">\n    </style>\n    <style name=\"TextAppearance.AppCompat.Small\" parent=\"Base.TextAppearance.AppCompat.Small\"/>\n    <style name=\"TextAppearance.AppCompat.Small.Inverse\" parent=\"Base.TextAppearance.AppCompat.Small.Inverse\"/>\n    <style name=\"TextAppearance.AppCompat.Subhead\" parent=\"Base.TextAppearance.AppCompat.Subhead\"/>\n    <style name=\"TextAppearance.AppCompat.Subhead.Inverse\" parent=\"Base.TextAppearance.AppCompat.Subhead.Inverse\"/>\n    <style name=\"TextAppearance.AppCompat.Title\" parent=\"Base.TextAppearance.AppCompat.Title\"/>\n    <style name=\"TextAppearance.AppCompat.Title.Inverse\" parent=\"Base.TextAppearance.AppCompat.Title.Inverse\"/>\n    <style name=\"TextAppearance.AppCompat.Widget.ActionBar.Menu\" parent=\"Base.TextAppearance.AppCompat.Widget.ActionBar.Menu\">\n    </style>\n    <style name=\"TextAppearance.AppCompat.Widget.ActionBar.Subtitle\" parent=\"Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle\"/>\n    <style name=\"TextAppearance.AppCompat.Widget.ActionBar.Subtitle.Inverse\" parent=\"Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle.Inverse\">\n    </style>\n    <style name=\"TextAppearance.AppCompat.Widget.ActionBar.Title\" parent=\"Base.TextAppearance.AppCompat.Widget.ActionBar.Title\"/>\n    <style name=\"TextAppearance.AppCompat.Widget.ActionBar.Title.Inverse\" parent=\"Base.TextAppearance.AppCompat.Widget.ActionBar.Title.Inverse\">\n    </style>\n    <style name=\"TextAppearance.AppCompat.Widget.ActionMode.Subtitle\" parent=\"Base.TextAppearance.AppCompat.Widget.ActionMode.Subtitle\">\n    </style>\n    <style name=\"TextAppearance.AppCompat.Widget.ActionMode.Subtitle.Inverse\" parent=\"TextAppearance.AppCompat.Widget.ActionMode.Subtitle\"/>\n    <style name=\"TextAppearance.AppCompat.Widget.ActionMode.Title\" parent=\"Base.TextAppearance.AppCompat.Widget.ActionMode.Title\">\n    </style>\n    <style name=\"TextAppearance.AppCompat.Widget.ActionMode.Title.Inverse\" parent=\"TextAppearance.AppCompat.Widget.ActionMode.Title\"/>\n    <style name=\"TextAppearance.AppCompat.Widget.Button\" parent=\"Base.TextAppearance.AppCompat.Widget.Button\"/>\n    <style name=\"TextAppearance.AppCompat.Widget.Button.Inverse\" parent=\"Base.TextAppearance.AppCompat.Widget.Button.Inverse\"/>\n    <style name=\"TextAppearance.AppCompat.Widget.DropDownItem\" parent=\"Base.TextAppearance.AppCompat.Widget.DropDownItem\">\n    </style>\n    <style name=\"TextAppearance.AppCompat.Widget.PopupMenu.Large\" parent=\"Base.TextAppearance.AppCompat.Widget.PopupMenu.Large\">\n    </style>\n    <style name=\"TextAppearance.AppCompat.Widget.PopupMenu.Small\" parent=\"Base.TextAppearance.AppCompat.Widget.PopupMenu.Small\">\n    </style>\n    <style name=\"TextAppearance.AppCompat.Widget.Switch\" parent=\"Base.TextAppearance.AppCompat.Widget.Switch\"/>\n    <style name=\"TextAppearance.AppCompat.Widget.TextView.SpinnerItem\" parent=\"Base.TextAppearance.AppCompat.Widget.TextView.SpinnerItem\"/>\n    <style name=\"TextAppearance.StatusBar.EventContent\" parent=\"\"/>\n    <style name=\"TextAppearance.StatusBar.EventContent.Info\" parent=\"\"/>\n    <style name=\"TextAppearance.StatusBar.EventContent.Line2\" parent=\"\"/>\n    <style name=\"TextAppearance.StatusBar.EventContent.Time\" parent=\"\"/>\n    <style name=\"TextAppearance.StatusBar.EventContent.Title\" parent=\"\"/>\n    <style name=\"TextAppearance.Widget.AppCompat.ExpandedMenu.Item\" parent=\"Base.TextAppearance.Widget.AppCompat.ExpandedMenu.Item\">\n    </style>\n    <style name=\"TextAppearance.Widget.AppCompat.Toolbar.Subtitle\" parent=\"Base.TextAppearance.Widget.AppCompat.Toolbar.Subtitle\">\n    </style>\n    <style name=\"TextAppearance.Widget.AppCompat.Toolbar.Title\" parent=\"Base.TextAppearance.Widget.AppCompat.Toolbar.Title\">\n    </style>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/values/values.xml -->\n    <eat-comment/>\n    <style name=\"Theme\"/>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml -->\n    <eat-comment/>\n    <style name=\"Theme.AppCompat\" parent=\"Base.Theme.AppCompat\"/>\n    <style name=\"Theme.AppCompat.CompactMenu\" parent=\"Base.Theme.AppCompat.CompactMenu\"/>\n    <style name=\"Theme.AppCompat.Dialog\" parent=\"Base.Theme.AppCompat.Dialog\"/>\n    <style name=\"Theme.AppCompat.Dialog.Alert\" parent=\"Base.Theme.AppCompat.Dialog.Alert\"/>\n    <style name=\"Theme.AppCompat.Dialog.MinWidth\" parent=\"Base.Theme.AppCompat.Dialog.MinWidth\"/>\n    <style name=\"Theme.AppCompat.DialogWhenLarge\" parent=\"Base.Theme.AppCompat.DialogWhenLarge\">\n    </style>\n    <style name=\"Theme.AppCompat.Light\" parent=\"Base.Theme.AppCompat.Light\"/>\n    <style name=\"Theme.AppCompat.Light.DarkActionBar\" parent=\"Base.Theme.AppCompat.Light.DarkActionBar\"/>\n    <style name=\"Theme.AppCompat.Light.Dialog\" parent=\"Base.Theme.AppCompat.Light.Dialog\"/>\n    <style name=\"Theme.AppCompat.Light.Dialog.Alert\" parent=\"Base.Theme.AppCompat.Light.Dialog.Alert\"/>\n    <style name=\"Theme.AppCompat.Light.Dialog.MinWidth\" parent=\"Base.Theme.AppCompat.Light.Dialog.MinWidth\"/>\n    <style name=\"Theme.AppCompat.Light.DialogWhenLarge\" parent=\"Base.Theme.AppCompat.Light.DialogWhenLarge\">\n    </style>\n    <style name=\"Theme.AppCompat.Light.NoActionBar\">\n        <item name=\"windowActionBar\">false</item>\n        <item name=\"windowNoTitle\">true</item>\n    </style>\n    <style name=\"Theme.AppCompat.NoActionBar\">\n        <item name=\"windowActionBar\">false</item>\n        <item name=\"windowNoTitle\">true</item>\n    </style>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/values/values.xml -->\n    <eat-comment/>\n    <style name=\"Theme.Catalyst\"/>\n    <style name=\"Theme.Catalyst.RedBox\" parent=\"@style/Theme.AppCompat.DialogWhenLarge\">\n    <item name=\"android:windowBackground\">@color/catalyst_redbox_background</item>\n    <item name=\"android:windowAnimationStyle\">@style/Animation.Catalyst.RedBox</item>\n    <item name=\"android:inAnimation\">@android:anim/fade_in</item>\n    <item name=\"android:outAnimation\">@android:anim/fade_out</item>\n    <item name=\"android:textColor\">@android:color/white</item>\n  </style>\n    <style name=\"Theme.FullScreenDialog\">\n    <item name=\"android:windowNoTitle\">true</item>\n    <item name=\"android:windowIsFloating\">false</item>\n    <item name=\"android:windowBackground\">@android:color/transparent</item>\n  </style>\n    <style name=\"Theme.FullScreenDialogAnimated\" parent=\"Theme.FullScreenDialog\">\n    <item name=\"android:windowAnimationStyle\">@style/DialogAnimation</item>\n  </style>\n    <style name=\"Theme.ReactNative.AppCompat.Light\" parent=\"@style/Theme.AppCompat.Light.NoActionBar\">\n        <item name=\"android:textColor\">@android:color/black</item>\n    </style>\n    <style name=\"Theme.ReactNative.AppCompat.Light.NoActionBar.FullScreen\" parent=\"@style/Theme.ReactNative.AppCompat.Light\">\n        <item name=\"android:windowNoTitle\">true</item>\n        <item name=\"windowActionBar\">false</item>\n        <item name=\"android:windowFullscreen\">true</item>\n        <item name=\"android:windowContentOverlay\">@null</item>\n    </style>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values/values.xml -->\n    <eat-comment/>\n    <style name=\"ThemeOverlay.AppCompat\" parent=\"Base.ThemeOverlay.AppCompat\"/>\n    <style name=\"ThemeOverlay.AppCompat.ActionBar\" parent=\"Base.ThemeOverlay.AppCompat.ActionBar\"/>\n    <style name=\"ThemeOverlay.AppCompat.Dark\" parent=\"Base.ThemeOverlay.AppCompat.Dark\"/>\n    <style name=\"ThemeOverlay.AppCompat.Dark.ActionBar\" parent=\"Base.ThemeOverlay.AppCompat.Dark.ActionBar\"/>\n    <style name=\"ThemeOverlay.AppCompat.Light\" parent=\"Base.ThemeOverlay.AppCompat.Light\"/>\n    <style name=\"Widget.AppCompat.ActionBar\" parent=\"Base.Widget.AppCompat.ActionBar\">\n    </style>\n    <style name=\"Widget.AppCompat.ActionBar.Solid\" parent=\"Base.Widget.AppCompat.ActionBar.Solid\">\n    </style>\n    <style name=\"Widget.AppCompat.ActionBar.TabBar\" parent=\"Base.Widget.AppCompat.ActionBar.TabBar\">\n    </style>\n    <style name=\"Widget.AppCompat.ActionBar.TabText\" parent=\"Base.Widget.AppCompat.ActionBar.TabText\">\n    </style>\n    <style name=\"Widget.AppCompat.ActionBar.TabView\" parent=\"Base.Widget.AppCompat.ActionBar.TabView\">\n    </style>\n    <style name=\"Widget.AppCompat.ActionButton\" parent=\"Base.Widget.AppCompat.ActionButton\"/>\n    <style name=\"Widget.AppCompat.ActionButton.CloseMode\" parent=\"Base.Widget.AppCompat.ActionButton.CloseMode\"/>\n    <style name=\"Widget.AppCompat.ActionButton.Overflow\" parent=\"RtlOverlay.Widget.AppCompat.ActionButton.Overflow\"/>\n    <style name=\"Widget.AppCompat.ActionMode\" parent=\"Base.Widget.AppCompat.ActionMode\">\n    </style>\n    <style name=\"Widget.AppCompat.ActivityChooserView\" parent=\"Base.Widget.AppCompat.ActivityChooserView\">\n    </style>\n    <style name=\"Widget.AppCompat.AutoCompleteTextView\" parent=\"Base.Widget.AppCompat.AutoCompleteTextView\">\n    </style>\n    <style name=\"Widget.AppCompat.Button\" parent=\"Base.Widget.AppCompat.Button\"/>\n    <style name=\"Widget.AppCompat.Button.Borderless\" parent=\"Base.Widget.AppCompat.Button.Borderless\"/>\n    <style name=\"Widget.AppCompat.Button.Borderless.Colored\" parent=\"Base.Widget.AppCompat.Button.Borderless.Colored\"/>\n    <style name=\"Widget.AppCompat.Button.ButtonBar.AlertDialog\" parent=\"Base.Widget.AppCompat.Button.ButtonBar.AlertDialog\"/>\n    <style name=\"Widget.AppCompat.Button.Colored\" parent=\"Base.Widget.AppCompat.Button.Colored\"/>\n    <style name=\"Widget.AppCompat.Button.Small\" parent=\"Base.Widget.AppCompat.Button.Small\"/>\n    <style name=\"Widget.AppCompat.ButtonBar\" parent=\"Base.Widget.AppCompat.ButtonBar\"/>\n    <style name=\"Widget.AppCompat.ButtonBar.AlertDialog\" parent=\"Base.Widget.AppCompat.ButtonBar.AlertDialog\"/>\n    <style name=\"Widget.AppCompat.CompoundButton.CheckBox\" parent=\"Base.Widget.AppCompat.CompoundButton.CheckBox\"/>\n    <style name=\"Widget.AppCompat.CompoundButton.RadioButton\" parent=\"Base.Widget.AppCompat.CompoundButton.RadioButton\"/>\n    <style name=\"Widget.AppCompat.CompoundButton.Switch\" parent=\"Base.Widget.AppCompat.CompoundButton.Switch\"/>\n    <style name=\"Widget.AppCompat.DrawerArrowToggle\" parent=\"Base.Widget.AppCompat.DrawerArrowToggle\">\n        <item name=\"color\">?attr/colorControlNormal</item>\n    </style>\n    <style name=\"Widget.AppCompat.DropDownItem.Spinner\" parent=\"RtlOverlay.Widget.AppCompat.Search.DropDown.Text\"/>\n    <style name=\"Widget.AppCompat.EditText\" parent=\"Base.Widget.AppCompat.EditText\"/>\n    <style name=\"Widget.AppCompat.Light.ActionBar\" parent=\"Base.Widget.AppCompat.Light.ActionBar\">\n    </style>\n    <style name=\"Widget.AppCompat.Light.ActionBar.Solid\" parent=\"Base.Widget.AppCompat.Light.ActionBar.Solid\">\n    </style>\n    <style name=\"Widget.AppCompat.Light.ActionBar.Solid.Inverse\"/>\n    <style name=\"Widget.AppCompat.Light.ActionBar.TabBar\" parent=\"Base.Widget.AppCompat.Light.ActionBar.TabBar\">\n    </style>\n    <style name=\"Widget.AppCompat.Light.ActionBar.TabBar.Inverse\"/>\n    <style name=\"Widget.AppCompat.Light.ActionBar.TabText\" parent=\"Base.Widget.AppCompat.Light.ActionBar.TabText\">\n    </style>\n    <style name=\"Widget.AppCompat.Light.ActionBar.TabText.Inverse\" parent=\"Base.Widget.AppCompat.Light.ActionBar.TabText.Inverse\">\n    </style>\n    <style name=\"Widget.AppCompat.Light.ActionBar.TabView\" parent=\"Base.Widget.AppCompat.Light.ActionBar.TabView\">\n    </style>\n    <style name=\"Widget.AppCompat.Light.ActionBar.TabView.Inverse\"/>\n    <style name=\"Widget.AppCompat.Light.ActionButton\" parent=\"Widget.AppCompat.ActionButton\"/>\n    <style name=\"Widget.AppCompat.Light.ActionButton.CloseMode\" parent=\"Widget.AppCompat.ActionButton.CloseMode\"/>\n    <style name=\"Widget.AppCompat.Light.ActionButton.Overflow\" parent=\"Widget.AppCompat.ActionButton.Overflow\"/>\n    <style name=\"Widget.AppCompat.Light.ActionMode.Inverse\" parent=\"Widget.AppCompat.ActionMode\"/>\n    <style name=\"Widget.AppCompat.Light.ActivityChooserView\" parent=\"Widget.AppCompat.ActivityChooserView\"/>\n    <style name=\"Widget.AppCompat.Light.AutoCompleteTextView\" parent=\"Widget.AppCompat.AutoCompleteTextView\"/>\n    <style name=\"Widget.AppCompat.Light.DropDownItem.Spinner\" parent=\"Widget.AppCompat.DropDownItem.Spinner\"/>\n    <style name=\"Widget.AppCompat.Light.ListPopupWindow\" parent=\"Widget.AppCompat.ListPopupWindow\"/>\n    <style name=\"Widget.AppCompat.Light.ListView.DropDown\" parent=\"Widget.AppCompat.ListView.DropDown\"/>\n    <style name=\"Widget.AppCompat.Light.PopupMenu\" parent=\"Base.Widget.AppCompat.Light.PopupMenu\">\n    </style>\n    <style name=\"Widget.AppCompat.Light.PopupMenu.Overflow\" parent=\"Base.Widget.AppCompat.Light.PopupMenu.Overflow\">\n    </style>\n    <style name=\"Widget.AppCompat.Light.SearchView\" parent=\"Widget.AppCompat.SearchView\"/>\n    <style name=\"Widget.AppCompat.Light.Spinner.DropDown.ActionBar\" parent=\"Widget.AppCompat.Spinner.DropDown.ActionBar\"/>\n    <style name=\"Widget.AppCompat.ListPopupWindow\" parent=\"Base.Widget.AppCompat.ListPopupWindow\">\n    </style>\n    <style name=\"Widget.AppCompat.ListView\" parent=\"Base.Widget.AppCompat.ListView\"/>\n    <style name=\"Widget.AppCompat.ListView.DropDown\" parent=\"Base.Widget.AppCompat.ListView.DropDown\"/>\n    <style name=\"Widget.AppCompat.ListView.Menu\" parent=\"Base.Widget.AppCompat.ListView.Menu\">\n    </style>\n    <style name=\"Widget.AppCompat.PopupMenu\" parent=\"Base.Widget.AppCompat.PopupMenu\">\n    </style>\n    <style name=\"Widget.AppCompat.PopupMenu.Overflow\" parent=\"Base.Widget.AppCompat.PopupMenu.Overflow\">\n    </style>\n    <style name=\"Widget.AppCompat.PopupWindow\" parent=\"Base.Widget.AppCompat.PopupWindow\">\n    </style>\n    <style name=\"Widget.AppCompat.ProgressBar\" parent=\"Base.Widget.AppCompat.ProgressBar\">\n    </style>\n    <style name=\"Widget.AppCompat.ProgressBar.Horizontal\" parent=\"Base.Widget.AppCompat.ProgressBar.Horizontal\">\n    </style>\n    <style name=\"Widget.AppCompat.RatingBar\" parent=\"Base.Widget.AppCompat.RatingBar\"/>\n    <style name=\"Widget.AppCompat.SearchView\" parent=\"Base.Widget.AppCompat.SearchView\"/>\n    <style name=\"Widget.AppCompat.SearchView.ActionBar\" parent=\"Base.Widget.AppCompat.SearchView.ActionBar\"/>\n    <style name=\"Widget.AppCompat.Spinner\" parent=\"Base.Widget.AppCompat.Spinner\"/>\n    <style name=\"Widget.AppCompat.Spinner.DropDown\"/>\n    <style name=\"Widget.AppCompat.Spinner.DropDown.ActionBar\"/>\n    <style name=\"Widget.AppCompat.Spinner.Underlined\" parent=\"Base.Widget.AppCompat.Spinner.Underlined\"/>\n    <style name=\"Widget.AppCompat.TextView.SpinnerItem\" parent=\"Base.Widget.AppCompat.TextView.SpinnerItem\"/>\n    <style name=\"Widget.AppCompat.Toolbar\" parent=\"Base.Widget.AppCompat.Toolbar\"/>\n    <style name=\"Widget.AppCompat.Toolbar.Button.Navigation\" parent=\"Base.Widget.AppCompat.Toolbar.Button.Navigation\"/>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/values-af/values-af.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-af/values-af.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Navigeer tuis\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Navigeer op\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Nog opsies\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Klaar\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Sien alles\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Kies \\'n program\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Soek …\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Vee navraag uit\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Soeknavraag\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Soek\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Dien navraag in\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Stemsoektog\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Deel met\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Deel met %s\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Vou in\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/values-am/values-am.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-am/values-am.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"ወደ መነሻ ይዳስሱ\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s፣ %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s፣ %2$s፣ %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"ወደ ላይ ይዳስሱ\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"ተጨማሪ አማራጮች\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"ተከናውኗል\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"ሁሉንም ይመልከቱ\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"መተግበሪያ ይምረጡ\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"ፈልግ…\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"መጠይቅ አጽዳ\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"የፍለጋ ጥያቄ\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"ፍለጋ\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"መጠይቅ ያስረክቡ\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"የድምፅ ፍለጋ\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"ከሚከተለው ጋር ያጋሩ\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"ከ%s ጋር ያጋሩ\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"ሰብስብ\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/values-ar/values-ar.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ar/values-ar.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"التنقل إلى الشاشة الرئيسية\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s، %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s، %2$s، %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"التنقل إلى أعلى\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"خيارات إضافية\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"تم\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"عرض الكل\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"اختيار تطبيق\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"بحث…\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"محو طلب البحث\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"طلب البحث\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"بحث\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"إرسال طلب البحث\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"البحث الصوتي\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"مشاركة مع\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"‏مشاركة مع %s\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"تصغير\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"+999\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/values-az-rAZ/values-az-rAZ.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-az-rAZ/values-az-rAZ.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Evə get\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Yuxarı get\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Daha çox seçim\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Hazırdır\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Hamısına baxın\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Tətbiq seçin\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Axtarış...\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Sorğunu təmizlə\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Axtarış sorğusu\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Axtarış\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Sorğunu göndərin\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Səsli axtarış\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Bununla paylaşın\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Dağıt\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/values-bg/values-bg.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-bg/values-bg.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Придвижване към „Начало“\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"„%1$s“ – %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"„%1$s“, „%2$s“ – %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Придвижване нагоре\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Още опции\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Готово\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Вижте всички\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Изберете приложение\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Търсете…\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Изчистване на заявката\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Заявка за търсене\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Търсене\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Изпращане на заявката\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Гласово търсене\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Споделяне със:\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Споделяне със: %s\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Свиване\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/values-bn-rBD/values-bn-rBD.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-bn-rBD/values-bn-rBD.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"হোম এ নেভিগেট করুন\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"উপরের দিকে নেভিগেট করুন\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"আরো বিকল্প\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"সম্পন্ন হয়েছে\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"সবগুলো দেখুন\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"একটি অ্যাপ্লিকেশান চয়ন করুন\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"অনুসন্ধান...\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"ক্যোয়ারী সাফ করুন\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"ক্যোয়ারী অনুসন্ধান করুন\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"অনুসন্ধান করুন\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"ক্যোয়ারী জমা দিন\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"ভয়েস অনুসন্ধান\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"এর সাথে ভাগ করুন\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"%s এর সাথে ভাগ করুন\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"সঙ্কুচিত করুন\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"৯৯৯+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/values-ca/values-ca.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ca/values-ca.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Navega a la pàgina d\\'inici\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Navega cap a dalt\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Més opcions\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Fet\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Mostra\\'ls tots\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Selecciona una aplicació\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Cerca...\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Esborra la consulta\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Consulta de cerca\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Cerca\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Envia la consulta\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Cerca per veu\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Comparteix amb\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Comparteix amb %s\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Replega\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"+999\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/values-cs/values-cs.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-cs/values-cs.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Přejít na plochu\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s – %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s – %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Přejít nahoru\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Více možností\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Hotovo\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Zobrazit vše\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Vybrat aplikaci\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Vyhledat…\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Smazat dotaz\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Vyhledávací dotaz\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Hledat\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Odeslat dotaz\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Hlasové vyhledávání\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Sdílet pomocí\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Sdílet pomocí %s\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Sbalit\"</string>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/values-cs/values-cs.xml -->\n    <eat-comment/>\n    <string name=\"catalyst_debugjs\">Debug JS</string>\n    <string name=\"catalyst_element_inspector\">Prozkoumat prvek</string>\n    <string name=\"catalyst_jsload_error\">Unable to download JS bundle</string>\n    <string name=\"catalyst_jsload_message\">Fetching JS bundle</string>\n    <string name=\"catalyst_jsload_title\">Čekejte prosím...</string>\n    <string name=\"catalyst_reloadjs\">Reload JS</string>\n    <string name=\"catalyst_settings\">Dev Settings</string>\n    <string name=\"catalyst_settings_title\">Catalyst Dev Settings</string>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-cs/values-cs.xml -->\n    <eat-comment/>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/values-da/values-da.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-da/values-da.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Naviger hjem\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Naviger op\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Flere muligheder\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Luk\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Se alle\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Vælg en app\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Søg…\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Ryd forespørgslen\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Søgeforespørgsel\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Søg\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Indsend forespørgslen\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Talesøgning\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Del med\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Del med %s\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Skjul\"</string>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/values-da/values-da.xml -->\n    <eat-comment/>\n    <string name=\"catalyst_debugjs\">Debug JS</string>\n    <string name=\"catalyst_element_inspector\">Inspicer element</string>\n    <string name=\"catalyst_jsload_error\">Unable to download JS bundle</string>\n    <string name=\"catalyst_jsload_message\">Fetching JS bundle</string>\n    <string name=\"catalyst_jsload_title\">Vent venligst...</string>\n    <string name=\"catalyst_reloadjs\">Reload JS</string>\n    <string name=\"catalyst_settings\">Dev Settings</string>\n    <string name=\"catalyst_settings_title\">Catalyst Dev Settings</string>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-da/values-da.xml -->\n    <eat-comment/>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/values-de/values-de.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-de/values-de.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Zur Startseite\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s: %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s: %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Nach oben\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Weitere Optionen\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Fertig\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Alle ansehen\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"App auswählen\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Suchen…\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Suchanfrage löschen\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Suchanfrage\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Suchen\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Suchanfrage senden\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Sprachsuche\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Freigeben für\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Freigeben für %s\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Minimieren\"</string>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/values-de/values-de.xml -->\n    <eat-comment/>\n    <string name=\"catalyst_debugjs\">Debug JS</string>\n    <string name=\"catalyst_element_inspector\">Element untersuchen</string>\n    <string name=\"catalyst_jsload_error\">Unable to download JS bundle</string>\n    <string name=\"catalyst_jsload_message\">Fetching JS bundle</string>\n    <string name=\"catalyst_jsload_title\">Bitte warten Sie ...</string>\n    <string name=\"catalyst_reloadjs\">Reload JS</string>\n    <string name=\"catalyst_settings\">Dev Settings</string>\n    <string name=\"catalyst_settings_title\">Catalyst Dev Settings</string>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-de/values-de.xml -->\n    <eat-comment/>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/values-el/values-el.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-el/values-el.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Πλοήγηση στην αρχική σελίδα\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Πλοήγηση προς τα επάνω\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Περισσότερες επιλογές\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Τέλος\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Προβολή όλων\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Επιλέξτε κάποια εφαρμογή\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Αναζήτηση…\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Διαγραφή ερωτήματος\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Ερώτημα αναζήτησης\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Αναζήτηση\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Υποβολή ερωτήματος\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Φωνητική αναζήτηση\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Κοινή χρήση με\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Κοινή χρήση με %s\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Σύμπτυξη\"</string>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/values-el/values-el.xml -->\n    <eat-comment/>\n    <string name=\"catalyst_debugjs\">Debug JS</string>\n    <string name=\"catalyst_element_inspector\">Εξέταση στοιχείου</string>\n    <string name=\"catalyst_jsload_error\">Unable to download JS bundle</string>\n    <string name=\"catalyst_jsload_message\">Fetching JS bundle</string>\n    <string name=\"catalyst_jsload_title\">Περιμένετε...</string>\n    <string name=\"catalyst_reloadjs\">Reload JS</string>\n    <string name=\"catalyst_settings\">Dev Settings</string>\n    <string name=\"catalyst_settings_title\">Catalyst Dev Settings</string>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-el/values-el.xml -->\n    <eat-comment/>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/values-en-rAU/values-en-rAU.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-en-rAU/values-en-rAU.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Navigate home\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Navigate up\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"More options\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Done\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"See all\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Choose an app\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Search…\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Clear query\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Search query\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Search\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Submit query\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Voice search\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Share with\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Share with %s\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Collapse\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/values-en-rGB/values-en-rGB.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-en-rGB/values-en-rGB.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Navigate home\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Navigate up\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"More options\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Done\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"See all\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Choose an app\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Search…\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Clear query\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Search query\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Search\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Submit query\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Voice search\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Share with\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Share with %s\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Collapse\"</string>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/values-en-rGB/values-en-rGB.xml -->\n    <eat-comment/>\n    <string name=\"catalyst_debugjs\">Debug JS</string>\n    <string name=\"catalyst_element_inspector\">Show Inspector</string>\n    <string name=\"catalyst_jsload_error\">Unable to download JS bundle</string>\n    <string name=\"catalyst_jsload_message\">Fetching JS bundle</string>\n    <string name=\"catalyst_jsload_title\">Please wait...</string>\n    <string name=\"catalyst_reloadjs\">Reload JS</string>\n    <string name=\"catalyst_settings\">Dev Settings</string>\n    <string name=\"catalyst_settings_title\">Catalyst Dev Settings</string>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-en-rGB/values-en-rGB.xml -->\n    <eat-comment/>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/values-en-rIN/values-en-rIN.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-en-rIN/values-en-rIN.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Navigate home\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Navigate up\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"More options\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Done\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"See all\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Choose an app\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Search…\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Clear query\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Search query\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Search\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Submit query\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Voice search\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Share with\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Share with %s\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Collapse\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/values-es/values-es.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-es/values-es.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Ir a la pantalla de inicio\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Desplazarse hacia arriba\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Más opciones\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Listo\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Ver todo\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Seleccionar una aplicación\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Buscar…\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Borrar consulta\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Consulta\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Buscar\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Enviar consulta\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Búsqueda por voz\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Compartir con\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Compartir con %s\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Contraer\"</string>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/values-es/values-es.xml -->\n    <eat-comment/>\n    <string name=\"catalyst_debugjs\">Debug JS</string>\n    <string name=\"catalyst_element_inspector\">Inspeccionar elemento</string>\n    <string name=\"catalyst_jsload_error\">Unable to download JS bundle</string>\n    <string name=\"catalyst_jsload_message\">Fetching JS bundle</string>\n    <string name=\"catalyst_jsload_title\">Espera...</string>\n    <string name=\"catalyst_reloadjs\">Reload JS</string>\n    <string name=\"catalyst_settings\">Dev Settings</string>\n    <string name=\"catalyst_settings_title\">Catalyst Dev Settings</string>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-es/values-es.xml -->\n    <eat-comment/>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"+999\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/values-es-rES/values-es-rES.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/values-es-rES/values-es-rES.xml -->\n    <eat-comment/>\n    <string name=\"catalyst_debugjs\">Debug JS</string>\n    <string name=\"catalyst_element_inspector\">Inspeccionar elemento</string>\n    <string name=\"catalyst_jsload_error\">Unable to download JS bundle</string>\n    <string name=\"catalyst_jsload_message\">Fetching JS bundle</string>\n    <string name=\"catalyst_jsload_title\">Espera...</string>\n    <string name=\"catalyst_reloadjs\">Reload JS</string>\n    <string name=\"catalyst_settings\">Dev Settings</string>\n    <string name=\"catalyst_settings_title\">Catalyst Dev Settings</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/values-es-rUS/values-es-rUS.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-es-rUS/values-es-rUS.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Navegar a la página principal\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Navegar hacia arriba\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Más opciones\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Listo\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Ver todo\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Elige una aplicación.\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Buscar…\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Eliminar la consulta\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Consulta de búsqueda\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Búsqueda\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Enviar consulta\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Búsqueda por voz\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Compartir con\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Compartir con %s\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Contraer\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/values-et-rEE/values-et-rEE.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-et-rEE/values-et-rEE.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Navigeerimine avaekraanile\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Navigeerimine üles\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Rohkem valikuid\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Valmis\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Kuva kõik\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Valige rakendus\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Otsige …\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Päringu tühistamine\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Otsingupäring\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Otsing\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Päringu esitamine\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Häälotsing\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Jagamine:\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Jagamine kasutajaga %s\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Ahendamine\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/values-eu-rES/values-eu-rES.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-eu-rES/values-eu-rES.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Joan orri nagusira\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Joan gora\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Aukera gehiago\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Eginda\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Ikusi guztiak\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Aukeratu aplikazio bat\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Bilatu…\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Garbitu kontsulta\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Bilaketa-kontsulta\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Bilatu\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Bidali kontsulta\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Ahots bidezko bilaketa\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Partekatu hauekin\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Partekatu %s erabiltzailearekin\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Tolestu\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/values-fa/values-fa.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-fa/values-fa.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"پیمایش به صفحه اصلی\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"‏%1$s‏، %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"‏%1$s‏، %2$s‏، %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"پیمایش به بالا\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"گزینه‌های بیشتر\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"انجام شد\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"مشاهده همه\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"انتخاب برنامه\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"جستجو…\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"پاک کردن عبارت جستجو\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"عبارت جستجو\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"جستجو\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"ارسال عبارت جستجو\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"جستجوی شفاهی\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"اشتراک‌گذاری با\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"‏اشتراک‌گذاری با %s\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"کوچک کردن\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"۹۹۹+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/values-fb/values-fb.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/values-fb/values-fb.xml -->\n    <eat-comment/>\n    <string name=\"catalyst_debugjs\">[Debug JS#2010fa256bd28603b686da2713bb843a:1]</string>\n    <string name=\"catalyst_element_inspector\">[Show Inspector#c1b106c92869437ebd88f326d632b973:1]</string>\n    <string name=\"catalyst_jsload_error\">[Unable to download JS bundle#51057ecd2555f91873cce4c452e1ea03:1]</string>\n    <string name=\"catalyst_jsload_message\">[Fetching JS bundle#0de4127d4fc6e7d1e265e07433f26e25:1]</string>\n    <string name=\"catalyst_jsload_title\">[Please wait...#71bad104a80f916d3bfb1ffa23a487af:1]</string>\n    <string name=\"catalyst_reloadjs\">[Reload JS#cd6b54f9f3c2e4ae7de6fdaf163ef79b:1]</string>\n    <string name=\"catalyst_settings\">[Dev Settings#6b65fc308a2da07fa01ad6fcbaa57002:1]</string>\n    <string name=\"catalyst_settings_title\">[Catalyst Dev Settings#bf44a606175d084d4c8d283938dd041d:1]</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/values-fb-rLL/values-fb-rLL.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/values-fb-rLL/values-fb-rLL.xml -->\n    <eat-comment/>\n    <string name=\"catalyst_debugjs\">Debug JS</string>\n    <string name=\"catalyst_element_inspector\">(तत्व निरीक्षण गर्नुहोस्)</string>\n    <string name=\"catalyst_jsload_error\">Unable to download JS bundle</string>\n    <string name=\"catalyst_jsload_message\">Fetching JS bundle</string>\n    <string name=\"catalyst_jsload_title\">(অনুগ্রহ করে অপেক্ষা করুন….)</string>\n    <string name=\"catalyst_reloadjs\">Reload JS</string>\n    <string name=\"catalyst_settings\">Dev Settings</string>\n    <string name=\"catalyst_settings_title\">Catalyst Dev Settings</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/values-fi/values-fi.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-fi/values-fi.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Siirry etusivulle\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Siirry ylös\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Lisää\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Valmis\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Näytä kaikki\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Valitse sovellus\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Haku…\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Tyhjennä kysely\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Hakulauseke\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Haku\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Lähetä kysely\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Puhehaku\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Jakaminen:\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Jakaminen: %s\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Kutista\"</string>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/values-fi/values-fi.xml -->\n    <eat-comment/>\n    <string name=\"catalyst_debugjs\">Debug JS</string>\n    <string name=\"catalyst_element_inspector\">Tarkista elementti</string>\n    <string name=\"catalyst_jsload_error\">Unable to download JS bundle</string>\n    <string name=\"catalyst_jsload_message\">Fetching JS bundle</string>\n    <string name=\"catalyst_jsload_title\">Odota…</string>\n    <string name=\"catalyst_reloadjs\">Reload JS</string>\n    <string name=\"catalyst_settings\">Dev Settings</string>\n    <string name=\"catalyst_settings_title\">Catalyst Dev Settings</string>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-fi/values-fi.xml -->\n    <eat-comment/>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/values-fr/values-fr.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-fr/values-fr.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Revenir à l\\'accueil\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Revenir en haut de la page\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Plus d\\'options\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"OK\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Tout afficher\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Sélectionner une application\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Rechercher…\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Effacer la requête\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Requête de recherche\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Rechercher\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Envoyer la requête\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Recherche vocale\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Partager avec\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Partager avec %s\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Réduire\"</string>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/values-fr/values-fr.xml -->\n    <eat-comment/>\n    <string name=\"catalyst_debugjs\">Debug JS</string>\n    <string name=\"catalyst_element_inspector\">Inspecter l’élément</string>\n    <string name=\"catalyst_jsload_error\">Unable to download JS bundle</string>\n    <string name=\"catalyst_jsload_message\">Fetching JS bundle</string>\n    <string name=\"catalyst_jsload_title\">Veuillez patienter...</string>\n    <string name=\"catalyst_reloadjs\">Reload JS</string>\n    <string name=\"catalyst_settings\">Dev Settings</string>\n    <string name=\"catalyst_settings_title\">Catalyst Dev Settings</string>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-fr/values-fr.xml -->\n    <eat-comment/>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\">999\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/values-fr-rCA/values-fr-rCA.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-fr-rCA/values-fr-rCA.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Revenir à l\\'accueil\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Revenir en haut de la page\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Plus d\\'options\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Terminé\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Voir toutes les chaînes\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Sélectionnez une application\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Recherche en cours...\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Effacer la requête\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Requête de recherche\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Rechercher\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Envoyer la requête\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Recherche vocale\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Partager\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Partager avec %s\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Réduire\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\">999\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/values-gl-rES/values-gl-rES.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-gl-rES/values-gl-rES.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Ir á páxina de inicio\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Desprazarse cara arriba\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Máis opcións\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Feito\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Ver todas\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Escoller unha aplicación\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Buscar…\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Borrar consulta\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Consulta de busca\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Buscar\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Enviar consulta\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Busca de voz\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Compartir con\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Compartir con %s\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Contraer\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\">999\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/values-gu-rIN/values-gu-rIN.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-gu-rIN/values-gu-rIN.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"હોમ પર નેવિગેટ કરો\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"ઉપર નેવિગેટ કરો\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"વધુ વિકલ્પો\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"થઈ ગયું\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"બધું જુઓ\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"એક એપ્લિકેશન પસંદ કરો\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"શોધો…\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"ક્વેરી સાફ કરો\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"શોધ ક્વેરી\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"શોધો\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"ક્વેરી સબમિટ કરો\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"વૉઇસ શોધ\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"આની સાથે શેર કરો\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"%s સાથે શેર કરો\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"સંકુચિત કરો\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/values-h720dp/values-h720dp.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-h720dp/values-h720dp.xml -->\n    <eat-comment/>\n    <dimen name=\"abc_alert_dialog_button_bar_height\">54dip</dimen>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/values-hdpi/values-hdpi.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hdpi/values-hdpi.xml -->\n    <eat-comment/>\n    <style name=\"Base.Widget.AppCompat.DrawerArrowToggle\" parent=\"Base.Widget.AppCompat.DrawerArrowToggle.Common\">\n          <item name=\"barLength\">18.66dp</item>\n          <item name=\"gapBetweenBars\">3.33dp</item>\n          <item name=\"drawableSize\">24dp</item>\n     </style>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/values-hi/values-hi.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hi/values-hi.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"मुख्यपृष्ठ पर नेविगेट करें\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"ऊपर नेविगेट करें\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"अधिक विकल्प\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"पूर्ण\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"सभी देखें\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"कोई एप्‍लिकेशन चुनें\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"खोजा जा रहा है…\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"क्‍वेरी साफ़ करें\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"खोज क्वेरी\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"खोजें\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"क्वेरी सबमिट करें\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"ध्वनि खोज\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"इसके द्वारा साझा करें\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"%s के साथ साझा करें\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"संक्षिप्त करें\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/values-hr/values-hr.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hr/values-hr.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Idi na početnu\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Idi gore\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Dodatne opcije\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Gotovo\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Prikaži sve\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Odabir aplikacije\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Pretražite…\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Izbriši upit\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Upit za pretraživanje\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Pretraživanje\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Pošalji upit\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Glasovno pretraživanje\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Dijeljenje sa\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Dijeljenje sa: %s\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Sažmi\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/values-hu/values-hu.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hu/values-hu.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Ugrás a főoldalra\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Felfelé mozgatás\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"További lehetőségek\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Kész\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Összes megtekintése\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Válasszon ki egy alkalmazást\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Keresés…\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Lekérdezés törlése\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Keresési lekérdezés\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Keresés\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Lekérdezés küldése\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Hangalapú keresés\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Megosztás a következővel:\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Megosztás a következővel: %s\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Összecsukás\"</string>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/values-hu/values-hu.xml -->\n    <eat-comment/>\n    <string name=\"catalyst_debugjs\">Debug JS</string>\n    <string name=\"catalyst_element_inspector\">Elem megtekintése</string>\n    <string name=\"catalyst_jsload_error\">Unable to download JS bundle</string>\n    <string name=\"catalyst_jsload_message\">Fetching JS bundle</string>\n    <string name=\"catalyst_jsload_title\">Kérjük, várj...</string>\n    <string name=\"catalyst_reloadjs\">Reload JS</string>\n    <string name=\"catalyst_settings\">Dev Settings</string>\n    <string name=\"catalyst_settings_title\">Catalyst Dev Settings</string>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hu/values-hu.xml -->\n    <eat-comment/>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/values-hy-rAM/values-hy-rAM.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-hy-rAM/values-hy-rAM.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Ուղղվել տուն\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Ուղղվել վերև\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Այլ ընտրանքներ\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Կատարված է\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Տեսնել բոլորը\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Ընտրել ծրագիր\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Որոնում...\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Մաքրել հարցումը\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Որոնման հարցում\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Որոնել\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Ուղարկել հարցումը\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Ձայնային որոնում\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Տարածել\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Տարածել ըստ %s\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Թաքցնել\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/values-in/values-in.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-in/values-in.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Navigasi ke beranda\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Navigasi naik\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Opsi lain\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Selesai\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Lihat semua\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Pilih aplikasi\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Telusuri...\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Hapus kueri\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Kueri penelusuran\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Telusuri\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Kirim kueri\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Penelusuran suara\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Bagikan dengan\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Bagikan dengan %s\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Ciutkan\"</string>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/values-in/values-in.xml -->\n    <eat-comment/>\n    <string name=\"catalyst_debugjs\">Debug JS</string>\n    <string name=\"catalyst_element_inspector\">Periksa Elemen</string>\n    <string name=\"catalyst_jsload_error\">Unable to download JS bundle</string>\n    <string name=\"catalyst_jsload_message\">Fetching JS bundle</string>\n    <string name=\"catalyst_jsload_title\">Harap tunggu...</string>\n    <string name=\"catalyst_reloadjs\">Reload JS</string>\n    <string name=\"catalyst_settings\">Dev Settings</string>\n    <string name=\"catalyst_settings_title\">Catalyst Dev Settings</string>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-in/values-in.xml -->\n    <eat-comment/>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/values-is-rIS/values-is-rIS.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-is-rIS/values-is-rIS.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Fara heim\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Fara upp\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Fleiri valkostir\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Lokið\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Sjá allt\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Veldu forrit\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Leita…\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Hreinsa fyrirspurn\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Leitarfyrirspurn\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Leita\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Senda fyrirspurn\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Raddleit\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Deila með\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Deila með %s\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Minnka\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/values-it/values-it.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-it/values-it.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Vai alla home page\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Vai in alto\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Altre opzioni\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Fine\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Visualizza tutte\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Scegli un\\'applicazione\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Cerca…\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Cancella query\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Query di ricerca\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Cerca\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Invia query\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Ricerca vocale\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Condividi con\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Condividi con %s\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Comprimi\"</string>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/values-it/values-it.xml -->\n    <eat-comment/>\n    <string name=\"catalyst_debugjs\">Debug JS</string>\n    <string name=\"catalyst_element_inspector\">Esamina elemento</string>\n    <string name=\"catalyst_jsload_error\">Unable to download JS bundle</string>\n    <string name=\"catalyst_jsload_message\">Fetching JS bundle</string>\n    <string name=\"catalyst_jsload_title\">Attendi...</string>\n    <string name=\"catalyst_reloadjs\">Reload JS</string>\n    <string name=\"catalyst_settings\">Dev Settings</string>\n    <string name=\"catalyst_settings_title\">Catalyst Dev Settings</string>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-it/values-it.xml -->\n    <eat-comment/>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/values-iw/values-iw.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-iw/values-iw.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"נווט לדף הבית\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"‏%1$s‏, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"‏%1$s‏, %2$s‏, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"נווט למעלה\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"עוד אפשרויות\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"בוצע\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"ראה הכל\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"בחר אפליקציה\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"חפש…\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"מחק שאילתה\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"שאילתת חיפוש\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"חפש\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"שלח שאילתה\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"חיפוש קולי\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"שתף עם\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"‏שתף עם %s\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"כווץ\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"‎999+‎\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/values-ja/values-ja.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ja/values-ja.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"ホームへ移動\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s、%2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s、%2$s、%3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"上へ移動\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"その他のオプション\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"完了\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"すべて表示\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"アプリの選択\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"検索…\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"検索キーワードを削除\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"検索キーワード\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"検索\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"検索キーワードを送信\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"音声検索\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"共有\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"%sと共有\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"折りたたむ\"</string>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/values-ja/values-ja.xml -->\n    <eat-comment/>\n    <string name=\"catalyst_debugjs\">Debug JS</string>\n    <string name=\"catalyst_element_inspector\">要素を確認</string>\n    <string name=\"catalyst_jsload_error\">Unable to download JS bundle</string>\n    <string name=\"catalyst_jsload_message\">Fetching JS bundle</string>\n    <string name=\"catalyst_jsload_title\">しばらくお待ちください</string>\n    <string name=\"catalyst_reloadjs\">Reload JS</string>\n    <string name=\"catalyst_settings\">Dev Settings</string>\n    <string name=\"catalyst_settings_title\">Catalyst Dev Settings</string>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ja/values-ja.xml -->\n    <eat-comment/>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/values-ka-rGE/values-ka-rGE.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ka-rGE/values-ka-rGE.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"მთავარზე ნავიგაცია\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"ზემოთ ნავიგაცია\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"მეტი ვარიანტები\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"დასრულდა\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"ყველას ნახვა\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"აპის არჩევა\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"ძიება...\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"მოთხოვნის გასუფთავება\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"ძიების მოთხოვნა\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"ძიება\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"მოთხოვნის გადაგზავნა\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"ხმოვანი ძიება\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"გაზიარება:\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"%s-თან გაზიარება\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"აკეცვა\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/values-kk-rKZ/values-kk-rKZ.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-kk-rKZ/values-kk-rKZ.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Негізгі бетте қозғалу\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Жоғары қозғалу\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Басқа опциялар\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Дайын\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Барлығын көру\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Қолданбаны таңдау\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Іздеу…\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Сұрақты жою\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Сұрақты іздеу\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Іздеу\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Сұрақты жіберу\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Дауыс арқылы іздеу\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Бөлісу\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"%s бөлісу\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Тасалау\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/values-km-rKH/values-km-rKH.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-km-rKH/values-km-rKH.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"រកមើល​ទៅ​ដើម\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"រកមើល​ឡើងលើ\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"ជម្រើស​ច្រើន​ទៀត\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"រួចរាល់\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"មើល​ទាំងអស់\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"ជ្រើស​កម្មវិធី​​\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"ស្វែងរក…\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"សម្អាត​សំណួរ\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"ស្វែងរក​សំណួរ\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"ស្វែងរក\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"ដាក់​​​ស្នើ​សំណួរ\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"ការស្វែងរក​សំឡេង\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"ចែករំលែក​ជាមួយ\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"ចែករំលែក​ជាមួយ %s\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"បង្រួម\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/values-kn-rIN/values-kn-rIN.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-kn-rIN/values-kn-rIN.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"ಮುಖಪುಟವನ್ನು ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"ಮೇಲಕ್ಕೆ ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"ಇನ್ನಷ್ಟು ಆಯ್ಕೆಗಳು\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"ಮುಗಿದಿದೆ\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"ಎಲ್ಲವನ್ನೂ ನೋಡಿ\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"ಒಂದು ಅಪ್ಲಿಕೇಶನ್ ಆಯ್ಕೆಮಾಡಿ\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"ಹುಡುಕಿ…\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"ಪ್ರಶ್ನೆಯನ್ನು ತೆರವುಗೊಳಿಸು\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"ಪ್ರಶ್ನೆಯನ್ನು ಹುಡುಕಿ\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"ಹುಡುಕು\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"ಪ್ರಶ್ನೆಯನ್ನು ಸಲ್ಲಿಸು\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"ಧ್ವನಿ ಹುಡುಕಾಟ\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"ಇವರೊಂದಿಗೆ ಹಂಚಿಕೊಳ್ಳಿ\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"%s ಜೊತೆಗೆ ಹಂಚಿಕೊಳ್ಳಿ\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"ಸಂಕುಚಿಸು\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/values-ko/values-ko.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ko/values-ko.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"홈 탐색\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"위로 탐색\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"옵션 더보기\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"완료\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"전체 보기\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"앱 선택\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"검색...\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"검색어 삭제\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"검색어\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"검색\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"검색어 보내기\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"음성 검색\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"공유 대상\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"%s와(과) 공유\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"접기\"</string>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/values-ko/values-ko.xml -->\n    <eat-comment/>\n    <string name=\"catalyst_debugjs\">Debug JS</string>\n    <string name=\"catalyst_element_inspector\">요소 검사</string>\n    <string name=\"catalyst_jsload_error\">Unable to download JS bundle</string>\n    <string name=\"catalyst_jsload_message\">Fetching JS bundle</string>\n    <string name=\"catalyst_jsload_title\">기다려주세요...</string>\n    <string name=\"catalyst_reloadjs\">Reload JS</string>\n    <string name=\"catalyst_settings\">Dev Settings</string>\n    <string name=\"catalyst_settings_title\">Catalyst Dev Settings</string>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ko/values-ko.xml -->\n    <eat-comment/>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/values-ky-rKG/values-ky-rKG.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ky-rKG/values-ky-rKG.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Үйгө багыттоо\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Жогору\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Көбүрөөк мүмкүнчүлүктөр\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Даяр\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Бардыгын көрүү\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Колдонмо тандоо\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Издөө…\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Талаптарды тазалоо\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Издөө талаптары\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Издөө\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Талап жөнөтүү\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Үн аркылуу издөө\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Бөлүшүү\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"%s аркылуу бөлүшүү\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Жыйнап коюу\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/values-land/values-land.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-land/values-land.xml -->\n    <eat-comment/>\n    <bool name=\"abc_action_bar_embed_tabs_pre_jb\">true</bool>\n    <bool name=\"abc_config_allowActionMenuItemTextWithIcon\">true</bool>\n    <dimen name=\"abc_action_bar_default_height_material\">48dp</dimen>\n    <dimen name=\"abc_action_bar_progress_bar_size\">32dp</dimen>\n    <dimen name=\"abc_text_size_subtitle_material_toolbar\">12dp</dimen>\n    <dimen name=\"abc_text_size_title_material_toolbar\">14dp</dimen>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/values-large/values-large.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-large/values-large.xml -->\n    <eat-comment/>\n    <bool name=\"abc_action_bar_embed_tabs_pre_jb\">true</bool>\n    <bool name=\"abc_config_allowActionMenuItemTextWithIcon\">true</bool>\n    <dimen name=\"abc_config_prefDialogWidth\">440dp</dimen>\n    <dimen name=\"abc_search_view_text_min_width\">192dip</dimen>\n    <item name=\"dialog_fixed_height_major\" type=\"dimen\">60%</item>\n    <item name=\"dialog_fixed_height_minor\" type=\"dimen\">90%</item>\n    <item name=\"dialog_fixed_width_major\" type=\"dimen\">60%</item>\n    <item name=\"dialog_fixed_width_minor\" type=\"dimen\">90%</item>\n    <integer name=\"abc_max_action_buttons\">4</integer>\n    <style name=\"Base.Theme.AppCompat.DialogWhenLarge\" parent=\"Base.Theme.AppCompat.Dialog.FixedSize\"/>\n    <style name=\"Base.Theme.AppCompat.Light.DialogWhenLarge\" parent=\"Base.Theme.AppCompat.Light.Dialog.FixedSize\"/>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/values-lo-rLA/values-lo-rLA.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-lo-rLA/values-lo-rLA.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"ກັບໄປໜ້າຫຼັກ\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"ຂຶ້ນເທິງ\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"ໂຕເລືອກອື່ນ\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"ແລ້ວໆ\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"ເບິ່ງທັງຫມົດ\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"ເລືອກແອັບຯ\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"ຊອກຫາ\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"ລຶບຂໍ້ຄວາມຊອກຫາ\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"ຊອກຫາ\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"ຊອກຫາ\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"ສົ່ງການຊອກຫາ\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"ຊອກຫາດ້ວຍສຽງ\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"ແບ່ງປັນກັບ\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"ແບ່ງ​ປັນ​ກັບ​ %s\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"ຫຍໍ້\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/values-lt/values-lt.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-lt/values-lt.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Eiti į pagrindinį puslapį\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Eiti į viršų\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Daugiau parinkčių\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Atlikta\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Peržiūrėti viską\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Pasirinkti programą\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Ieškoti...\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Išvalyti užklausą\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Paieškos užklausa\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Paieška\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Pateikti užklausą\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Paieška balsu\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Bendrinti naudojant\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Bendrinti naudojant „%s“\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Sutraukti\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/values-lv/values-lv.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-lv/values-lv.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Pārvietoties uz sākuma ekrānu\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s: %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s: %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Pārvietoties augšup\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Vairāk opciju\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Gatavs\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Skatīt visu\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Izvēlieties lietotni\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Meklējiet…\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Notīrīt vaicājumu\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Meklēšanas vaicājums\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Meklēt\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Iesniegt vaicājumu\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Meklēšana ar balsi\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Kopīgot ar:\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Kopīgot ar %s\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Sakļaut\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/values-mk-rMK/values-mk-rMK.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-mk-rMK/values-mk-rMK.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Движи се кон дома\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Движи се нагоре\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Повеќе опции\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Готово\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Види ги сите\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Избери апликација\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Пребарување…\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Исчисти барање\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Пребарај барање\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Пребарај\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Поднеси барање\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Гласовно пребарување\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Сподели со\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Собери\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/values-ml-rIN/values-ml-rIN.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ml-rIN/values-ml-rIN.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"ഹോമിലേക്ക് നാവിഗേറ്റുചെയ്യുക\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"മുകളിലേക്ക് നാവിഗേറ്റുചെയ്യുക\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"കൂടുതല്‍ ഓപ്‌ഷനുകള്‍\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"പൂർത്തിയാക്കി\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"എല്ലാം കാണുക\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"ഒരു അപ്ലിക്കേഷൻ തിരഞ്ഞെടുക്കുക\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"തിരയുക…\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"അന്വേഷണം മായ്‌ക്കുക\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"തിരയൽ അന്വേഷണം\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"തിരയൽ\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"അന്വേഷണം സമർപ്പിക്കുക\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"ശബ്ദ തിരയൽ\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"ഇവരുമായി പങ്കിടുക\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"%s എന്നതുമായി പങ്കിടുക\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"ചുരുക്കുക\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/values-mn-rMN/values-mn-rMN.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-mn-rMN/values-mn-rMN.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Нүүр хуудас руу шилжих\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Дээш шилжих\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Нэмэлт сонголтууд\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Дууссан\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Бүгдийг харах\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Апп сонгох\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Хайх...\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Асуулгыг цэвэрлэх\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Хайх асуулга\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Хайх\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Асуулгыг илгээх\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Дуут хайлт\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Хуваалцах\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"%s-тай хуваалцах\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Хумих\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/values-mr-rIN/values-mr-rIN.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-mr-rIN/values-mr-rIN.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"मुख्‍यपृष्‍ठ नेव्‍हिगेट करा\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"वर नेव्‍हिगेट करा\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"अधिक पर्याय\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"पूर्ण झाले\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"सर्व पहा\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"एक अ‍ॅप निवडा\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"शोधा…\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"क्‍वेरी स्‍पष्‍ट करा\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"शोध क्वेरी\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"शोध\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"क्वेरी सबमिट करा\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"व्हॉइस शोध\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"यांच्यासह सामायिक करा\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"%s सह सामायिक करा\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"संक्षिप्त करा\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/values-ms-rMY/values-ms-rMY.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ms-rMY/values-ms-rMY.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Navigasi skrin utama\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Navigasi ke atas\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Lagi pilihan\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Selesai\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Lihat semua\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Pilih apl\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Cari…\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Kosongkan pertanyaan\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Pertanyaan carian\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Cari\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Serah pertanyaan\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Carian suara\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Kongsi dengan\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Kongsi dengan %s\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Runtuhkan\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/values-my-rMM/values-my-rMM.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-my-rMM/values-my-rMM.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"မူလနေရာကို သွားရန်\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s၊ %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s ၊ %2$s ၊ %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"အပေါ်သို့သွားရန်\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"ပိုမိုရွေးချယ်စရာများ\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"ပြီးဆုံးပါပြီ\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"အားလုံးကို ကြည့်ရန်\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"အပလီကေးရှင်း တစ်ခုခုကို ရွေးချယ်ပါ\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"ရှာဖွေပါ...\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"ရှာစရာ အချက်အလက်များ ရှင်းလင်းရန်\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"ရှာစရာ အချက်အလက်နေရာ\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"ရှာဖွေရန်\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"ရှာဖွေစရာ အချက်အလက်ကို အတည်ပြုရန်\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"အသံဖြင့် ရှာဖွေခြင်း\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"မျှဝေဖို့ ရွေးပါ\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"%s ကို မျှဝေပါရန်\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"ခေါက်ရန်\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"၉၉၉+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/values-nb/values-nb.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-nb/values-nb.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Gå til startsiden\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s – %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s – %2$s – %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Gå opp\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Flere alternativer\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Ferdig\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Se alle\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Velg en app\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Søk …\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Slett søket\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Søkeord\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Søk\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Utfør søket\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Talesøk\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Del med\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Del med %s\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Skjul\"</string>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/values-nb/values-nb.xml -->\n    <eat-comment/>\n    <string name=\"catalyst_debugjs\">Debug JS</string>\n    <string name=\"catalyst_element_inspector\">Inspiser element</string>\n    <string name=\"catalyst_jsload_error\">Unable to download JS bundle</string>\n    <string name=\"catalyst_jsload_message\">Fetching JS bundle</string>\n    <string name=\"catalyst_jsload_title\">Vent litt ...</string>\n    <string name=\"catalyst_reloadjs\">Reload JS</string>\n    <string name=\"catalyst_settings\">Dev Settings</string>\n    <string name=\"catalyst_settings_title\">Catalyst Dev Settings</string>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-nb/values-nb.xml -->\n    <eat-comment/>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/values-ne-rNP/values-ne-rNP.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ne-rNP/values-ne-rNP.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"गृह खोज्नुहोस्\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"माथि खोज्नुहोस्\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"थप विकल्पहरू\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"सम्पन्न भयो\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"सबै हेर्नुहोस्\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"एउटा अनुप्रयोग छान्नुहोस्\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"खोज्नुहोस्...\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"प्रश्‍न हटाउनुहोस्\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"जिज्ञासाको खोज गर्नुहोस्\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"खोज्नुहोस्\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"जिज्ञासा पेस गर्नुहोस्\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"भ्वाइस खोजी\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"साझेदारी गर्नुहोस्...\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"%s सँग साझेदारी गर्नुहोस्\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"संक्षिप्त पार्नुहोस्\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"९९९+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/values-nl/values-nl.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-nl/values-nl.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Navigeren naar startpositie\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Omhoog navigeren\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Meer opties\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Gereed\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Alles weergeven\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Een app selecteren\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Zoeken…\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Zoekopdracht wissen\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Zoekopdracht\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Zoeken\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Zoekopdracht verzenden\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Gesproken zoekopdracht\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Delen met\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Delen met %s\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Samenvouwen\"</string>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/values-nl/values-nl.xml -->\n    <eat-comment/>\n    <string name=\"catalyst_debugjs\">Debug JS</string>\n    <string name=\"catalyst_element_inspector\">Element inspecteren</string>\n    <string name=\"catalyst_jsload_error\">Unable to download JS bundle</string>\n    <string name=\"catalyst_jsload_message\">Fetching JS bundle</string>\n    <string name=\"catalyst_jsload_title\">Even geduld...</string>\n    <string name=\"catalyst_reloadjs\">Reload JS</string>\n    <string name=\"catalyst_settings\">Dev Settings</string>\n    <string name=\"catalyst_settings_title\">Catalyst Dev Settings</string>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-nl/values-nl.xml -->\n    <eat-comment/>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/values-pa-rIN/values-pa-rIN.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-pa-rIN/values-pa-rIN.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"ਹੋਮ ਨੈਵੀਗੇਟ ਕਰੋ\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"ਉੱਪਰ ਨੈਵੀਗੇਟ ਕਰੋ\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"ਹੋਰ ਚੋਣਾਂ\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"ਹੋ ਗਿਆ\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"ਸਭ ਦੇਖੋ\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"ਇੱਕ ਐਪ ਚੁਣੋ\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"ਖੋਜ…\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"ਸਵਾਲ ਹਟਾਓ\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"ਸਵਾਲ ਖੋਜੋ\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"ਖੋਜੋ\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"ਸਵਾਲ ਪ੍ਰਸਤੁਤ ਕਰੋ\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"ਵੌਇਸ ਖੋਜ\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"ਇਸ ਨਾਲ ਸ਼ੇਅਰ ਕਰੋ\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"%s ਨਾਲ ਸ਼ੇਅਰ ਕਰੋ\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"ਨਸ਼ਟ ਕਰੋ\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/values-pl/values-pl.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-pl/values-pl.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Przejdź do strony głównej\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Przejdź wyżej\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Więcej opcji\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Gotowe\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Zobacz wszystkie\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Wybierz aplikację\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Szukaj…\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Wyczyść zapytanie\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Wyszukiwane hasło\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Szukaj\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Wyślij zapytanie\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Wyszukiwanie głosowe\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Udostępnij dla\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Udostępnij dla %s\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Zwiń\"</string>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/values-pl/values-pl.xml -->\n    <eat-comment/>\n    <string name=\"catalyst_debugjs\">Debug JS</string>\n    <string name=\"catalyst_element_inspector\">Zbadaj element</string>\n    <string name=\"catalyst_jsload_error\">Unable to download JS bundle</string>\n    <string name=\"catalyst_jsload_message\">Fetching JS bundle</string>\n    <string name=\"catalyst_jsload_title\">Zaczekaj...</string>\n    <string name=\"catalyst_reloadjs\">Reload JS</string>\n    <string name=\"catalyst_settings\">Dev Settings</string>\n    <string name=\"catalyst_settings_title\">Catalyst Dev Settings</string>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-pl/values-pl.xml -->\n    <eat-comment/>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/values-port/values-port.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-port/values-port.xml -->\n    <eat-comment/>\n    <bool name=\"abc_action_bar_embed_tabs\">false</bool>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/values-pt/values-pt.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-pt/values-pt.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Navegar para a página inicial\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Navegar para cima\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Mais opções\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Concluído\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Ver tudo\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Selecione um app\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Pesquisar...\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Limpar consulta\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Consulta de pesquisa\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Pesquisar\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Enviar consulta\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Pesquisa por voz\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Compartilhar com\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Compartilhar com %s\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Recolher\"</string>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/values-pt/values-pt.xml -->\n    <eat-comment/>\n    <string name=\"catalyst_debugjs\">Debug JS</string>\n    <string name=\"catalyst_element_inspector\">Show Inspector</string>\n    <string name=\"catalyst_jsload_error\">Unable to download JS bundle</string>\n    <string name=\"catalyst_jsload_message\">Fetching JS bundle</string>\n    <string name=\"catalyst_jsload_title\">Aguarde...</string>\n    <string name=\"catalyst_reloadjs\">Reload JS</string>\n    <string name=\"catalyst_settings\">Dev Settings</string>\n    <string name=\"catalyst_settings_title\">Catalyst Dev Settings</string>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-pt/values-pt.xml -->\n    <eat-comment/>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/values-pt-rPT/values-pt-rPT.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-pt-rPT/values-pt-rPT.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Navegar para a página inicial\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Navegar para cima\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Mais opções\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Concluído\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Ver tudo\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Escolher uma aplicação\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Pesquisar...\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Limpar consulta\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Consulta de pesquisa\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Pesquisar\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Enviar consulta\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Pesquisa por voz\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Partilhar com\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Partilhar com %s\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Reduzir\"</string>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/values-pt-rPT/values-pt-rPT.xml -->\n    <eat-comment/>\n    <string name=\"catalyst_debugjs\">Debug JS</string>\n    <string name=\"catalyst_element_inspector\">Show Inspector</string>\n    <string name=\"catalyst_jsload_error\">Unable to download JS bundle</string>\n    <string name=\"catalyst_jsload_message\">Fetching JS bundle</string>\n    <string name=\"catalyst_jsload_title\">Aguarda...</string>\n    <string name=\"catalyst_reloadjs\">Reload JS</string>\n    <string name=\"catalyst_settings\">Dev Settings</string>\n    <string name=\"catalyst_settings_title\">Catalyst Dev Settings</string>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-pt-rPT/values-pt-rPT.xml -->\n    <eat-comment/>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"+999\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/values-ro/values-ro.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ro/values-ro.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Navigați la ecranul de pornire\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Navigați în sus\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Mai multe opțiuni\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Terminat\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Afișați-le pe toate\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Alegeți o aplicație\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Căutați…\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Ștergeți interogarea\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Interogare de căutare\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Căutați\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Trimiteți interogarea\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Căutare vocală\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Trimiteți la\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Trimiteți la %s\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Restrângeți\"</string>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/values-ro/values-ro.xml -->\n    <eat-comment/>\n    <string name=\"catalyst_debugjs\">Debug JS</string>\n    <string name=\"catalyst_element_inspector\">Show Inspector</string>\n    <string name=\"catalyst_jsload_error\">Unable to download JS bundle</string>\n    <string name=\"catalyst_jsload_message\">Fetching JS bundle</string>\n    <string name=\"catalyst_jsload_title\">Please wait...</string>\n    <string name=\"catalyst_reloadjs\">Reload JS</string>\n    <string name=\"catalyst_settings\">Dev Settings</string>\n    <string name=\"catalyst_settings_title\">Catalyst Dev Settings</string>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ro/values-ro.xml -->\n    <eat-comment/>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"˃999\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/values-ru/values-ru.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ru/values-ru.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Перейти на главный экран\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Перейти вверх\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Другие параметры\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Готово\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Показать все\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Выбрать приложение\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Поиск\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Удалить запрос\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Поисковый запрос\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Поиск\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Отправить запрос\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Голосовой поиск\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Открыть доступ\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Открыть доступ пользователю %s\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Свернуть\"</string>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/values-ru/values-ru.xml -->\n    <eat-comment/>\n    <string name=\"catalyst_debugjs\">Debug JS</string>\n    <string name=\"catalyst_element_inspector\">Проверить элемент</string>\n    <string name=\"catalyst_jsload_error\">Unable to download JS bundle</string>\n    <string name=\"catalyst_jsload_message\">Fetching JS bundle</string>\n    <string name=\"catalyst_jsload_title\">Подождите...</string>\n    <string name=\"catalyst_reloadjs\">Reload JS</string>\n    <string name=\"catalyst_settings\">Dev Settings</string>\n    <string name=\"catalyst_settings_title\">Catalyst Dev Settings</string>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ru/values-ru.xml -->\n    <eat-comment/>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\">999\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/values-si-rLK/values-si-rLK.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-si-rLK/values-si-rLK.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"ගෙදරට සංචාලනය කරන්න\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"ඉහලට සංචාලනය කරන්න\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"තවත් විකල්ප\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"අවසාන වූ\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"සියල්ල බලන්න\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"යෙදුමක් තෝරන්න\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"සොයන්න...\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"විමසුම හිස් කරන්න\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"සෙවුම් විමසුම\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"සෙවීම\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"විමසුම යොමු කරන්න\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"හඬ සෙවීම\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"සමඟ බෙදාගන්න\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"%s සමඟ බෙදාගන්න\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"හකුළන්න\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/values-sk/values-sk.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sk/values-sk.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Prejsť na plochu\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Prejsť hore\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Ďalšie možnosti\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Hotovo\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Zobraziť všetko\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Zvoľte aplikáciu\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Vyhľadať…\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Vymazať dopyt\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Vyhľadávací dopyt\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Hľadať\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Odoslať dopyt\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Hlasové vyhľadávanie\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Zdieľať pomocou\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Zdieľať pomocou %s\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Zbaliť\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/values-sl/values-sl.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sl/values-sl.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Krmarjenje domov\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Krmarjenje navzgor\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Več možnosti\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Končano\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Pokaži vse\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Izbira aplikacije\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Iskanje …\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Izbris poizvedbe\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Iskalna poizvedba\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Iskanje\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Pošiljanje poizvedbe\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Glasovno iskanje\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Deljenje z\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Deljenje z:\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Strni\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/values-sq-rAL/values-sq-rAL.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sq-rAL/values-sq-rAL.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Orientohu për në shtëpi\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Ngjitu lart\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Opsione të tjera\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"U krye!\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Shikoji të gjitha\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Zgjidh një aplikacion\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Kërko...\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Pastro pyetjen\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Kërko pyetjen\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Kërko\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Dërgo pyetjen\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Kërkim me zë\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Shpërnda publikisht me\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Shpërnda publikisht me %s\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Shpalos\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/values-sr/values-sr.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sr/values-sr.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Одлазак на Почетну\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Кретање нагоре\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Још опција\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Готово\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Прикажи све\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Избор апликације\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Претражите...\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Брисање упита\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Упит за претрагу\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Претрага\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Слање упита\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Гласовна претрага\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Дели са\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Дели са апликацијом %s\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Скупи\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\">999\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/values-sv/values-sv.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sv/values-sv.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Visa startsidan\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Navigera uppåt\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Fler alternativ\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Klart\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Visa alla\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Välj en app\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Sök …\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Ta bort frågan\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Sökfråga\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Sök\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Skicka fråga\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Röstsökning\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Dela med\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Dela med %s\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Komprimera\"</string>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/values-sv/values-sv.xml -->\n    <eat-comment/>\n    <string name=\"catalyst_debugjs\">Debug JS</string>\n    <string name=\"catalyst_element_inspector\">Inspektionselement</string>\n    <string name=\"catalyst_jsload_error\">Unable to download JS bundle</string>\n    <string name=\"catalyst_jsload_message\">Fetching JS bundle</string>\n    <string name=\"catalyst_jsload_title\">Vänta ...</string>\n    <string name=\"catalyst_reloadjs\">Reload JS</string>\n    <string name=\"catalyst_settings\">Dev Settings</string>\n    <string name=\"catalyst_settings_title\">Catalyst Dev Settings</string>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sv/values-sv.xml -->\n    <eat-comment/>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\">999\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/values-sw/values-sw.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sw/values-sw.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Nenda mwanzo\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Nenda juu\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Chaguo zaidi\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Nimemaliza\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Angalia zote\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Chagua programu\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Tafuta…\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Futa hoja\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Hoja ya utafutaji\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Tafuta\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Wasilisha hoja\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Tafuta kwa kutamka\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Shiriki na:\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Shiriki na %s\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Kunja\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/values-sw600dp/values-sw600dp.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-sw600dp/values-sw600dp.xml -->\n    <eat-comment/>\n    <dimen name=\"abc_action_bar_content_inset_material\">24dp</dimen>\n    <dimen name=\"abc_action_bar_default_height_material\">64dp</dimen>\n    <dimen name=\"abc_action_bar_default_padding_end_material\">8dp</dimen>\n    <dimen name=\"abc_action_bar_default_padding_start_material\">8dp</dimen>\n    <dimen name=\"abc_config_prefDialogWidth\">580dp</dimen>\n    <dimen name=\"abc_text_size_subtitle_material_toolbar\">16dp</dimen>\n    <dimen name=\"abc_text_size_title_material_toolbar\">20dp</dimen>\n    <integer name=\"abc_max_action_buttons\">5</integer>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/values-ta-rIN/values-ta-rIN.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ta-rIN/values-ta-rIN.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"முகப்பிற்கு வழிசெலுத்து\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"மேலே வழிசெலுத்து\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"மேலும் விருப்பங்கள்\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"முடிந்தது\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"எல்லாம் காட்டு\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"பயன்பாட்டைத் தேர்வுசெய்க\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"தேடு...\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"வினவலை அழி\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"தேடல் வினவல்\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"தேடு\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"வினவலைச் சமர்ப்பி\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"குரல் தேடல்\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"இதனுடன் பகிர்\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"%s உடன் பகிர்\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"சுருக்கு\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/values-te-rIN/values-te-rIN.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-te-rIN/values-te-rIN.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"హోమ్‌కు నావిగేట్ చేయండి\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"పైకి నావిగేట్ చేయండి\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"మరిన్ని ఎంపికలు\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"పూర్తయింది\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"అన్నీ చూడండి\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"అనువర్తనాన్ని ఎంచుకోండి\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"శోధించు...\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"ప్రశ్నను క్లియర్ చేయి\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"ప్రశ్న శోధించండి\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"శోధించు\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"ప్రశ్నని సమర్పించు\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"వాయిస్ శోధన\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"వీరితో భాగస్వామ్యం చేయి\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"%sతో భాగస్వామ్యం చేయి\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"కుదించండి\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/values-th/values-th.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-th/values-th.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"นำทางไปหน้าแรก\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"นำทางขึ้น\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"ตัวเลือกอื่น\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"เสร็จสิ้น\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"ดูทั้งหมด\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"เลือกแอป\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"ค้นหา…\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"ล้างข้อความค้นหา\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"ข้อความค้นหา\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"ค้นหา\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"ส่งข้อความค้นหา\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"ค้นหาด้วยเสียง\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"แชร์กับ\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"แชร์กับ %s\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"ยุบ\"</string>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/values-th/values-th.xml -->\n    <eat-comment/>\n    <string name=\"catalyst_debugjs\">Debug JS</string>\n    <string name=\"catalyst_element_inspector\">ตรวจสอบอิลิเมนต์</string>\n    <string name=\"catalyst_jsload_error\">Unable to download JS bundle</string>\n    <string name=\"catalyst_jsload_message\">Fetching JS bundle</string>\n    <string name=\"catalyst_jsload_title\">โปรดรอ...</string>\n    <string name=\"catalyst_reloadjs\">Reload JS</string>\n    <string name=\"catalyst_settings\">Dev Settings</string>\n    <string name=\"catalyst_settings_title\">Catalyst Dev Settings</string>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-th/values-th.xml -->\n    <eat-comment/>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/values-tl/values-tl.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-tl/values-tl.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Mag-navigate patungo sa home\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Mag-navigate pataas\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Higit pang mga opsyon\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Tapos na\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Tingnan lahat\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Pumili ng isang app\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Maghanap…\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"I-clear ang query\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Query sa paghahanap\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Maghanap\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Isumite ang query\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Paghahanap gamit ang boses\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Ibahagi sa/kay\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Ibahagi sa/kay %s\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"I-collapse\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/values-tr/values-tr.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-tr/values-tr.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Ana ekrana git\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Yukarı git\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Diğer seçenekler\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Tamamlandı\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Tümünü göster\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Bir uygulama seçin\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Ara…\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Sorguyu temizle\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Arama sorgusu\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Ara\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Sorguyu gönder\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Sesli arama\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Şununla paylaş\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"%s ile paylaş\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Daralt\"</string>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/values-tr/values-tr.xml -->\n    <eat-comment/>\n    <string name=\"catalyst_debugjs\">Debug JS</string>\n    <string name=\"catalyst_element_inspector\">Öğeyi Denetle</string>\n    <string name=\"catalyst_jsload_error\">Unable to download JS bundle</string>\n    <string name=\"catalyst_jsload_message\">Fetching JS bundle</string>\n    <string name=\"catalyst_jsload_title\">Lütfen bekleyin...</string>\n    <string name=\"catalyst_reloadjs\">Reload JS</string>\n    <string name=\"catalyst_settings\">Dev Settings</string>\n    <string name=\"catalyst_settings_title\">Catalyst Dev Settings</string>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-tr/values-tr.xml -->\n    <eat-comment/>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/values-uk/values-uk.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-uk/values-uk.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Перейти на головний\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Перейти вгору\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Інші опції\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Готово\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Переглянути всі\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Вибрати програму\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Пошук…\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Очистити запит\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Пошуковий запит\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Пошук\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Надіслати запит\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Голосовий пошук\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Надіслати через\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Надіслати через %s\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Згорнути\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/values-ur-rPK/values-ur-rPK.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-ur-rPK/values-ur-rPK.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"ہوم پر نیویگیٹ کریں\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"اوپر نیویگیٹ کریں\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"مزید اختیارات\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"ہو گیا\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"سبھی دیکھیں\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"ایک ایپ منتخب کریں\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"تلاش کریں…\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"استفسار صاف کریں\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"استفسار تلاش کریں\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"تلاش کریں\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"استفسار جمع کرائیں\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"صوتی تلاش\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"اشتراک کریں مع\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"‏%s کے ساتھ اشتراک کریں\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"سکیڑیں\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"‎999+‎\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/values-uz-rUZ/values-uz-rUZ.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-uz-rUZ/values-uz-rUZ.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Boshiga o‘tish\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Yuqoriga o‘tish\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Qo‘shimcha sozlamalar\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Tayyor\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Barchasini ko‘rish\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Dastur tanlang\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Qidirish…\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"So‘rovni tozalash\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"So‘rovni izlash\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Izlash\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"So‘rov yaratish\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Ovozli qidiruv\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Bo‘lishish:\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Yig‘ish\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/values-v11/values-v11.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v11/values-v11.xml -->\n    <eat-comment/>\n    <style name=\"Base.TextAppearance.AppCompat.Inverse\">\n        <item name=\"android:textColor\">?android:attr/textColorPrimaryInverse</item>\n        <item name=\"android:textColorHint\">?android:attr/textColorHintInverse</item>\n        <item name=\"android:textColorHighlight\">?android:attr/textColorHighlightInverse</item>\n        <item name=\"android:textColorLink\">?android:attr/textColorLinkInverse</item>\n    </style>\n    <style name=\"Base.TextAppearance.AppCompat.Large.Inverse\">\n        <item name=\"android:textColor\">?android:attr/textColorPrimaryInverse</item>\n        <item name=\"android:textColorHint\">?android:attr/textColorHintInverse</item>\n        <item name=\"android:textColorHighlight\">?android:attr/textColorHighlightInverse</item>\n        <item name=\"android:textColorLink\">?android:attr/textColorLinkInverse</item>\n    </style>\n    <style name=\"Base.TextAppearance.AppCompat.Medium.Inverse\">\n        <item name=\"android:textColor\">?android:attr/textColorSecondaryInverse</item>\n        <item name=\"android:textColorHint\">?android:attr/textColorHintInverse</item>\n        <item name=\"android:textColorHighlight\">?android:attr/textColorHighlightInverse</item>\n        <item name=\"android:textColorLink\">?android:attr/textColorLinkInverse</item>\n    </style>\n    <style name=\"Base.TextAppearance.AppCompat.Small.Inverse\">\n        <item name=\"android:textColor\">?android:attr/textColorTertiaryInverse</item>\n        <item name=\"android:textColorHint\">?android:attr/textColorHintInverse</item>\n        <item name=\"android:textColorHighlight\">?android:attr/textColorHighlightInverse</item>\n        <item name=\"android:textColorLink\">?android:attr/textColorLinkInverse</item>\n    </style>\n    <style name=\"Base.TextAppearance.AppCompat.Subhead.Inverse\">\n        <item name=\"android:textColor\">?android:attr/textColorPrimaryInverse</item>\n        <item name=\"android:textColorHint\">?android:attr/textColorHintInverse</item>\n        <item name=\"android:textColorHighlight\">?android:attr/textColorHighlightInverse</item>\n        <item name=\"android:textColorLink\">?android:attr/textColorLinkInverse</item>\n    </style>\n    <style name=\"Base.TextAppearance.AppCompat.Title.Inverse\">\n        <item name=\"android:textColor\">?android:attr/textColorPrimaryInverse</item>\n        <item name=\"android:textColorHint\">?android:attr/textColorHintInverse</item>\n        <item name=\"android:textColorHighlight\">?android:attr/textColorHighlightInverse</item>\n        <item name=\"android:textColorLink\">?android:attr/textColorLinkInverse</item>\n    </style>\n    <style name=\"Base.Theme.AppCompat.Dialog\" parent=\"Base.V11.Theme.AppCompat.Dialog\"/>\n    <style name=\"Base.Theme.AppCompat.Light.Dialog\" parent=\"Base.V11.Theme.AppCompat.Light.Dialog\"/>\n    <style name=\"Base.V11.Theme.AppCompat.Dialog\" parent=\"Base.V7.Theme.AppCompat.Dialog\">\n        <item name=\"android:buttonBarStyle\">@style/Widget.AppCompat.ButtonBar.AlertDialog</item>\n        <item name=\"android:borderlessButtonStyle\">@style/Widget.AppCompat.Button.Borderless</item>\n        <item name=\"android:windowCloseOnTouchOutside\">@bool/abc_config_closeDialogWhenTouchOutside</item>\n    </style>\n    <style name=\"Base.V11.Theme.AppCompat.Light.Dialog\" parent=\"Base.V7.Theme.AppCompat.Light.Dialog\">\n        <item name=\"android:buttonBarStyle\">@style/Widget.AppCompat.ButtonBar.AlertDialog</item>\n        <item name=\"android:borderlessButtonStyle\">@style/Widget.AppCompat.Button.Borderless</item>\n        <item name=\"android:windowCloseOnTouchOutside\">@bool/abc_config_closeDialogWhenTouchOutside</item>\n    </style>\n    <style name=\"Base.Widget.AppCompat.ProgressBar\" parent=\"android:Widget.Holo.ProgressBar\">\n    </style>\n    <style name=\"Base.Widget.AppCompat.ProgressBar.Horizontal\" parent=\"android:Widget.Holo.ProgressBar.Horizontal\">\n    </style>\n    <style name=\"Platform.AppCompat\" parent=\"Platform.V11.AppCompat\"/>\n    <style name=\"Platform.AppCompat.Light\" parent=\"Platform.V11.AppCompat.Light\"/>\n    <style name=\"Platform.V11.AppCompat\" parent=\"android:Theme.Holo\">\n        <item name=\"android:windowNoTitle\">true</item>\n        <item name=\"android:windowActionBar\">false</item>\n\n        <item name=\"android:buttonBarStyle\">?attr/buttonBarStyle</item>\n        <item name=\"android:buttonBarButtonStyle\">?attr/buttonBarButtonStyle</item>\n\n        <item name=\"selectableItemBackground\">?android:attr/selectableItemBackground</item>\n\n        <!-- Window colors -->\n        <item name=\"android:colorForeground\">@color/foreground_material_dark</item>\n        <item name=\"android:colorForegroundInverse\">@color/foreground_material_light</item>\n        <item name=\"android:colorBackground\">@color/background_material_dark</item>\n        <item name=\"android:colorBackgroundCacheHint\">@color/abc_background_cache_hint_selector_material_dark</item>\n        <item name=\"android:disabledAlpha\">@dimen/abc_disabled_alpha_material_dark</item>\n        <item name=\"android:backgroundDimAmount\">0.6</item>\n        <item name=\"android:windowBackground\">@color/background_material_dark</item>\n\n        <!-- Text colors -->\n        <item name=\"android:textColorPrimary\">@color/abc_primary_text_material_dark</item>\n        <item name=\"android:textColorPrimaryInverse\">@color/abc_primary_text_material_light</item>\n        <item name=\"android:textColorPrimaryDisableOnly\">@color/abc_primary_text_disable_only_material_dark</item>\n        <item name=\"android:textColorSecondary\">@color/abc_secondary_text_material_dark</item>\n        <item name=\"android:textColorSecondaryInverse\">@color/abc_secondary_text_material_light</item>\n        <item name=\"android:textColorTertiary\">@color/abc_secondary_text_material_dark</item>\n        <item name=\"android:textColorTertiaryInverse\">@color/abc_secondary_text_material_light</item>\n        <item name=\"android:textColorHint\">@color/hint_foreground_material_dark</item>\n        <item name=\"android:textColorHintInverse\">@color/hint_foreground_material_light</item>\n        <item name=\"android:textColorHighlight\">@color/highlighted_text_material_dark</item>\n        <item name=\"android:textColorHighlightInverse\">@color/highlighted_text_material_light</item>\n        <item name=\"android:textColorLink\">?attr/colorAccent</item>\n        <item name=\"android:textColorLinkInverse\">?attr/colorAccent</item>\n        <item name=\"android:textColorAlertDialogListItem\">@color/abc_primary_text_material_dark</item>\n\n        <!-- Text styles -->\n        <item name=\"android:textAppearance\">@style/TextAppearance.AppCompat</item>\n        <item name=\"android:textAppearanceInverse\">@style/TextAppearance.AppCompat.Inverse</item>\n        <item name=\"android:textAppearanceLarge\">@style/TextAppearance.AppCompat.Large</item>\n        <item name=\"android:textAppearanceLargeInverse\">@style/TextAppearance.AppCompat.Large.Inverse</item>\n        <item name=\"android:textAppearanceMedium\">@style/TextAppearance.AppCompat.Medium</item>\n        <item name=\"android:textAppearanceMediumInverse\">@style/TextAppearance.AppCompat.Medium.Inverse</item>\n        <item name=\"android:textAppearanceSmall\">@style/TextAppearance.AppCompat.Small</item>\n        <item name=\"android:textAppearanceSmallInverse\">@style/TextAppearance.AppCompat.Small.Inverse</item>\n\n        <item name=\"android:listChoiceIndicatorSingle\">@drawable/abc_btn_radio_material</item>\n        <item name=\"android:listChoiceIndicatorMultiple\">@drawable/abc_btn_check_material</item>\n\n        <item name=\"android:actionModeCutDrawable\">?actionModeCutDrawable</item>\n        <item name=\"android:actionModeCopyDrawable\">?actionModeCopyDrawable</item>\n        <item name=\"android:actionModePasteDrawable\">?actionModePasteDrawable</item>\n    </style>\n    <style name=\"Platform.V11.AppCompat.Light\" parent=\"android:Theme.Holo.Light\">\n        <item name=\"android:windowNoTitle\">true</item>\n        <item name=\"android:windowActionBar\">false</item>\n\n        <item name=\"android:buttonBarStyle\">?attr/buttonBarStyle</item>\n        <item name=\"android:buttonBarButtonStyle\">?attr/buttonBarButtonStyle</item>\n\n        <item name=\"selectableItemBackground\">?android:attr/selectableItemBackground</item>\n\n        <!-- Window colors -->\n        <item name=\"android:colorForeground\">@color/foreground_material_light</item>\n        <item name=\"android:colorForegroundInverse\">@color/foreground_material_dark</item>\n        <item name=\"android:colorBackground\">@color/background_material_light</item>\n        <item name=\"android:colorBackgroundCacheHint\">@color/abc_background_cache_hint_selector_material_light</item>\n        <item name=\"android:disabledAlpha\">@dimen/abc_disabled_alpha_material_light</item>\n        <item name=\"android:backgroundDimAmount\">0.6</item>\n        <item name=\"android:windowBackground\">@color/background_material_light</item>\n\n        <!-- Text colors -->\n        <item name=\"android:textColorPrimary\">@color/abc_primary_text_material_light</item>\n        <item name=\"android:textColorPrimaryInverse\">@color/abc_primary_text_material_dark</item>\n        <item name=\"android:textColorSecondary\">@color/abc_secondary_text_material_light</item>\n        <item name=\"android:textColorSecondaryInverse\">@color/abc_secondary_text_material_dark</item>\n        <item name=\"android:textColorTertiary\">@color/abc_secondary_text_material_light</item>\n        <item name=\"android:textColorTertiaryInverse\">@color/abc_secondary_text_material_dark</item>\n        <item name=\"android:textColorPrimaryDisableOnly\">@color/abc_primary_text_disable_only_material_light</item>\n        <item name=\"android:textColorPrimaryInverseDisableOnly\">@color/abc_primary_text_disable_only_material_dark</item>\n        <item name=\"android:textColorHint\">@color/hint_foreground_material_light</item>\n        <item name=\"android:textColorHintInverse\">@color/hint_foreground_material_dark</item>\n        <item name=\"android:textColorHighlight\">@color/highlighted_text_material_light</item>\n        <item name=\"android:textColorHighlightInverse\">@color/highlighted_text_material_dark</item>\n        <item name=\"android:textColorLink\">?attr/colorAccent</item>\n        <item name=\"android:textColorLinkInverse\">?attr/colorAccent</item>\n        <item name=\"android:textColorAlertDialogListItem\">@color/abc_primary_text_material_light</item>\n\n        <!-- Text styles -->\n        <item name=\"android:textAppearance\">@style/TextAppearance.AppCompat</item>\n        <item name=\"android:textAppearanceInverse\">@style/TextAppearance.AppCompat.Inverse</item>\n        <item name=\"android:textAppearanceLarge\">@style/TextAppearance.AppCompat.Large</item>\n        <item name=\"android:textAppearanceLargeInverse\">@style/TextAppearance.AppCompat.Large.Inverse</item>\n        <item name=\"android:textAppearanceMedium\">@style/TextAppearance.AppCompat.Medium</item>\n        <item name=\"android:textAppearanceMediumInverse\">@style/TextAppearance.AppCompat.Medium.Inverse</item>\n        <item name=\"android:textAppearanceSmall\">@style/TextAppearance.AppCompat.Small</item>\n        <item name=\"android:textAppearanceSmallInverse\">@style/TextAppearance.AppCompat.Small.Inverse</item>\n\n        <item name=\"android:listChoiceIndicatorSingle\">@drawable/abc_btn_radio_material</item>\n        <item name=\"android:listChoiceIndicatorMultiple\">@drawable/abc_btn_check_material</item>\n\n        <item name=\"android:actionModeCutDrawable\">?actionModeCutDrawable</item>\n        <item name=\"android:actionModeCopyDrawable\">?actionModeCopyDrawable</item>\n        <item name=\"android:actionModePasteDrawable\">?actionModePasteDrawable</item>\n    </style>\n    <style name=\"Platform.Widget.AppCompat.Spinner\" parent=\"android:Widget.Holo.Spinner\"/>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/values-v12/values-v12.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v12/values-v12.xml -->\n    <eat-comment/>\n    <style name=\"Base.V12.Widget.AppCompat.AutoCompleteTextView\" parent=\"Base.V7.Widget.AppCompat.AutoCompleteTextView\">\n        <item name=\"android:textCursorDrawable\">@drawable/abc_text_cursor_material</item>\n    </style>\n    <style name=\"Base.V12.Widget.AppCompat.EditText\" parent=\"Base.V7.Widget.AppCompat.EditText\">\n        <item name=\"android:textCursorDrawable\">@drawable/abc_text_cursor_material</item>\n    </style>\n    <style name=\"Base.Widget.AppCompat.AutoCompleteTextView\" parent=\"Base.V12.Widget.AppCompat.AutoCompleteTextView\"/>\n    <style name=\"Base.Widget.AppCompat.EditText\" parent=\"Base.V12.Widget.AppCompat.EditText\"/>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/values-v14/values-v14.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v14/values-v14.xml -->\n    <eat-comment/>\n    <style name=\"Base.TextAppearance.AppCompat.Button\">\n        <item name=\"android:textSize\">@dimen/abc_text_size_button_material</item>\n        <item name=\"android:textAllCaps\">true</item>\n        <item name=\"android:textColor\">?android:textColorPrimary</item>\n    </style>\n    <style name=\"Platform.AppCompat\" parent=\"Platform.V14.AppCompat\"/>\n    <style name=\"Platform.AppCompat.Light\" parent=\"Platform.V14.AppCompat.Light\"/>\n    <style name=\"Platform.V14.AppCompat\" parent=\"Platform.V11.AppCompat\">\n        <item name=\"android:actionModeSelectAllDrawable\">?actionModeSelectAllDrawable</item>\n\n        <item name=\"android:listPreferredItemPaddingLeft\">@dimen/abc_list_item_padding_horizontal_material</item>\n        <item name=\"android:listPreferredItemPaddingRight\">@dimen/abc_list_item_padding_horizontal_material</item>\n    </style>\n    <style name=\"Platform.V14.AppCompat.Light\" parent=\"Platform.V11.AppCompat.Light\">\n        <item name=\"android:actionModeSelectAllDrawable\">?actionModeSelectAllDrawable</item>\n\n        <item name=\"android:listPreferredItemPaddingLeft\">@dimen/abc_list_item_padding_horizontal_material</item>\n        <item name=\"android:listPreferredItemPaddingRight\">@dimen/abc_list_item_padding_horizontal_material</item>\n    </style>\n    <style name=\"TextAppearance.StatusBar.EventContent\" parent=\"@android:style/TextAppearance.StatusBar.EventContent\"/>\n    <style name=\"TextAppearance.StatusBar.EventContent.Info\"/>\n    <style name=\"TextAppearance.StatusBar.EventContent.Line2\">\n        <item name=\"android:textSize\">@dimen/notification_subtext_size</item>\n    </style>\n    <style name=\"TextAppearance.StatusBar.EventContent.Time\"/>\n    <style name=\"TextAppearance.StatusBar.EventContent.Title\" parent=\"@android:style/TextAppearance.StatusBar.EventContent.Title\"/>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/values-v17/values-v17.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v17/values-v17.xml -->\n    <eat-comment/>\n    <style name=\"RtlOverlay.DialogWindowTitle.AppCompat\" parent=\"Base.DialogWindowTitle.AppCompat\">\n        <item name=\"android:textAlignment\">viewStart</item>\n    </style>\n    <style name=\"RtlOverlay.Widget.AppCompat.ActionBar.TitleItem\" parent=\"android:Widget\">\n        <item name=\"android:layout_gravity\">center_vertical|start</item>\n        <item name=\"android:paddingEnd\">8dp</item>\n    </style>\n    <style name=\"RtlOverlay.Widget.AppCompat.ActionButton.Overflow\" parent=\"Base.Widget.AppCompat.ActionButton.Overflow\">\n        <item name=\"android:paddingStart\">@dimen/abc_action_bar_overflow_padding_start_material</item>\n        <item name=\"android:paddingEnd\">@dimen/abc_action_bar_overflow_padding_end_material</item>\n    </style>\n    <style name=\"RtlOverlay.Widget.AppCompat.DialogTitle.Icon\" parent=\"android:Widget\">\n        <item name=\"android:layout_marginEnd\">8dp</item>\n    </style>\n    <style name=\"RtlOverlay.Widget.AppCompat.PopupMenuItem\" parent=\"android:Widget\">\n        <item name=\"android:paddingEnd\">16dp</item>\n    </style>\n    <style name=\"RtlOverlay.Widget.AppCompat.PopupMenuItem.InternalGroup\" parent=\"android:Widget\">\n        <item name=\"android:layout_marginStart\">16dp</item>\n    </style>\n    <style name=\"RtlOverlay.Widget.AppCompat.PopupMenuItem.Text\" parent=\"android:Widget\">\n        <item name=\"android:layout_alignParentStart\">true</item>\n        <item name=\"android:textAlignment\">viewStart</item>\n    </style>\n    <style name=\"RtlOverlay.Widget.AppCompat.Search.DropDown\" parent=\"android:Widget\">\n        <item name=\"android:paddingStart\">@dimen/abc_dropdownitem_text_padding_left</item>\n        <item name=\"android:paddingEnd\">4dp</item>\n    </style>\n    <style name=\"RtlOverlay.Widget.AppCompat.Search.DropDown.Icon1\" parent=\"android:Widget\">\n        <item name=\"android:layout_alignParentStart\">true</item>\n    </style>\n    <style name=\"RtlOverlay.Widget.AppCompat.Search.DropDown.Icon2\" parent=\"android:Widget\">\n        <item name=\"android:layout_toStartOf\">@id/edit_query</item>\n    </style>\n    <style name=\"RtlOverlay.Widget.AppCompat.Search.DropDown.Query\" parent=\"android:Widget\">\n        <item name=\"android:layout_alignParentEnd\">true</item>\n    </style>\n    <style name=\"RtlOverlay.Widget.AppCompat.Search.DropDown.Text\" parent=\"Base.Widget.AppCompat.DropDownItem.Spinner\">\n        <item name=\"android:layout_toStartOf\">@android:id/icon2</item>\n        <item name=\"android:layout_toEndOf\">@android:id/icon1</item>\n    </style>\n    <style name=\"RtlOverlay.Widget.AppCompat.SearchView.MagIcon\" parent=\"android:Widget\">\n        <item name=\"android:layout_marginStart\">@dimen/abc_dropdownitem_text_padding_left</item>\n    </style>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/values-v18/values-v18.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v18/values-v18.xml -->\n    <eat-comment/>\n    <dimen name=\"abc_switch_padding\">0px</dimen>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/values-v21/values-v21.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v21/values-v21.xml -->\n    <eat-comment/>\n    <style name=\"Base.TextAppearance.AppCompat\" parent=\"android:TextAppearance.Material\"/>\n    <style name=\"Base.TextAppearance.AppCompat.Body1\" parent=\"android:TextAppearance.Material.Body1\"/>\n    <style name=\"Base.TextAppearance.AppCompat.Body2\" parent=\"android:TextAppearance.Material.Body2\"/>\n    <style name=\"Base.TextAppearance.AppCompat.Button\" parent=\"android:TextAppearance.Material.Button\"/>\n    <style name=\"Base.TextAppearance.AppCompat.Caption\" parent=\"android:TextAppearance.Material.Caption\"/>\n    <style name=\"Base.TextAppearance.AppCompat.Display1\" parent=\"android:TextAppearance.Material.Display1\"/>\n    <style name=\"Base.TextAppearance.AppCompat.Display2\" parent=\"android:TextAppearance.Material.Display2\"/>\n    <style name=\"Base.TextAppearance.AppCompat.Display3\" parent=\"android:TextAppearance.Material.Display3\"/>\n    <style name=\"Base.TextAppearance.AppCompat.Display4\" parent=\"android:TextAppearance.Material.Display4\"/>\n    <style name=\"Base.TextAppearance.AppCompat.Headline\" parent=\"android:TextAppearance.Material.Headline\"/>\n    <style name=\"Base.TextAppearance.AppCompat.Inverse\" parent=\"android:TextAppearance.Material.Inverse\"/>\n    <style name=\"Base.TextAppearance.AppCompat.Large\" parent=\"android:TextAppearance.Material.Large\"/>\n    <style name=\"Base.TextAppearance.AppCompat.Large.Inverse\" parent=\"android:TextAppearance.Material.Large.Inverse\"/>\n    <style name=\"Base.TextAppearance.AppCompat.Light.Widget.PopupMenu.Large\" parent=\"android:TextAppearance.Material.Widget.PopupMenu.Large\">\n    </style>\n    <style name=\"Base.TextAppearance.AppCompat.Light.Widget.PopupMenu.Small\" parent=\"android:TextAppearance.Material.Widget.PopupMenu.Small\">\n    </style>\n    <style name=\"Base.TextAppearance.AppCompat.Medium\" parent=\"android:TextAppearance.Material.Medium\"/>\n    <style name=\"Base.TextAppearance.AppCompat.Medium.Inverse\" parent=\"android:TextAppearance.Material.Medium.Inverse\"/>\n    <style name=\"Base.TextAppearance.AppCompat.Menu\" parent=\"android:TextAppearance.Material.Menu\"/>\n    <style name=\"Base.TextAppearance.AppCompat.SearchResult.Subtitle\" parent=\"android:TextAppearance.Material.SearchResult.Subtitle\">\n    </style>\n    <style name=\"Base.TextAppearance.AppCompat.SearchResult.Title\" parent=\"android:TextAppearance.Material.SearchResult.Title\">\n    </style>\n    <style name=\"Base.TextAppearance.AppCompat.Small\" parent=\"android:TextAppearance.Material.Small\"/>\n    <style name=\"Base.TextAppearance.AppCompat.Small.Inverse\" parent=\"android:TextAppearance.Material.Small.Inverse\"/>\n    <style name=\"Base.TextAppearance.AppCompat.Subhead\" parent=\"android:TextAppearance.Material.Subhead\"/>\n    <style name=\"Base.TextAppearance.AppCompat.Title\" parent=\"android:TextAppearance.Material.Title\"/>\n    <style name=\"Base.TextAppearance.AppCompat.Widget.ActionBar.Menu\" parent=\"android:TextAppearance.Material.Widget.ActionBar.Menu\">\n    </style>\n    <style name=\"Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle\" parent=\"android:TextAppearance.Material.Widget.ActionBar.Subtitle\">\n    </style>\n    <style name=\"Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle.Inverse\" parent=\"android:TextAppearance.Material.Widget.ActionBar.Subtitle.Inverse\">\n    </style>\n    <style name=\"Base.TextAppearance.AppCompat.Widget.ActionBar.Title\" parent=\"android:TextAppearance.Material.Widget.ActionBar.Title\">\n    </style>\n    <style name=\"Base.TextAppearance.AppCompat.Widget.ActionBar.Title.Inverse\" parent=\"android:TextAppearance.Material.Widget.ActionBar.Title.Inverse\">\n    </style>\n    <style name=\"Base.TextAppearance.AppCompat.Widget.ActionMode.Subtitle\" parent=\"android:TextAppearance.Material.Widget.ActionMode.Subtitle\">\n    </style>\n    <style name=\"Base.TextAppearance.AppCompat.Widget.ActionMode.Title\" parent=\"android:TextAppearance.Material.Widget.ActionMode.Title\">\n    </style>\n    <style name=\"Base.TextAppearance.AppCompat.Widget.Button\" parent=\"android:TextAppearance.Material.Widget.Button\"/>\n    <style name=\"Base.TextAppearance.AppCompat.Widget.PopupMenu.Large\" parent=\"android:TextAppearance.Material.Widget.PopupMenu.Large\">\n    </style>\n    <style name=\"Base.TextAppearance.AppCompat.Widget.PopupMenu.Small\" parent=\"android:TextAppearance.Material.Widget.PopupMenu.Small\">\n    </style>\n    <style name=\"Base.TextAppearance.AppCompat.Widget.Switch\" parent=\"android:TextAppearance.Material.Button\"/>\n    <style name=\"Base.TextAppearance.AppCompat.Widget.TextView.SpinnerItem\" parent=\"android:TextAppearance.Material.Widget.TextView.SpinnerItem\"/>\n    <style name=\"Base.TextAppearance.Widget.AppCompat.Toolbar.Subtitle\" parent=\"android:TextAppearance.Material.Widget.ActionBar.Subtitle\">\n    </style>\n    <style name=\"Base.TextAppearance.Widget.AppCompat.Toolbar.Title\" parent=\"android:TextAppearance.Material.Widget.ActionBar.Title\">\n    </style>\n    <style name=\"Base.Theme.AppCompat\" parent=\"Base.V21.Theme.AppCompat\"/>\n    <style name=\"Base.Theme.AppCompat.Dialog\" parent=\"Base.V21.Theme.AppCompat.Dialog\"/>\n    <style name=\"Base.Theme.AppCompat.Light\" parent=\"Base.V21.Theme.AppCompat.Light\"/>\n    <style name=\"Base.Theme.AppCompat.Light.Dialog\" parent=\"Base.V21.Theme.AppCompat.Light.Dialog\"/>\n    <style name=\"Base.V21.Theme.AppCompat\" parent=\"Base.V7.Theme.AppCompat\">\n        <!-- Action Bar styling attributes -->\n        <item name=\"actionBarSize\">?android:attr/actionBarSize</item>\n        <item name=\"actionBarDivider\">?android:attr/actionBarDivider</item>\n        <item name=\"actionBarItemBackground\">@drawable/abc_action_bar_item_background_material</item>\n        <item name=\"actionButtonStyle\">?android:attr/actionButtonStyle</item>\n        <item name=\"actionMenuTextColor\">?android:attr/actionMenuTextColor</item>\n        <item name=\"actionMenuTextAppearance\">?android:attr/actionMenuTextAppearance</item>\n        <item name=\"actionModeBackground\">?android:attr/actionModeBackground</item>\n        <item name=\"actionModeCloseDrawable\">?android:attr/actionModeCloseDrawable</item>\n        <item name=\"actionOverflowButtonStyle\">?android:attr/actionOverflowButtonStyle</item>\n        <item name=\"homeAsUpIndicator\">?android:attr/homeAsUpIndicator</item>\n\n        <!-- For PopupMenu -->\n        <item name=\"listPreferredItemHeightSmall\">?android:attr/listPreferredItemHeightSmall</item>\n        <item name=\"textAppearanceLargePopupMenu\">?android:attr/textAppearanceLargePopupMenu</item>\n        <item name=\"textAppearanceSmallPopupMenu\">?android:attr/textAppearanceSmallPopupMenu</item>\n\n        <!-- General view attributes -->\n        <item name=\"selectableItemBackground\">?android:attr/selectableItemBackground</item>\n        <item name=\"selectableItemBackgroundBorderless\">?android:attr/selectableItemBackgroundBorderless</item>\n        <item name=\"borderlessButtonStyle\">?android:borderlessButtonStyle</item>\n        <item name=\"dividerHorizontal\">?android:attr/dividerHorizontal</item>\n        <item name=\"dividerVertical\">?android:attr/dividerVertical</item>\n        <item name=\"editTextBackground\">?android:attr/editTextBackground</item>\n        <item name=\"editTextColor\">?android:attr/editTextColor</item>\n        <item name=\"listChoiceBackgroundIndicator\">?android:attr/listChoiceBackgroundIndicator</item>\n\n        <!-- Copy the platform default styles for the AppCompat widgets -->\n        <item name=\"autoCompleteTextViewStyle\">?android:attr/autoCompleteTextViewStyle</item>\n        <item name=\"buttonStyle\">?android:attr/buttonStyle</item>\n        <item name=\"buttonStyleSmall\">?android:attr/buttonStyleSmall</item>\n        <item name=\"checkboxStyle\">?android:attr/checkboxStyle</item>\n        <item name=\"checkedTextViewStyle\">?android:attr/checkedTextViewStyle</item>\n        <item name=\"editTextStyle\">?android:attr/editTextStyle</item>\n        <item name=\"radioButtonStyle\">?android:attr/radioButtonStyle</item>\n        <item name=\"ratingBarStyle\">?android:attr/ratingBarStyle</item>\n        <item name=\"spinnerStyle\">?android:attr/spinnerStyle</item>\n\n        <!-- Copy our color theme attributes to the framework -->\n        <item name=\"android:colorPrimary\">?attr/colorPrimary</item>\n        <item name=\"android:colorPrimaryDark\">?attr/colorPrimaryDark</item>\n        <item name=\"android:colorAccent\">?attr/colorAccent</item>\n        <item name=\"android:colorControlNormal\">?attr/colorControlNormal</item>\n        <item name=\"android:colorControlActivated\">?attr/colorControlActivated</item>\n        <item name=\"android:colorControlHighlight\">?attr/colorControlHighlight</item>\n        <item name=\"android:colorButtonNormal\">?attr/colorButtonNormal</item>\n    </style>\n    <style name=\"Base.V21.Theme.AppCompat.Dialog\" parent=\"Base.V11.Theme.AppCompat.Dialog\">\n        <item name=\"android:windowElevation\">@dimen/abc_floating_window_z</item>\n    </style>\n    <style name=\"Base.V21.Theme.AppCompat.Light\" parent=\"Base.V7.Theme.AppCompat.Light\">\n        <!-- Action Bar styling attributes -->\n        <item name=\"actionBarSize\">?android:attr/actionBarSize</item>\n        <item name=\"actionBarDivider\">?android:attr/actionBarDivider</item>\n        <item name=\"actionBarItemBackground\">@drawable/abc_action_bar_item_background_material</item>\n        <item name=\"actionButtonStyle\">?android:attr/actionButtonStyle</item>\n        <item name=\"actionMenuTextColor\">?android:attr/actionMenuTextColor</item>\n        <item name=\"actionMenuTextAppearance\">?android:attr/actionMenuTextAppearance</item>\n        <item name=\"actionModeBackground\">?android:attr/actionModeBackground</item>\n        <item name=\"actionModeCloseDrawable\">?android:attr/actionModeCloseDrawable</item>\n        <item name=\"actionOverflowButtonStyle\">?android:attr/actionOverflowButtonStyle</item>\n        <item name=\"homeAsUpIndicator\">?android:attr/homeAsUpIndicator</item>\n\n        <!-- For PopupMenu -->\n        <item name=\"listPreferredItemHeightSmall\">?android:attr/listPreferredItemHeightSmall</item>\n        <item name=\"textAppearanceLargePopupMenu\">?android:attr/textAppearanceLargePopupMenu</item>\n        <item name=\"textAppearanceSmallPopupMenu\">?android:attr/textAppearanceSmallPopupMenu</item>\n\n        <!-- General view attributes -->\n        <item name=\"selectableItemBackground\">?android:attr/selectableItemBackground</item>\n        <item name=\"selectableItemBackgroundBorderless\">?android:attr/selectableItemBackgroundBorderless</item>\n        <item name=\"borderlessButtonStyle\">?android:borderlessButtonStyle</item>\n        <item name=\"dividerHorizontal\">?android:attr/dividerHorizontal</item>\n        <item name=\"dividerVertical\">?android:attr/dividerVertical</item>\n        <item name=\"editTextBackground\">?android:attr/editTextBackground</item>\n        <item name=\"editTextColor\">?android:attr/editTextColor</item>\n        <item name=\"listChoiceBackgroundIndicator\">?android:attr/listChoiceBackgroundIndicator</item>\n\n        <!-- Copy the platform default styles for the AppCompat widgets -->\n        <item name=\"autoCompleteTextViewStyle\">?android:attr/autoCompleteTextViewStyle</item>\n        <item name=\"buttonStyle\">?android:attr/buttonStyle</item>\n        <item name=\"buttonStyleSmall\">?android:attr/buttonStyleSmall</item>\n        <item name=\"checkboxStyle\">?android:attr/checkboxStyle</item>\n        <item name=\"checkedTextViewStyle\">?android:attr/checkedTextViewStyle</item>\n        <item name=\"editTextStyle\">?android:attr/editTextStyle</item>\n        <item name=\"radioButtonStyle\">?android:attr/radioButtonStyle</item>\n        <item name=\"ratingBarStyle\">?android:attr/ratingBarStyle</item>\n        <item name=\"spinnerStyle\">?android:attr/spinnerStyle</item>\n\n        <!-- Copy our color theme attributes to the framework -->\n        <item name=\"android:colorPrimary\">?attr/colorPrimary</item>\n        <item name=\"android:colorPrimaryDark\">?attr/colorPrimaryDark</item>\n        <item name=\"android:colorAccent\">?attr/colorAccent</item>\n        <item name=\"android:colorControlNormal\">?attr/colorControlNormal</item>\n        <item name=\"android:colorControlActivated\">?attr/colorControlActivated</item>\n        <item name=\"android:colorControlHighlight\">?attr/colorControlHighlight</item>\n        <item name=\"android:colorButtonNormal\">?attr/colorButtonNormal</item>\n    </style>\n    <style name=\"Base.V21.Theme.AppCompat.Light.Dialog\" parent=\"Base.V11.Theme.AppCompat.Light.Dialog\">\n        <item name=\"android:windowElevation\">@dimen/abc_floating_window_z</item>\n    </style>\n    <style name=\"Base.Widget.AppCompat.ActionBar.TabText\" parent=\"android:Widget.Material.ActionBar.TabText\">\n    </style>\n    <style name=\"Base.Widget.AppCompat.ActionBar.TabView\" parent=\"android:Widget.Material.ActionBar.TabView\">\n    </style>\n    <style name=\"Base.Widget.AppCompat.ActionButton\" parent=\"android:Widget.Material.ActionButton\">\n    </style>\n    <style name=\"Base.Widget.AppCompat.ActionButton.CloseMode\" parent=\"android:Widget.Material.ActionButton.CloseMode\">\n        <item name=\"android:minWidth\">56dp</item>\n    </style>\n    <style name=\"Base.Widget.AppCompat.ActionButton.Overflow\" parent=\"android:Widget.Material.ActionButton.Overflow\">\n    </style>\n    <style name=\"Base.Widget.AppCompat.AutoCompleteTextView\" parent=\"android:Widget.Material.AutoCompleteTextView\"/>\n    <style name=\"Base.Widget.AppCompat.Button\" parent=\"android:Widget.Material.Button\"/>\n    <style name=\"Base.Widget.AppCompat.Button.Borderless\" parent=\"android:Widget.Material.Button.Borderless\"/>\n    <style name=\"Base.Widget.AppCompat.Button.Borderless.Colored\" parent=\"android:Widget.Material.Button.Borderless.Colored\"/>\n    <style name=\"Base.Widget.AppCompat.Button.Small\" parent=\"android:Widget.Material.Button.Small\"/>\n    <style name=\"Base.Widget.AppCompat.ButtonBar\" parent=\"android:Widget.Material.ButtonBar\"/>\n    <style name=\"Base.Widget.AppCompat.CompoundButton.CheckBox\" parent=\"android:Widget.Material.CompoundButton.CheckBox\"/>\n    <style name=\"Base.Widget.AppCompat.CompoundButton.RadioButton\" parent=\"android:Widget.Material.CompoundButton.RadioButton\"/>\n    <style name=\"Base.Widget.AppCompat.DropDownItem.Spinner\" parent=\"android:Widget.Material.DropDownItem.Spinner\"/>\n    <style name=\"Base.Widget.AppCompat.EditText\" parent=\"android:Widget.Material.EditText\"/>\n    <style name=\"Base.Widget.AppCompat.Light.ActionBar.TabText\" parent=\"android:Widget.Material.Light.ActionBar.TabText\">\n    </style>\n    <style name=\"Base.Widget.AppCompat.Light.ActionBar.TabText.Inverse\" parent=\"android:Widget.Material.Light.ActionBar.TabText\">\n    </style>\n    <style name=\"Base.Widget.AppCompat.Light.ActionBar.TabView\" parent=\"android:Widget.Material.Light.ActionBar.TabView\">\n    </style>\n    <style name=\"Base.Widget.AppCompat.Light.PopupMenu\" parent=\"android:Widget.Material.Light.PopupMenu\">\n    </style>\n    <style name=\"Base.Widget.AppCompat.Light.PopupMenu.Overflow\">\n        <item name=\"android:dropDownHorizontalOffset\">-4dip</item>\n        <item name=\"android:overlapAnchor\">true</item>\n    </style>\n    <style name=\"Base.Widget.AppCompat.ListPopupWindow\" parent=\"android:Widget.Material.ListPopupWindow\">\n    </style>\n    <style name=\"Base.Widget.AppCompat.ListView\" parent=\"android:Widget.Material.ListView\"/>\n    <style name=\"Base.Widget.AppCompat.ListView.DropDown\" parent=\"android:Widget.Material.ListView.DropDown\"/>\n    <style name=\"Base.Widget.AppCompat.ListView.Menu\"/>\n    <style name=\"Base.Widget.AppCompat.PopupMenu\" parent=\"android:Widget.Material.PopupMenu\">\n    </style>\n    <style name=\"Base.Widget.AppCompat.PopupMenu.Overflow\">\n        <item name=\"android:dropDownHorizontalOffset\">-4dip</item>\n        <item name=\"android:overlapAnchor\">true</item>\n    </style>\n    <style name=\"Base.Widget.AppCompat.ProgressBar\" parent=\"android:Widget.Material.ProgressBar\">\n    </style>\n    <style name=\"Base.Widget.AppCompat.ProgressBar.Horizontal\" parent=\"android:Widget.Material.ProgressBar.Horizontal\">\n    </style>\n    <style name=\"Base.Widget.AppCompat.RatingBar\" parent=\"android:Widget.Material.RatingBar\"/>\n    <style name=\"Base.Widget.AppCompat.Spinner\" parent=\"android:Widget.Material.Spinner\"/>\n    <style name=\"Base.Widget.AppCompat.Spinner.Underlined\" parent=\"android:Widget.Material.Spinner.Underlined\"/>\n    <style name=\"Base.Widget.AppCompat.TextView.SpinnerItem\" parent=\"android:Widget.Material.TextView.SpinnerItem\"/>\n    <style name=\"Base.Widget.AppCompat.Toolbar.Button.Navigation\" parent=\"android:Widget.Material.Toolbar.Button.Navigation\">\n    </style>\n    <style name=\"Platform.AppCompat\" parent=\"android:Theme.Material\">\n        <item name=\"android:windowNoTitle\">true</item>\n        <item name=\"android:windowActionBar\">false</item>\n\n        <item name=\"android:buttonBarStyle\">?attr/buttonBarStyle</item>\n        <item name=\"android:buttonBarButtonStyle\">?attr/buttonBarButtonStyle</item>\n    </style>\n    <style name=\"Platform.AppCompat.Light\" parent=\"android:Theme.Material.Light\">\n        <item name=\"android:windowNoTitle\">true</item>\n        <item name=\"android:windowActionBar\">false</item>\n\n        <item name=\"android:buttonBarStyle\">?attr/buttonBarStyle</item>\n        <item name=\"android:buttonBarButtonStyle\">?attr/buttonBarButtonStyle</item>\n    </style>\n    <style name=\"Platform.ThemeOverlay.AppCompat\" parent=\"\">\n        <!-- Copy our color theme attributes to the framework -->\n        <item name=\"android:colorPrimary\">?attr/colorPrimary</item>\n        <item name=\"android:colorPrimaryDark\">?attr/colorPrimaryDark</item>\n        <item name=\"android:colorAccent\">?attr/colorAccent</item>\n        <item name=\"android:colorControlNormal\">?attr/colorControlNormal</item>\n        <item name=\"android:colorControlActivated\">?attr/colorControlActivated</item>\n        <item name=\"android:colorControlHighlight\">?attr/colorControlHighlight</item>\n        <item name=\"android:colorButtonNormal\">?attr/colorButtonNormal</item>\n    </style>\n    <style name=\"Platform.ThemeOverlay.AppCompat.Dark\"/>\n    <style name=\"Platform.ThemeOverlay.AppCompat.Light\"/>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/values-v22/values-v22.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v22/values-v22.xml -->\n    <eat-comment/>\n    <style name=\"Base.Theme.AppCompat\" parent=\"Base.V22.Theme.AppCompat\"/>\n    <style name=\"Base.Theme.AppCompat.Light\" parent=\"Base.V22.Theme.AppCompat.Light\"/>\n    <style name=\"Base.V22.Theme.AppCompat\" parent=\"Base.V21.Theme.AppCompat\">\n        <item name=\"actionModeShareDrawable\">?android:attr/actionModeShareDrawable</item>\n    </style>\n    <style name=\"Base.V22.Theme.AppCompat.Light\" parent=\"Base.V21.Theme.AppCompat.Light\">\n        <item name=\"actionModeShareDrawable\">?android:attr/actionModeShareDrawable</item>\n    </style>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/values-v23/values-v23.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v23/values-v23.xml -->\n    <eat-comment/>\n    <style name=\"Base.TextAppearance.AppCompat.Widget.Button.Inverse\" parent=\"android:TextAppearance.Material.Widget.Button.Inverse\"/>\n    <style name=\"Base.Theme.AppCompat\" parent=\"Base.V23.Theme.AppCompat\"/>\n    <style name=\"Base.Theme.AppCompat.Light\" parent=\"Base.V23.Theme.AppCompat.Light\"/>\n    <style name=\"Base.V23.Theme.AppCompat\" parent=\"Base.V22.Theme.AppCompat\">\n        <!-- We can use the platform drawable on v23+ -->\n        <item name=\"actionBarItemBackground\">?android:attr/actionBarItemBackground</item>\n\n        <item name=\"controlBackground\">@drawable/abc_control_background_material</item>\n    </style>\n    <style name=\"Base.V23.Theme.AppCompat.Light\" parent=\"Base.V22.Theme.AppCompat.Light\">\n        <!-- We can use the platform drawable on v23+ -->\n        <item name=\"actionBarItemBackground\">?android:attr/actionBarItemBackground</item>\n\n        <item name=\"controlBackground\">@drawable/abc_control_background_material</item>\n    </style>\n    <style name=\"Base.Widget.AppCompat.Button.Colored\" parent=\"android:Widget.Material.Button.Colored\"/>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/values-vi/values-vi.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-vi/values-vi.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Điều hướng về trang chủ\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Điều hướng lên trên\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Thêm tùy chọn\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Xong\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Xem tất cả\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Chọn một ứng dụng\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Tìm kiếm…\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Xóa truy vấn\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Tìm kiếm truy vấn\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Tìm kiếm\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Gửi truy vấn\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Tìm kiếm bằng giọng nói\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Chia sẻ với\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Chia sẻ với %s\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Thu gọn\"</string>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/values-vi/values-vi.xml -->\n    <eat-comment/>\n    <string name=\"catalyst_debugjs\">Debug JS</string>\n    <string name=\"catalyst_element_inspector\">Kiểm tra phần tử</string>\n    <string name=\"catalyst_jsload_error\">Unable to download JS bundle</string>\n    <string name=\"catalyst_jsload_message\">Fetching JS bundle</string>\n    <string name=\"catalyst_jsload_title\">Vui lòng đợi...</string>\n    <string name=\"catalyst_reloadjs\">Reload JS</string>\n    <string name=\"catalyst_settings\">Dev Settings</string>\n    <string name=\"catalyst_settings_title\">Catalyst Dev Settings</string>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-vi/values-vi.xml -->\n    <eat-comment/>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/values-w360dp/values-w360dp.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-w360dp/values-w360dp.xml -->\n    <eat-comment/>\n    <integer name=\"abc_max_action_buttons\">3</integer>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/values-w480dp/values-w480dp.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-w480dp/values-w480dp.xml -->\n    <eat-comment/>\n    <bool name=\"abc_action_bar_embed_tabs_pre_jb\">true</bool>\n    <bool name=\"abc_config_allowActionMenuItemTextWithIcon\">true</bool>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/values-w500dp/values-w500dp.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-w500dp/values-w500dp.xml -->\n    <eat-comment/>\n    <integer name=\"abc_max_action_buttons\">4</integer>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/values-w600dp/values-w600dp.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-w600dp/values-w600dp.xml -->\n    <eat-comment/>\n    <dimen name=\"abc_search_view_text_min_width\">192dip</dimen>\n    <integer name=\"abc_max_action_buttons\">5</integer>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/values-w720dp/values-w720dp.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-w720dp/values-w720dp.xml -->\n    <eat-comment/>\n    <bool name=\"abc_action_bar_expanded_action_views_exclusive\">false</bool>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/values-xlarge/values-xlarge.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-xlarge/values-xlarge.xml -->\n    <eat-comment/>\n    <bool name=\"abc_action_bar_expanded_action_views_exclusive\">false</bool>\n    <dimen name=\"abc_search_view_text_min_width\">192dip</dimen>\n    <item name=\"dialog_fixed_height_major\" type=\"dimen\">60%</item>\n    <item name=\"dialog_fixed_height_minor\" type=\"dimen\">90%</item>\n    <item name=\"dialog_fixed_width_major\" type=\"dimen\">50%</item>\n    <item name=\"dialog_fixed_width_minor\" type=\"dimen\">70%</item>\n    <integer name=\"abc_max_action_buttons\">5</integer>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/values-xlarge-land/values-xlarge-land.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-xlarge-land/values-xlarge-land.xml -->\n    <eat-comment/>\n    <dimen name=\"abc_search_view_text_min_width\">256dip</dimen>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/values-zh-rCN/values-zh-rCN.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-zh-rCN/values-zh-rCN.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"转到主屏幕\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s：%2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s - %2$s：%3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"转到上一层级\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"更多选项\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"完成\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"查看全部\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"选择应用\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"搜索…\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"清除查询\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"搜索查询\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"搜索\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"提交查询\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"语音搜索\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"分享方式\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"通过%s分享\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"收起\"</string>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/values-zh-rCN/values-zh-rCN.xml -->\n    <eat-comment/>\n    <string name=\"catalyst_debugjs\">Debug JS</string>\n    <string name=\"catalyst_element_inspector\">检查元素</string>\n    <string name=\"catalyst_jsload_error\">Unable to download JS bundle</string>\n    <string name=\"catalyst_jsload_message\">Fetching JS bundle</string>\n    <string name=\"catalyst_jsload_title\">请稍等...</string>\n    <string name=\"catalyst_reloadjs\">Reload JS</string>\n    <string name=\"catalyst_settings\">Dev Settings</string>\n    <string name=\"catalyst_settings_title\">Catalyst Dev Settings</string>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-zh-rCN/values-zh-rCN.xml -->\n    <eat-comment/>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/values-zh-rHK/values-zh-rHK.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-zh-rHK/values-zh-rHK.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"瀏覽主頁\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s：%2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s (%2$s)：%3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"向上瀏覽\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"更多選項\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"完成\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"顯示全部\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"選擇應用程式\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"搜尋…\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"清除查詢\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"搜尋查詢\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"搜尋\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"提交查詢\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"語音搜尋\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"分享對象\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"與「%s」分享\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"收合\"</string>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/values-zh-rHK/values-zh-rHK.xml -->\n    <eat-comment/>\n    <string name=\"catalyst_debugjs\">Debug JS</string>\n    <string name=\"catalyst_element_inspector\">檢查項目</string>\n    <string name=\"catalyst_jsload_error\">Unable to download JS bundle</string>\n    <string name=\"catalyst_jsload_message\">Fetching JS bundle</string>\n    <string name=\"catalyst_jsload_title\">請稍候……</string>\n    <string name=\"catalyst_reloadjs\">Reload JS</string>\n    <string name=\"catalyst_settings\">Dev Settings</string>\n    <string name=\"catalyst_settings_title\">Catalyst Dev Settings</string>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-zh-rHK/values-zh-rHK.xml -->\n    <eat-comment/>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999 +\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/values-zh-rTW/values-zh-rTW.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-zh-rTW/values-zh-rTW.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"瀏覽首頁\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s：%2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s - %2$s：%3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"向上瀏覽\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"更多選項\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"完成\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"查看全部\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"選擇應用程式\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"搜尋…\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"清除查詢\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"搜尋查詢\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"搜尋\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"提交查詢\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"語音搜尋\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"選擇分享對象\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"與「%s」分享\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"收合\"</string>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/values-zh-rTW/values-zh-rTW.xml -->\n    <eat-comment/>\n    <string name=\"catalyst_debugjs\">Debug JS</string>\n    <string name=\"catalyst_element_inspector\">檢查元素</string>\n    <string name=\"catalyst_jsload_error\">Unable to download JS bundle</string>\n    <string name=\"catalyst_jsload_message\">Fetching JS bundle</string>\n    <string name=\"catalyst_jsload_title\">請稍候……</string>\n    <string name=\"catalyst_reloadjs\">Reload JS</string>\n    <string name=\"catalyst_settings\">Dev Settings</string>\n    <string name=\"catalyst_settings_title\">Catalyst Dev Settings</string>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-zh-rTW/values-zh-rTW.xml -->\n    <eat-comment/>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/values-zu/values-zu.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-zu/values-zu.xml -->\n    <eat-comment/>\n    <string msgid=\"4600421777120114993\" name=\"abc_action_bar_home_description\">\"Zulazulela ekhaya\"</string>\n    <string msgid=\"1397052879051804371\" name=\"abc_action_bar_home_description_format\">\"%1$s, %2$s\"</string>\n    <string msgid=\"6623331958280229229\" name=\"abc_action_bar_home_subtitle_description_format\">\"%1$s, %2$s, %3$s\"</string>\n    <string msgid=\"1594238315039666878\" name=\"abc_action_bar_up_description\">\"Zulazulela phezulu\"</string>\n    <string msgid=\"3588849162933574182\" name=\"abc_action_menu_overflow_description\">\"Izinketho eziningi\"</string>\n    <string msgid=\"4076576682505996667\" name=\"abc_action_mode_done\">\"Kwenziwe\"</string>\n    <string msgid=\"7468859129482906941\" name=\"abc_activity_chooser_view_see_all\">\"Buka konke\"</string>\n    <string msgid=\"2031811694353399454\" name=\"abc_activitychooserview_choose_application\">\"Khetha uhlelo lokusebenza\"</string>\n    <string msgid=\"7723749260725869598\" name=\"abc_search_hint\">\"Iyasesha...\"</string>\n    <string msgid=\"3691816814315814921\" name=\"abc_searchview_description_clear\">\"Sula inkinga\"</string>\n    <string msgid=\"2550479030709304392\" name=\"abc_searchview_description_query\">\"Umbuzo wosesho\"</string>\n    <string msgid=\"8264924765203268293\" name=\"abc_searchview_description_search\">\"Sesha\"</string>\n    <string msgid=\"8928215447528550784\" name=\"abc_searchview_description_submit\">\"Hambisa umbuzo\"</string>\n    <string msgid=\"893419373245838918\" name=\"abc_searchview_description_voice\">\"Ukusesha ngezwi\"</string>\n    <string msgid=\"3421042268587513524\" name=\"abc_shareactionprovider_share_with\">\"Yabelana no-\"</string>\n    <string msgid=\"7165123711973476752\" name=\"abc_shareactionprovider_share_with_application\">\"Yabelana no-%s\"</string>\n    <string msgid=\"1603543279005712093\" name=\"abc_toolbar_collapse_description\">\"Goqa\"</string>\n    <string msgid=\"2869576371154716097\" name=\"status_bar_notification_info_overflow\">\"999+\"</string>\n</resources>"
  },
  {
    "path": "android/app/build/intermediates/res/merged/debug/xml/preferences.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n\n<PreferenceScreen\n    xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    >\n  <PreferenceCategory\n      android:key=\"catalyst_perf\"\n      android:title=\"Performance\"\n      >\n    <CheckBoxPreference\n        android:key=\"js_dev_mode_debug\"\n        android:title=\"JS Dev Mode\"\n        android:summary=\"Load JavaScript bundle with __DEV__ = true for easier debugging.  Disable for performance testing.\"\n        android:defaultValue=\"true\"\n        />\n    <CheckBoxPreference\n        android:key=\"js_minify_debug\"\n        android:title=\"JS Minify\"\n        android:summary=\"Load JavaScript bundle with minify=true for debugging minification issues.\"\n        android:defaultValue=\"false\"\n        />\n    <CheckBoxPreference\n        android:key=\"animations_debug\"\n        android:title=\"Animations FPS Summaries\"\n        android:summary=\"At the end of animations, Toasts and logs to logcat debug information about the FPS during that transition. Currently only supported for transitions (animated navigations).\"\n        android:defaultValue=\"false\"\n        />\n  </PreferenceCategory>\n  <PreferenceCategory\n      android:key=\"pref_key_catalyst_debug\"\n      android:title=\"Debugging\"\n      >\n    <EditTextPreference\n        android:key=\"debug_http_host\"\n        android:title=\"Debug server host &amp; port for device\"\n        android:summary=\"Debug server host &amp; port for downloading JS bundle or communicating with JS debugger. With this setting empty launcher should work fine when running on emulator (or genymotion) and connection to debug server running on emulator's host.\"\n        android:defaultValue=\"\"\n        />\n  </PreferenceCategory>\n</PreferenceScreen>\n<!-- From: file:/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/res/xml/preferences.xml -->"
  },
  {
    "path": "android/app/build/intermediates/symbols/debug/R.txt",
    "content": "int anim abc_fade_in 0x7f050000\nint anim abc_fade_out 0x7f050001\nint anim abc_grow_fade_in_from_bottom 0x7f050002\nint anim abc_popup_enter 0x7f050003\nint anim abc_popup_exit 0x7f050004\nint anim abc_shrink_fade_out_from_bottom 0x7f050005\nint anim abc_slide_in_bottom 0x7f050006\nint anim abc_slide_in_top 0x7f050007\nint anim abc_slide_out_bottom 0x7f050008\nint anim abc_slide_out_top 0x7f050009\nint anim catalyst_push_up_in 0x7f05000a\nint anim catalyst_push_up_out 0x7f05000b\nint anim slide_down 0x7f05000c\nint anim slide_up 0x7f05000d\nint attr actionBarDivider 0x7f01007e\nint attr actionBarItemBackground 0x7f01007f\nint attr actionBarPopupTheme 0x7f010078\nint attr actionBarSize 0x7f01007d\nint attr actionBarSplitStyle 0x7f01007a\nint attr actionBarStyle 0x7f010079\nint attr actionBarTabBarStyle 0x7f010074\nint attr actionBarTabStyle 0x7f010073\nint attr actionBarTabTextStyle 0x7f010075\nint attr actionBarTheme 0x7f01007b\nint attr actionBarWidgetTheme 0x7f01007c\nint attr actionButtonStyle 0x7f010098\nint attr actionDropDownStyle 0x7f010094\nint attr actionLayout 0x7f01004b\nint attr actionMenuTextAppearance 0x7f010080\nint attr actionMenuTextColor 0x7f010081\nint attr actionModeBackground 0x7f010084\nint attr actionModeCloseButtonStyle 0x7f010083\nint attr actionModeCloseDrawable 0x7f010086\nint attr actionModeCopyDrawable 0x7f010088\nint attr actionModeCutDrawable 0x7f010087\nint attr actionModeFindDrawable 0x7f01008c\nint attr actionModePasteDrawable 0x7f010089\nint attr actionModePopupWindowStyle 0x7f01008e\nint attr actionModeSelectAllDrawable 0x7f01008a\nint attr actionModeShareDrawable 0x7f01008b\nint attr actionModeSplitBackground 0x7f010085\nint attr actionModeStyle 0x7f010082\nint attr actionModeWebSearchDrawable 0x7f01008d\nint attr actionOverflowButtonStyle 0x7f010076\nint attr actionOverflowMenuStyle 0x7f010077\nint attr actionProviderClass 0x7f01004d\nint attr actionViewClass 0x7f01004c\nint attr activityChooserViewStyle 0x7f0100a0\nint attr actualImageScaleType 0x7f01003a\nint attr alertDialogButtonGroupStyle 0x7f0100c2\nint attr alertDialogCenterButtons 0x7f0100c3\nint attr alertDialogStyle 0x7f0100c1\nint attr alertDialogTheme 0x7f0100c4\nint attr arrowHeadLength 0x7f01002b\nint attr arrowShaftLength 0x7f01002c\nint attr autoCompleteTextViewStyle 0x7f0100c9\nint attr background 0x7f01000c\nint attr backgroundImage 0x7f01003b\nint attr backgroundSplit 0x7f01000e\nint attr backgroundStacked 0x7f01000d\nint attr backgroundTint 0x7f0100e5\nint attr backgroundTintMode 0x7f0100e6\nint attr barLength 0x7f01002d\nint attr borderlessButtonStyle 0x7f01009d\nint attr buttonBarButtonStyle 0x7f01009a\nint attr buttonBarNegativeButtonStyle 0x7f0100c7\nint attr buttonBarNeutralButtonStyle 0x7f0100c8\nint attr buttonBarPositiveButtonStyle 0x7f0100c6\nint attr buttonBarStyle 0x7f010099\nint attr buttonPanelSideLayout 0x7f01001f\nint attr buttonStyle 0x7f0100ca\nint attr buttonStyleSmall 0x7f0100cb\nint attr buttonTint 0x7f010025\nint attr buttonTintMode 0x7f010026\nint attr checkboxStyle 0x7f0100cc\nint attr checkedTextViewStyle 0x7f0100cd\nint attr closeIcon 0x7f010059\nint attr closeItemLayout 0x7f01001c\nint attr collapseContentDescription 0x7f0100dc\nint attr collapseIcon 0x7f0100db\nint attr color 0x7f010027\nint attr colorAccent 0x7f0100ba\nint attr colorButtonNormal 0x7f0100be\nint attr colorControlActivated 0x7f0100bc\nint attr colorControlHighlight 0x7f0100bd\nint attr colorControlNormal 0x7f0100bb\nint attr colorPrimary 0x7f0100b8\nint attr colorPrimaryDark 0x7f0100b9\nint attr colorSwitchThumbNormal 0x7f0100bf\nint attr commitIcon 0x7f01005e\nint attr contentInsetEnd 0x7f010017\nint attr contentInsetLeft 0x7f010018\nint attr contentInsetRight 0x7f010019\nint attr contentInsetStart 0x7f010016\nint attr controlBackground 0x7f0100c0\nint attr customNavigationLayout 0x7f01000f\nint attr defaultQueryHint 0x7f010058\nint attr dialogPreferredPadding 0x7f010092\nint attr dialogTheme 0x7f010091\nint attr displayOptions 0x7f010005\nint attr divider 0x7f01000b\nint attr dividerHorizontal 0x7f01009f\nint attr dividerPadding 0x7f010049\nint attr dividerVertical 0x7f01009e\nint attr drawableSize 0x7f010029\nint attr drawerArrowStyle 0x7f010000\nint attr dropDownListViewStyle 0x7f0100b0\nint attr dropdownListPreferredItemHeight 0x7f010095\nint attr editTextBackground 0x7f0100a6\nint attr editTextColor 0x7f0100a5\nint attr editTextStyle 0x7f0100ce\nint attr elevation 0x7f01001a\nint attr expandActivityOverflowButtonDrawable 0x7f01001e\nint attr fadeDuration 0x7f01002f\nint attr failureImage 0x7f010035\nint attr failureImageScaleType 0x7f010036\nint attr gapBetweenBars 0x7f01002a\nint attr goIcon 0x7f01005a\nint attr height 0x7f010001\nint attr hideOnContentScroll 0x7f010015\nint attr homeAsUpIndicator 0x7f010097\nint attr homeLayout 0x7f010010\nint attr icon 0x7f010009\nint attr iconifiedByDefault 0x7f010056\nint attr indeterminateProgressStyle 0x7f010012\nint attr initialActivityCount 0x7f01001d\nint attr isLightTheme 0x7f010002\nint attr itemPadding 0x7f010014\nint attr layout 0x7f010055\nint attr layoutManager 0x7f010051\nint attr listChoiceBackgroundIndicator 0x7f0100b7\nint attr listDividerAlertDialog 0x7f010093\nint attr listItemLayout 0x7f010023\nint attr listLayout 0x7f010020\nint attr listPopupWindowStyle 0x7f0100b1\nint attr listPreferredItemHeight 0x7f0100ab\nint attr listPreferredItemHeightLarge 0x7f0100ad\nint attr listPreferredItemHeightSmall 0x7f0100ac\nint attr listPreferredItemPaddingLeft 0x7f0100ae\nint attr listPreferredItemPaddingRight 0x7f0100af\nint attr logo 0x7f01000a\nint attr logoDescription 0x7f0100df\nint attr maxButtonHeight 0x7f0100da\nint attr measureWithLargestChild 0x7f010047\nint attr multiChoiceItemLayout 0x7f010021\nint attr navigationContentDescription 0x7f0100de\nint attr navigationIcon 0x7f0100dd\nint attr navigationMode 0x7f010004\nint attr overlapAnchor 0x7f01004f\nint attr overlayImage 0x7f01003c\nint attr paddingEnd 0x7f0100e3\nint attr paddingStart 0x7f0100e2\nint attr panelBackground 0x7f0100b4\nint attr panelMenuListTheme 0x7f0100b6\nint attr panelMenuListWidth 0x7f0100b5\nint attr placeholderImage 0x7f010031\nint attr placeholderImageScaleType 0x7f010032\nint attr popupMenuStyle 0x7f0100a3\nint attr popupTheme 0x7f01001b\nint attr popupWindowStyle 0x7f0100a4\nint attr preserveIconSpacing 0x7f01004e\nint attr pressedStateOverlayImage 0x7f01003d\nint attr progressBarAutoRotateInterval 0x7f010039\nint attr progressBarImage 0x7f010037\nint attr progressBarImageScaleType 0x7f010038\nint attr progressBarPadding 0x7f010013\nint attr progressBarStyle 0x7f010011\nint attr queryBackground 0x7f010060\nint attr queryHint 0x7f010057\nint attr radioButtonStyle 0x7f0100cf\nint attr ratingBarStyle 0x7f0100d0\nint attr retryImage 0x7f010033\nint attr retryImageScaleType 0x7f010034\nint attr reverseLayout 0x7f010053\nint attr roundAsCircle 0x7f01003e\nint attr roundBottomLeft 0x7f010043\nint attr roundBottomRight 0x7f010042\nint attr roundTopLeft 0x7f010040\nint attr roundTopRight 0x7f010041\nint attr roundWithOverlayColor 0x7f010044\nint attr roundedCornerRadius 0x7f01003f\nint attr roundingBorderColor 0x7f010046\nint attr roundingBorderWidth 0x7f010045\nint attr searchHintIcon 0x7f01005c\nint attr searchIcon 0x7f01005b\nint attr searchViewStyle 0x7f0100aa\nint attr selectableItemBackground 0x7f01009b\nint attr selectableItemBackgroundBorderless 0x7f01009c\nint attr showAsAction 0x7f01004a\nint attr showDividers 0x7f010048\nint attr showText 0x7f010068\nint attr singleChoiceItemLayout 0x7f010022\nint attr spanCount 0x7f010052\nint attr spinBars 0x7f010028\nint attr spinnerDropDownItemStyle 0x7f010096\nint attr spinnerStyle 0x7f0100d1\nint attr splitTrack 0x7f010067\nint attr stackFromEnd 0x7f010054\nint attr state_above_anchor 0x7f010050\nint attr submitBackground 0x7f010061\nint attr subtitle 0x7f010006\nint attr subtitleTextAppearance 0x7f0100d4\nint attr subtitleTextColor 0x7f0100e1\nint attr subtitleTextStyle 0x7f010008\nint attr suggestionRowLayout 0x7f01005f\nint attr switchMinWidth 0x7f010065\nint attr switchPadding 0x7f010066\nint attr switchStyle 0x7f0100d2\nint attr switchTextAppearance 0x7f010064\nint attr textAllCaps 0x7f010024\nint attr textAppearanceLargePopupMenu 0x7f01008f\nint attr textAppearanceListItem 0x7f0100b2\nint attr textAppearanceListItemSmall 0x7f0100b3\nint attr textAppearanceSearchResultSubtitle 0x7f0100a8\nint attr textAppearanceSearchResultTitle 0x7f0100a7\nint attr textAppearanceSmallPopupMenu 0x7f010090\nint attr textColorAlertDialogListItem 0x7f0100c5\nint attr textColorSearchUrl 0x7f0100a9\nint attr theme 0x7f0100e4\nint attr thickness 0x7f01002e\nint attr thumbTextPadding 0x7f010063\nint attr title 0x7f010003\nint attr titleMarginBottom 0x7f0100d9\nint attr titleMarginEnd 0x7f0100d7\nint attr titleMarginStart 0x7f0100d6\nint attr titleMarginTop 0x7f0100d8\nint attr titleMargins 0x7f0100d5\nint attr titleTextAppearance 0x7f0100d3\nint attr titleTextColor 0x7f0100e0\nint attr titleTextStyle 0x7f010007\nint attr toolbarNavigationButtonStyle 0x7f0100a2\nint attr toolbarStyle 0x7f0100a1\nint attr track 0x7f010062\nint attr viewAspectRatio 0x7f010030\nint attr voiceIcon 0x7f01005d\nint attr windowActionBar 0x7f010069\nint attr windowActionBarOverlay 0x7f01006b\nint attr windowActionModeOverlay 0x7f01006c\nint attr windowFixedHeightMajor 0x7f010070\nint attr windowFixedHeightMinor 0x7f01006e\nint attr windowFixedWidthMajor 0x7f01006d\nint attr windowFixedWidthMinor 0x7f01006f\nint attr windowMinWidthMajor 0x7f010071\nint attr windowMinWidthMinor 0x7f010072\nint attr windowNoTitle 0x7f01006a\nint bool abc_action_bar_embed_tabs 0x7f0a0002\nint bool abc_action_bar_embed_tabs_pre_jb 0x7f0a0000\nint bool abc_action_bar_expanded_action_views_exclusive 0x7f0a0003\nint bool abc_config_actionMenuItemAllCaps 0x7f0a0004\nint bool abc_config_allowActionMenuItemTextWithIcon 0x7f0a0001\nint bool abc_config_closeDialogWhenTouchOutside 0x7f0a0005\nint bool abc_config_showMenuShortcutsWhenKeyboardPresent 0x7f0a0006\nint color abc_background_cache_hint_selector_material_dark 0x7f0c003b\nint color abc_background_cache_hint_selector_material_light 0x7f0c003c\nint color abc_color_highlight_material 0x7f0c003d\nint color abc_input_method_navigation_guard 0x7f0c0000\nint color abc_primary_text_disable_only_material_dark 0x7f0c003e\nint color abc_primary_text_disable_only_material_light 0x7f0c003f\nint color abc_primary_text_material_dark 0x7f0c0040\nint color abc_primary_text_material_light 0x7f0c0041\nint color abc_search_url_text 0x7f0c0042\nint color abc_search_url_text_normal 0x7f0c0001\nint color abc_search_url_text_pressed 0x7f0c0002\nint color abc_search_url_text_selected 0x7f0c0003\nint color abc_secondary_text_material_dark 0x7f0c0043\nint color abc_secondary_text_material_light 0x7f0c0044\nint color accent_material_dark 0x7f0c0004\nint color accent_material_light 0x7f0c0005\nint color background_floating_material_dark 0x7f0c0006\nint color background_floating_material_light 0x7f0c0007\nint color background_material_dark 0x7f0c0008\nint color background_material_light 0x7f0c0009\nint color bright_foreground_disabled_material_dark 0x7f0c000a\nint color bright_foreground_disabled_material_light 0x7f0c000b\nint color bright_foreground_inverse_material_dark 0x7f0c000c\nint color bright_foreground_inverse_material_light 0x7f0c000d\nint color bright_foreground_material_dark 0x7f0c000e\nint color bright_foreground_material_light 0x7f0c000f\nint color button_material_dark 0x7f0c0010\nint color button_material_light 0x7f0c0011\nint color catalyst_redbox_background 0x7f0c0012\nint color dim_foreground_disabled_material_dark 0x7f0c0013\nint color dim_foreground_disabled_material_light 0x7f0c0014\nint color dim_foreground_material_dark 0x7f0c0015\nint color dim_foreground_material_light 0x7f0c0016\nint color foreground_material_dark 0x7f0c0017\nint color foreground_material_light 0x7f0c0018\nint color highlighted_text_material_dark 0x7f0c0019\nint color highlighted_text_material_light 0x7f0c001a\nint color hint_foreground_material_dark 0x7f0c001b\nint color hint_foreground_material_light 0x7f0c001c\nint color material_blue_grey_800 0x7f0c001d\nint color material_blue_grey_900 0x7f0c001e\nint color material_blue_grey_950 0x7f0c001f\nint color material_deep_teal_200 0x7f0c0020\nint color material_deep_teal_500 0x7f0c0021\nint color material_grey_100 0x7f0c0022\nint color material_grey_300 0x7f0c0023\nint color material_grey_50 0x7f0c0024\nint color material_grey_600 0x7f0c0025\nint color material_grey_800 0x7f0c0026\nint color material_grey_850 0x7f0c0027\nint color material_grey_900 0x7f0c0028\nint color primary_dark_material_dark 0x7f0c0029\nint color primary_dark_material_light 0x7f0c002a\nint color primary_material_dark 0x7f0c002b\nint color primary_material_light 0x7f0c002c\nint color primary_text_default_material_dark 0x7f0c002d\nint color primary_text_default_material_light 0x7f0c002e\nint color primary_text_disabled_material_dark 0x7f0c002f\nint color primary_text_disabled_material_light 0x7f0c0030\nint color ripple_material_dark 0x7f0c0031\nint color ripple_material_light 0x7f0c0032\nint color secondary_text_default_material_dark 0x7f0c0033\nint color secondary_text_default_material_light 0x7f0c0034\nint color secondary_text_disabled_material_dark 0x7f0c0035\nint color secondary_text_disabled_material_light 0x7f0c0036\nint color switch_thumb_disabled_material_dark 0x7f0c0037\nint color switch_thumb_disabled_material_light 0x7f0c0038\nint color switch_thumb_material_dark 0x7f0c0045\nint color switch_thumb_material_light 0x7f0c0046\nint color switch_thumb_normal_material_dark 0x7f0c0039\nint color switch_thumb_normal_material_light 0x7f0c003a\nint dimen abc_action_bar_content_inset_material 0x7f08000b\nint dimen abc_action_bar_default_height_material 0x7f080001\nint dimen abc_action_bar_default_padding_end_material 0x7f08000c\nint dimen abc_action_bar_default_padding_start_material 0x7f08000d\nint dimen abc_action_bar_icon_vertical_padding_material 0x7f08000f\nint dimen abc_action_bar_overflow_padding_end_material 0x7f080010\nint dimen abc_action_bar_overflow_padding_start_material 0x7f080011\nint dimen abc_action_bar_progress_bar_size 0x7f080002\nint dimen abc_action_bar_stacked_max_height 0x7f080012\nint dimen abc_action_bar_stacked_tab_max_width 0x7f080013\nint dimen abc_action_bar_subtitle_bottom_margin_material 0x7f080014\nint dimen abc_action_bar_subtitle_top_margin_material 0x7f080015\nint dimen abc_action_button_min_height_material 0x7f080016\nint dimen abc_action_button_min_width_material 0x7f080017\nint dimen abc_action_button_min_width_overflow_material 0x7f080018\nint dimen abc_alert_dialog_button_bar_height 0x7f080000\nint dimen abc_button_inset_horizontal_material 0x7f080019\nint dimen abc_button_inset_vertical_material 0x7f08001a\nint dimen abc_button_padding_horizontal_material 0x7f08001b\nint dimen abc_button_padding_vertical_material 0x7f08001c\nint dimen abc_config_prefDialogWidth 0x7f080005\nint dimen abc_control_corner_material 0x7f08001d\nint dimen abc_control_inset_material 0x7f08001e\nint dimen abc_control_padding_material 0x7f08001f\nint dimen abc_dialog_list_padding_vertical_material 0x7f080020\nint dimen abc_dialog_min_width_major 0x7f080021\nint dimen abc_dialog_min_width_minor 0x7f080022\nint dimen abc_dialog_padding_material 0x7f080023\nint dimen abc_dialog_padding_top_material 0x7f080024\nint dimen abc_disabled_alpha_material_dark 0x7f080025\nint dimen abc_disabled_alpha_material_light 0x7f080026\nint dimen abc_dropdownitem_icon_width 0x7f080027\nint dimen abc_dropdownitem_text_padding_left 0x7f080028\nint dimen abc_dropdownitem_text_padding_right 0x7f080029\nint dimen abc_edit_text_inset_bottom_material 0x7f08002a\nint dimen abc_edit_text_inset_horizontal_material 0x7f08002b\nint dimen abc_edit_text_inset_top_material 0x7f08002c\nint dimen abc_floating_window_z 0x7f08002d\nint dimen abc_list_item_padding_horizontal_material 0x7f08002e\nint dimen abc_panel_menu_list_width 0x7f08002f\nint dimen abc_search_view_preferred_width 0x7f080030\nint dimen abc_search_view_text_min_width 0x7f080006\nint dimen abc_switch_padding 0x7f08000e\nint dimen abc_text_size_body_1_material 0x7f080031\nint dimen abc_text_size_body_2_material 0x7f080032\nint dimen abc_text_size_button_material 0x7f080033\nint dimen abc_text_size_caption_material 0x7f080034\nint dimen abc_text_size_display_1_material 0x7f080035\nint dimen abc_text_size_display_2_material 0x7f080036\nint dimen abc_text_size_display_3_material 0x7f080037\nint dimen abc_text_size_display_4_material 0x7f080038\nint dimen abc_text_size_headline_material 0x7f080039\nint dimen abc_text_size_large_material 0x7f08003a\nint dimen abc_text_size_medium_material 0x7f08003b\nint dimen abc_text_size_menu_material 0x7f08003c\nint dimen abc_text_size_small_material 0x7f08003d\nint dimen abc_text_size_subhead_material 0x7f08003e\nint dimen abc_text_size_subtitle_material_toolbar 0x7f080003\nint dimen abc_text_size_title_material 0x7f08003f\nint dimen abc_text_size_title_material_toolbar 0x7f080004\nint dimen dialog_fixed_height_major 0x7f080007\nint dimen dialog_fixed_height_minor 0x7f080008\nint dimen dialog_fixed_width_major 0x7f080009\nint dimen dialog_fixed_width_minor 0x7f08000a\nint dimen disabled_alpha_material_dark 0x7f080040\nint dimen disabled_alpha_material_light 0x7f080041\nint dimen highlight_alpha_material_colored 0x7f080042\nint dimen highlight_alpha_material_dark 0x7f080043\nint dimen highlight_alpha_material_light 0x7f080044\nint dimen item_touch_helper_max_drag_scroll_per_frame 0x7f080045\nint dimen notification_large_icon_height 0x7f080046\nint dimen notification_large_icon_width 0x7f080047\nint dimen notification_subtext_size 0x7f080048\nint drawable abc_ab_share_pack_mtrl_alpha 0x7f020000\nint drawable abc_action_bar_item_background_material 0x7f020001\nint drawable abc_btn_borderless_material 0x7f020002\nint drawable abc_btn_check_material 0x7f020003\nint drawable abc_btn_check_to_on_mtrl_000 0x7f020004\nint drawable abc_btn_check_to_on_mtrl_015 0x7f020005\nint drawable abc_btn_colored_material 0x7f020006\nint drawable abc_btn_default_mtrl_shape 0x7f020007\nint drawable abc_btn_radio_material 0x7f020008\nint drawable abc_btn_radio_to_on_mtrl_000 0x7f020009\nint drawable abc_btn_radio_to_on_mtrl_015 0x7f02000a\nint drawable abc_btn_rating_star_off_mtrl_alpha 0x7f02000b\nint drawable abc_btn_rating_star_on_mtrl_alpha 0x7f02000c\nint drawable abc_btn_switch_to_on_mtrl_00001 0x7f02000d\nint drawable abc_btn_switch_to_on_mtrl_00012 0x7f02000e\nint drawable abc_cab_background_internal_bg 0x7f02000f\nint drawable abc_cab_background_top_material 0x7f020010\nint drawable abc_cab_background_top_mtrl_alpha 0x7f020011\nint drawable abc_control_background_material 0x7f020012\nint drawable abc_dialog_material_background_dark 0x7f020013\nint drawable abc_dialog_material_background_light 0x7f020014\nint drawable abc_edit_text_material 0x7f020015\nint drawable abc_ic_ab_back_mtrl_am_alpha 0x7f020016\nint drawable abc_ic_clear_mtrl_alpha 0x7f020017\nint drawable abc_ic_commit_search_api_mtrl_alpha 0x7f020018\nint drawable abc_ic_go_search_api_mtrl_alpha 0x7f020019\nint drawable abc_ic_menu_copy_mtrl_am_alpha 0x7f02001a\nint drawable abc_ic_menu_cut_mtrl_alpha 0x7f02001b\nint drawable abc_ic_menu_moreoverflow_mtrl_alpha 0x7f02001c\nint drawable abc_ic_menu_paste_mtrl_am_alpha 0x7f02001d\nint drawable abc_ic_menu_selectall_mtrl_alpha 0x7f02001e\nint drawable abc_ic_menu_share_mtrl_alpha 0x7f02001f\nint drawable abc_ic_search_api_mtrl_alpha 0x7f020020\nint drawable abc_ic_voice_search_api_mtrl_alpha 0x7f020021\nint drawable abc_item_background_holo_dark 0x7f020022\nint drawable abc_item_background_holo_light 0x7f020023\nint drawable abc_list_divider_mtrl_alpha 0x7f020024\nint drawable abc_list_focused_holo 0x7f020025\nint drawable abc_list_longpressed_holo 0x7f020026\nint drawable abc_list_pressed_holo_dark 0x7f020027\nint drawable abc_list_pressed_holo_light 0x7f020028\nint drawable abc_list_selector_background_transition_holo_dark 0x7f020029\nint drawable abc_list_selector_background_transition_holo_light 0x7f02002a\nint drawable abc_list_selector_disabled_holo_dark 0x7f02002b\nint drawable abc_list_selector_disabled_holo_light 0x7f02002c\nint drawable abc_list_selector_holo_dark 0x7f02002d\nint drawable abc_list_selector_holo_light 0x7f02002e\nint drawable abc_menu_hardkey_panel_mtrl_mult 0x7f02002f\nint drawable abc_popup_background_mtrl_mult 0x7f020030\nint drawable abc_ratingbar_full_material 0x7f020031\nint drawable abc_spinner_mtrl_am_alpha 0x7f020032\nint drawable abc_spinner_textfield_background_material 0x7f020033\nint drawable abc_switch_thumb_material 0x7f020034\nint drawable abc_switch_track_mtrl_alpha 0x7f020035\nint drawable abc_tab_indicator_material 0x7f020036\nint drawable abc_tab_indicator_mtrl_alpha 0x7f020037\nint drawable abc_text_cursor_material 0x7f020038\nint drawable abc_textfield_activated_mtrl_alpha 0x7f020039\nint drawable abc_textfield_default_mtrl_alpha 0x7f02003a\nint drawable abc_textfield_search_activated_mtrl_alpha 0x7f02003b\nint drawable abc_textfield_search_default_mtrl_alpha 0x7f02003c\nint drawable abc_textfield_search_material 0x7f02003d\nint drawable notification_template_icon_bg 0x7f02003e\nint id action0 0x7f0d0057\nint id action_bar 0x7f0d0047\nint id action_bar_activity_content 0x7f0d0000\nint id action_bar_container 0x7f0d0046\nint id action_bar_root 0x7f0d0042\nint id action_bar_spinner 0x7f0d0001\nint id action_bar_subtitle 0x7f0d002b\nint id action_bar_title 0x7f0d002a\nint id action_context_bar 0x7f0d0048\nint id action_divider 0x7f0d005b\nint id action_menu_divider 0x7f0d0002\nint id action_menu_presenter 0x7f0d0003\nint id action_mode_bar 0x7f0d0044\nint id action_mode_bar_stub 0x7f0d0043\nint id action_mode_close_button 0x7f0d002c\nint id activity_chooser_view_content 0x7f0d002d\nint id alertTitle 0x7f0d0037\nint id always 0x7f0d0024\nint id beginning 0x7f0d0021\nint id buttonPanel 0x7f0d003d\nint id cancel_action 0x7f0d0058\nint id catalyst_redbox_title 0x7f0d0066\nint id center 0x7f0d0019\nint id centerCrop 0x7f0d001a\nint id centerInside 0x7f0d001b\nint id checkbox 0x7f0d003f\nint id chronometer 0x7f0d005e\nint id collapseActionView 0x7f0d0025\nint id contentPanel 0x7f0d0038\nint id custom 0x7f0d003c\nint id customPanel 0x7f0d003b\nint id decor_content_parent 0x7f0d0045\nint id default_activity_button 0x7f0d0030\nint id disableHome 0x7f0d000d\nint id edit_query 0x7f0d0049\nint id end 0x7f0d0022\nint id end_padder 0x7f0d0063\nint id expand_activities_button 0x7f0d002e\nint id expanded_menu 0x7f0d003e\nint id fitCenter 0x7f0d001c\nint id fitEnd 0x7f0d001d\nint id fitStart 0x7f0d001e\nint id fitXY 0x7f0d001f\nint id focusCrop 0x7f0d0020\nint id fps_text 0x7f0d0056\nint id home 0x7f0d0004\nint id homeAsUp 0x7f0d000e\nint id icon 0x7f0d0032\nint id ifRoom 0x7f0d0026\nint id image 0x7f0d002f\nint id info 0x7f0d0062\nint id item_touch_helper_previous_elevation 0x7f0d0005\nint id line1 0x7f0d005c\nint id line3 0x7f0d0060\nint id listMode 0x7f0d000a\nint id list_item 0x7f0d0031\nint id media_actions 0x7f0d005a\nint id middle 0x7f0d0023\nint id multiply 0x7f0d0014\nint id never 0x7f0d0027\nint id none 0x7f0d000f\nint id normal 0x7f0d000b\nint id parentPanel 0x7f0d0034\nint id progress_circular 0x7f0d0006\nint id progress_horizontal 0x7f0d0007\nint id radio 0x7f0d0041\nint id rn_frame_file 0x7f0d0065\nint id rn_frame_method 0x7f0d0064\nint id rn_redbox_reloadjs 0x7f0d0068\nint id rn_redbox_stack 0x7f0d0067\nint id screen 0x7f0d0015\nint id scrollView 0x7f0d0039\nint id search_badge 0x7f0d004b\nint id search_bar 0x7f0d004a\nint id search_button 0x7f0d004c\nint id search_close_btn 0x7f0d0051\nint id search_edit_frame 0x7f0d004d\nint id search_go_btn 0x7f0d0053\nint id search_mag_icon 0x7f0d004e\nint id search_plate 0x7f0d004f\nint id search_src_text 0x7f0d0050\nint id search_voice_btn 0x7f0d0054\nint id select_dialog_listview 0x7f0d0055\nint id shortcut 0x7f0d0040\nint id showCustom 0x7f0d0010\nint id showHome 0x7f0d0011\nint id showTitle 0x7f0d0012\nint id split_action_bar 0x7f0d0008\nint id src_atop 0x7f0d0016\nint id src_in 0x7f0d0017\nint id src_over 0x7f0d0018\nint id status_bar_latest_event_content 0x7f0d0059\nint id submit_area 0x7f0d0052\nint id tabMode 0x7f0d000c\nint id text 0x7f0d0061\nint id text2 0x7f0d005f\nint id textSpacerNoButtons 0x7f0d003a\nint id time 0x7f0d005d\nint id title 0x7f0d0033\nint id title_template 0x7f0d0036\nint id topPanel 0x7f0d0035\nint id up 0x7f0d0009\nint id useLogo 0x7f0d0013\nint id withText 0x7f0d0028\nint id wrap_content 0x7f0d0029\nint integer abc_config_activityDefaultDur 0x7f0b0001\nint integer abc_config_activityShortDur 0x7f0b0002\nint integer abc_max_action_buttons 0x7f0b0000\nint integer cancel_button_image_alpha 0x7f0b0003\nint integer status_bar_notification_info_maxnum 0x7f0b0004\nint layout abc_action_bar_title_item 0x7f040000\nint layout abc_action_bar_up_container 0x7f040001\nint layout abc_action_bar_view_list_nav_layout 0x7f040002\nint layout abc_action_menu_item_layout 0x7f040003\nint layout abc_action_menu_layout 0x7f040004\nint layout abc_action_mode_bar 0x7f040005\nint layout abc_action_mode_close_item_material 0x7f040006\nint layout abc_activity_chooser_view 0x7f040007\nint layout abc_activity_chooser_view_list_item 0x7f040008\nint layout abc_alert_dialog_material 0x7f040009\nint layout abc_dialog_title_material 0x7f04000a\nint layout abc_expanded_menu_layout 0x7f04000b\nint layout abc_list_menu_item_checkbox 0x7f04000c\nint layout abc_list_menu_item_icon 0x7f04000d\nint layout abc_list_menu_item_layout 0x7f04000e\nint layout abc_list_menu_item_radio 0x7f04000f\nint layout abc_popup_menu_item_layout 0x7f040010\nint layout abc_screen_content_include 0x7f040011\nint layout abc_screen_simple 0x7f040012\nint layout abc_screen_simple_overlay_action_mode 0x7f040013\nint layout abc_screen_toolbar 0x7f040014\nint layout abc_search_dropdown_item_icons_2line 0x7f040015\nint layout abc_search_view 0x7f040016\nint layout abc_select_dialog_material 0x7f040017\nint layout fps_view 0x7f040018\nint layout notification_media_action 0x7f040019\nint layout notification_media_cancel_action 0x7f04001a\nint layout notification_template_big_media 0x7f04001b\nint layout notification_template_big_media_narrow 0x7f04001c\nint layout notification_template_lines 0x7f04001d\nint layout notification_template_media 0x7f04001e\nint layout notification_template_part_chronometer 0x7f04001f\nint layout notification_template_part_time 0x7f040020\nint layout redbox_item_frame 0x7f040021\nint layout redbox_item_title 0x7f040022\nint layout redbox_view 0x7f040023\nint layout select_dialog_item_material 0x7f040024\nint layout select_dialog_multichoice_material 0x7f040025\nint layout select_dialog_singlechoice_material 0x7f040026\nint layout support_simple_spinner_dropdown_item 0x7f040027\nint mipmap ic_launcher 0x7f030000\nint string abc_action_bar_home_description 0x7f070000\nint string abc_action_bar_home_description_format 0x7f070001\nint string abc_action_bar_home_subtitle_description_format 0x7f070002\nint string abc_action_bar_up_description 0x7f070003\nint string abc_action_menu_overflow_description 0x7f070004\nint string abc_action_mode_done 0x7f070005\nint string abc_activity_chooser_view_see_all 0x7f070006\nint string abc_activitychooserview_choose_application 0x7f070007\nint string abc_search_hint 0x7f070008\nint string abc_searchview_description_clear 0x7f070009\nint string abc_searchview_description_query 0x7f07000a\nint string abc_searchview_description_search 0x7f07000b\nint string abc_searchview_description_submit 0x7f07000c\nint string abc_searchview_description_voice 0x7f07000d\nint string abc_shareactionprovider_share_with 0x7f07000e\nint string abc_shareactionprovider_share_with_application 0x7f07000f\nint string abc_toolbar_collapse_description 0x7f070010\nint string app_name 0x7f07001a\nint string catalyst_debugjs 0x7f070012\nint string catalyst_debugjs_off 0x7f07001b\nint string catalyst_element_inspector 0x7f070013\nint string catalyst_element_inspector_off 0x7f07001c\nint string catalyst_hot_module_replacement 0x7f07001d\nint string catalyst_hot_module_replacement_off 0x7f07001e\nint string catalyst_jsload_error 0x7f070014\nint string catalyst_jsload_message 0x7f070015\nint string catalyst_jsload_title 0x7f070016\nint string catalyst_live_reload 0x7f07001f\nint string catalyst_live_reload_off 0x7f070020\nint string catalyst_perf_monitor 0x7f070021\nint string catalyst_perf_monitor_off 0x7f070022\nint string catalyst_reloadjs 0x7f070017\nint string catalyst_remotedbg_error 0x7f070023\nint string catalyst_remotedbg_message 0x7f070024\nint string catalyst_settings 0x7f070018\nint string catalyst_settings_title 0x7f070019\nint string catalyst_start_profile 0x7f070025\nint string catalyst_stop_profile 0x7f070026\nint string status_bar_notification_info_overflow 0x7f070011\nint style AlertDialog_AppCompat 0x7f09007a\nint style AlertDialog_AppCompat_Light 0x7f09007b\nint style Animation_AppCompat_Dialog 0x7f09007c\nint style Animation_AppCompat_DropDownUp 0x7f09007d\nint style Animation_Catalyst_RedBox 0x7f09007e\nint style AppTheme 0x7f09007f\nint style Base_AlertDialog_AppCompat 0x7f090080\nint style Base_AlertDialog_AppCompat_Light 0x7f090081\nint style Base_Animation_AppCompat_Dialog 0x7f090082\nint style Base_Animation_AppCompat_DropDownUp 0x7f090083\nint style Base_DialogWindowTitle_AppCompat 0x7f090084\nint style Base_DialogWindowTitleBackground_AppCompat 0x7f090085\nint style Base_TextAppearance_AppCompat 0x7f09002d\nint style Base_TextAppearance_AppCompat_Body1 0x7f09002e\nint style Base_TextAppearance_AppCompat_Body2 0x7f09002f\nint style Base_TextAppearance_AppCompat_Button 0x7f090018\nint style Base_TextAppearance_AppCompat_Caption 0x7f090030\nint style Base_TextAppearance_AppCompat_Display1 0x7f090031\nint style Base_TextAppearance_AppCompat_Display2 0x7f090032\nint style Base_TextAppearance_AppCompat_Display3 0x7f090033\nint style Base_TextAppearance_AppCompat_Display4 0x7f090034\nint style Base_TextAppearance_AppCompat_Headline 0x7f090035\nint style Base_TextAppearance_AppCompat_Inverse 0x7f090003\nint style Base_TextAppearance_AppCompat_Large 0x7f090036\nint style Base_TextAppearance_AppCompat_Large_Inverse 0x7f090004\nint style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f090037\nint style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f090038\nint style Base_TextAppearance_AppCompat_Medium 0x7f090039\nint style Base_TextAppearance_AppCompat_Medium_Inverse 0x7f090005\nint style Base_TextAppearance_AppCompat_Menu 0x7f09003a\nint style Base_TextAppearance_AppCompat_SearchResult 0x7f090086\nint style Base_TextAppearance_AppCompat_SearchResult_Subtitle 0x7f09003b\nint style Base_TextAppearance_AppCompat_SearchResult_Title 0x7f09003c\nint style Base_TextAppearance_AppCompat_Small 0x7f09003d\nint style Base_TextAppearance_AppCompat_Small_Inverse 0x7f090006\nint style Base_TextAppearance_AppCompat_Subhead 0x7f09003e\nint style Base_TextAppearance_AppCompat_Subhead_Inverse 0x7f090007\nint style Base_TextAppearance_AppCompat_Title 0x7f09003f\nint style Base_TextAppearance_AppCompat_Title_Inverse 0x7f090008\nint style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f090040\nint style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f090041\nint style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f090042\nint style Base_TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f090043\nint style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f090044\nint style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f090045\nint style Base_TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f090046\nint style Base_TextAppearance_AppCompat_Widget_Button 0x7f090047\nint style Base_TextAppearance_AppCompat_Widget_Button_Inverse 0x7f090076\nint style Base_TextAppearance_AppCompat_Widget_DropDownItem 0x7f090087\nint style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f090048\nint style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f090049\nint style Base_TextAppearance_AppCompat_Widget_Switch 0x7f09004a\nint style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f09004b\nint style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f090088\nint style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f09004c\nint style Base_TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f09004d\nint style Base_Theme_AppCompat 0x7f09004e\nint style Base_Theme_AppCompat_CompactMenu 0x7f090089\nint style Base_Theme_AppCompat_Dialog 0x7f090009\nint style Base_Theme_AppCompat_Dialog_Alert 0x7f09008a\nint style Base_Theme_AppCompat_Dialog_FixedSize 0x7f09008b\nint style Base_Theme_AppCompat_Dialog_MinWidth 0x7f09008c\nint style Base_Theme_AppCompat_DialogWhenLarge 0x7f090001\nint style Base_Theme_AppCompat_Light 0x7f09004f\nint style Base_Theme_AppCompat_Light_DarkActionBar 0x7f09008d\nint style Base_Theme_AppCompat_Light_Dialog 0x7f09000a\nint style Base_Theme_AppCompat_Light_Dialog_Alert 0x7f09008e\nint style Base_Theme_AppCompat_Light_Dialog_FixedSize 0x7f09008f\nint style Base_Theme_AppCompat_Light_Dialog_MinWidth 0x7f090090\nint style Base_Theme_AppCompat_Light_DialogWhenLarge 0x7f090002\nint style Base_ThemeOverlay_AppCompat 0x7f090091\nint style Base_ThemeOverlay_AppCompat_ActionBar 0x7f090092\nint style Base_ThemeOverlay_AppCompat_Dark 0x7f090093\nint style Base_ThemeOverlay_AppCompat_Dark_ActionBar 0x7f090094\nint style Base_ThemeOverlay_AppCompat_Light 0x7f090095\nint style Base_V11_Theme_AppCompat_Dialog 0x7f09000b\nint style Base_V11_Theme_AppCompat_Light_Dialog 0x7f09000c\nint style Base_V12_Widget_AppCompat_AutoCompleteTextView 0x7f090014\nint style Base_V12_Widget_AppCompat_EditText 0x7f090015\nint style Base_V21_Theme_AppCompat 0x7f090050\nint style Base_V21_Theme_AppCompat_Dialog 0x7f090051\nint style Base_V21_Theme_AppCompat_Light 0x7f090052\nint style Base_V21_Theme_AppCompat_Light_Dialog 0x7f090053\nint style Base_V22_Theme_AppCompat 0x7f090074\nint style Base_V22_Theme_AppCompat_Light 0x7f090075\nint style Base_V23_Theme_AppCompat 0x7f090077\nint style Base_V23_Theme_AppCompat_Light 0x7f090078\nint style Base_V7_Theme_AppCompat 0x7f090096\nint style Base_V7_Theme_AppCompat_Dialog 0x7f090097\nint style Base_V7_Theme_AppCompat_Light 0x7f090098\nint style Base_V7_Theme_AppCompat_Light_Dialog 0x7f090099\nint style Base_V7_Widget_AppCompat_AutoCompleteTextView 0x7f09009a\nint style Base_V7_Widget_AppCompat_EditText 0x7f09009b\nint style Base_Widget_AppCompat_ActionBar 0x7f09009c\nint style Base_Widget_AppCompat_ActionBar_Solid 0x7f09009d\nint style Base_Widget_AppCompat_ActionBar_TabBar 0x7f09009e\nint style Base_Widget_AppCompat_ActionBar_TabText 0x7f090054\nint style Base_Widget_AppCompat_ActionBar_TabView 0x7f090055\nint style Base_Widget_AppCompat_ActionButton 0x7f090056\nint style Base_Widget_AppCompat_ActionButton_CloseMode 0x7f090057\nint style Base_Widget_AppCompat_ActionButton_Overflow 0x7f090058\nint style Base_Widget_AppCompat_ActionMode 0x7f09009f\nint style Base_Widget_AppCompat_ActivityChooserView 0x7f0900a0\nint style Base_Widget_AppCompat_AutoCompleteTextView 0x7f090016\nint style Base_Widget_AppCompat_Button 0x7f090059\nint style Base_Widget_AppCompat_Button_Borderless 0x7f09005a\nint style Base_Widget_AppCompat_Button_Borderless_Colored 0x7f09005b\nint style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f0900a1\nint style Base_Widget_AppCompat_Button_Colored 0x7f090079\nint style Base_Widget_AppCompat_Button_Small 0x7f09005c\nint style Base_Widget_AppCompat_ButtonBar 0x7f09005d\nint style Base_Widget_AppCompat_ButtonBar_AlertDialog 0x7f0900a2\nint style Base_Widget_AppCompat_CompoundButton_CheckBox 0x7f09005e\nint style Base_Widget_AppCompat_CompoundButton_RadioButton 0x7f09005f\nint style Base_Widget_AppCompat_CompoundButton_Switch 0x7f0900a3\nint style Base_Widget_AppCompat_DrawerArrowToggle 0x7f090000\nint style Base_Widget_AppCompat_DrawerArrowToggle_Common 0x7f0900a4\nint style Base_Widget_AppCompat_DropDownItem_Spinner 0x7f090060\nint style Base_Widget_AppCompat_EditText 0x7f090017\nint style Base_Widget_AppCompat_Light_ActionBar 0x7f0900a5\nint style Base_Widget_AppCompat_Light_ActionBar_Solid 0x7f0900a6\nint style Base_Widget_AppCompat_Light_ActionBar_TabBar 0x7f0900a7\nint style Base_Widget_AppCompat_Light_ActionBar_TabText 0x7f090061\nint style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f090062\nint style Base_Widget_AppCompat_Light_ActionBar_TabView 0x7f090063\nint style Base_Widget_AppCompat_Light_PopupMenu 0x7f090064\nint style Base_Widget_AppCompat_Light_PopupMenu_Overflow 0x7f090065\nint style Base_Widget_AppCompat_ListPopupWindow 0x7f090066\nint style Base_Widget_AppCompat_ListView 0x7f090067\nint style Base_Widget_AppCompat_ListView_DropDown 0x7f090068\nint style Base_Widget_AppCompat_ListView_Menu 0x7f090069\nint style Base_Widget_AppCompat_PopupMenu 0x7f09006a\nint style Base_Widget_AppCompat_PopupMenu_Overflow 0x7f09006b\nint style Base_Widget_AppCompat_PopupWindow 0x7f0900a8\nint style Base_Widget_AppCompat_ProgressBar 0x7f09000d\nint style Base_Widget_AppCompat_ProgressBar_Horizontal 0x7f09000e\nint style Base_Widget_AppCompat_RatingBar 0x7f09006c\nint style Base_Widget_AppCompat_SearchView 0x7f0900a9\nint style Base_Widget_AppCompat_SearchView_ActionBar 0x7f0900aa\nint style Base_Widget_AppCompat_Spinner 0x7f09006d\nint style Base_Widget_AppCompat_Spinner_Underlined 0x7f09006e\nint style Base_Widget_AppCompat_TextView_SpinnerItem 0x7f09006f\nint style Base_Widget_AppCompat_Toolbar 0x7f0900ab\nint style Base_Widget_AppCompat_Toolbar_Button_Navigation 0x7f090070\nint style DialogAnimation 0x7f0900ac\nint style Platform_AppCompat 0x7f09000f\nint style Platform_AppCompat_Light 0x7f090010\nint style Platform_ThemeOverlay_AppCompat 0x7f090071\nint style Platform_ThemeOverlay_AppCompat_Dark 0x7f090072\nint style Platform_ThemeOverlay_AppCompat_Light 0x7f090073\nint style Platform_V11_AppCompat 0x7f090011\nint style Platform_V11_AppCompat_Light 0x7f090012\nint style Platform_V14_AppCompat 0x7f090019\nint style Platform_V14_AppCompat_Light 0x7f09001a\nint style Platform_Widget_AppCompat_Spinner 0x7f090013\nint style RtlOverlay_DialogWindowTitle_AppCompat 0x7f090020\nint style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem 0x7f090021\nint style RtlOverlay_Widget_AppCompat_ActionButton_Overflow 0x7f090022\nint style RtlOverlay_Widget_AppCompat_DialogTitle_Icon 0x7f090023\nint style RtlOverlay_Widget_AppCompat_PopupMenuItem 0x7f090024\nint style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup 0x7f090025\nint style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text 0x7f090026\nint style RtlOverlay_Widget_AppCompat_Search_DropDown 0x7f090027\nint style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 0x7f090028\nint style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 0x7f090029\nint style RtlOverlay_Widget_AppCompat_Search_DropDown_Query 0x7f09002a\nint style RtlOverlay_Widget_AppCompat_Search_DropDown_Text 0x7f09002b\nint style RtlOverlay_Widget_AppCompat_SearchView_MagIcon 0x7f09002c\nint style TextAppearance_AppCompat 0x7f0900ad\nint style TextAppearance_AppCompat_Body1 0x7f0900ae\nint style TextAppearance_AppCompat_Body2 0x7f0900af\nint style TextAppearance_AppCompat_Button 0x7f0900b0\nint style TextAppearance_AppCompat_Caption 0x7f0900b1\nint style TextAppearance_AppCompat_Display1 0x7f0900b2\nint style TextAppearance_AppCompat_Display2 0x7f0900b3\nint style TextAppearance_AppCompat_Display3 0x7f0900b4\nint style TextAppearance_AppCompat_Display4 0x7f0900b5\nint style TextAppearance_AppCompat_Headline 0x7f0900b6\nint style TextAppearance_AppCompat_Inverse 0x7f0900b7\nint style TextAppearance_AppCompat_Large 0x7f0900b8\nint style TextAppearance_AppCompat_Large_Inverse 0x7f0900b9\nint style TextAppearance_AppCompat_Light_SearchResult_Subtitle 0x7f0900ba\nint style TextAppearance_AppCompat_Light_SearchResult_Title 0x7f0900bb\nint style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f0900bc\nint style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f0900bd\nint style TextAppearance_AppCompat_Medium 0x7f0900be\nint style TextAppearance_AppCompat_Medium_Inverse 0x7f0900bf\nint style TextAppearance_AppCompat_Menu 0x7f0900c0\nint style TextAppearance_AppCompat_SearchResult_Subtitle 0x7f0900c1\nint style TextAppearance_AppCompat_SearchResult_Title 0x7f0900c2\nint style TextAppearance_AppCompat_Small 0x7f0900c3\nint style TextAppearance_AppCompat_Small_Inverse 0x7f0900c4\nint style TextAppearance_AppCompat_Subhead 0x7f0900c5\nint style TextAppearance_AppCompat_Subhead_Inverse 0x7f0900c6\nint style TextAppearance_AppCompat_Title 0x7f0900c7\nint style TextAppearance_AppCompat_Title_Inverse 0x7f0900c8\nint style TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f0900c9\nint style TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f0900ca\nint style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f0900cb\nint style TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f0900cc\nint style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f0900cd\nint style TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f0900ce\nint style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse 0x7f0900cf\nint style TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f0900d0\nint style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse 0x7f0900d1\nint style TextAppearance_AppCompat_Widget_Button 0x7f0900d2\nint style TextAppearance_AppCompat_Widget_Button_Inverse 0x7f0900d3\nint style TextAppearance_AppCompat_Widget_DropDownItem 0x7f0900d4\nint style TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f0900d5\nint style TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f0900d6\nint style TextAppearance_AppCompat_Widget_Switch 0x7f0900d7\nint style TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f0900d8\nint style TextAppearance_StatusBar_EventContent 0x7f09001b\nint style TextAppearance_StatusBar_EventContent_Info 0x7f09001c\nint style TextAppearance_StatusBar_EventContent_Line2 0x7f09001d\nint style TextAppearance_StatusBar_EventContent_Time 0x7f09001e\nint style TextAppearance_StatusBar_EventContent_Title 0x7f09001f\nint style TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f0900d9\nint style TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f0900da\nint style TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f0900db\nint style Theme 0x7f0900dc\nint style Theme_AppCompat 0x7f0900dd\nint style Theme_AppCompat_CompactMenu 0x7f0900de\nint style Theme_AppCompat_Dialog 0x7f0900df\nint style Theme_AppCompat_Dialog_Alert 0x7f0900e0\nint style Theme_AppCompat_Dialog_MinWidth 0x7f0900e1\nint style Theme_AppCompat_DialogWhenLarge 0x7f0900e2\nint style Theme_AppCompat_Light 0x7f0900e3\nint style Theme_AppCompat_Light_DarkActionBar 0x7f0900e4\nint style Theme_AppCompat_Light_Dialog 0x7f0900e5\nint style Theme_AppCompat_Light_Dialog_Alert 0x7f0900e6\nint style Theme_AppCompat_Light_Dialog_MinWidth 0x7f0900e7\nint style Theme_AppCompat_Light_DialogWhenLarge 0x7f0900e8\nint style Theme_AppCompat_Light_NoActionBar 0x7f0900e9\nint style Theme_AppCompat_NoActionBar 0x7f0900ea\nint style Theme_Catalyst 0x7f0900eb\nint style Theme_Catalyst_RedBox 0x7f0900ec\nint style Theme_FullScreenDialog 0x7f0900ed\nint style Theme_FullScreenDialogAnimated 0x7f0900ee\nint style Theme_ReactNative_AppCompat_Light 0x7f0900ef\nint style Theme_ReactNative_AppCompat_Light_NoActionBar_FullScreen 0x7f0900f0\nint style ThemeOverlay_AppCompat 0x7f0900f1\nint style ThemeOverlay_AppCompat_ActionBar 0x7f0900f2\nint style ThemeOverlay_AppCompat_Dark 0x7f0900f3\nint style ThemeOverlay_AppCompat_Dark_ActionBar 0x7f0900f4\nint style ThemeOverlay_AppCompat_Light 0x7f0900f5\nint style Widget_AppCompat_ActionBar 0x7f0900f6\nint style Widget_AppCompat_ActionBar_Solid 0x7f0900f7\nint style Widget_AppCompat_ActionBar_TabBar 0x7f0900f8\nint style Widget_AppCompat_ActionBar_TabText 0x7f0900f9\nint style Widget_AppCompat_ActionBar_TabView 0x7f0900fa\nint style Widget_AppCompat_ActionButton 0x7f0900fb\nint style Widget_AppCompat_ActionButton_CloseMode 0x7f0900fc\nint style Widget_AppCompat_ActionButton_Overflow 0x7f0900fd\nint style Widget_AppCompat_ActionMode 0x7f0900fe\nint style Widget_AppCompat_ActivityChooserView 0x7f0900ff\nint style Widget_AppCompat_AutoCompleteTextView 0x7f090100\nint style Widget_AppCompat_Button 0x7f090101\nint style Widget_AppCompat_Button_Borderless 0x7f090102\nint style Widget_AppCompat_Button_Borderless_Colored 0x7f090103\nint style Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f090104\nint style Widget_AppCompat_Button_Colored 0x7f090105\nint style Widget_AppCompat_Button_Small 0x7f090106\nint style Widget_AppCompat_ButtonBar 0x7f090107\nint style Widget_AppCompat_ButtonBar_AlertDialog 0x7f090108\nint style Widget_AppCompat_CompoundButton_CheckBox 0x7f090109\nint style Widget_AppCompat_CompoundButton_RadioButton 0x7f09010a\nint style Widget_AppCompat_CompoundButton_Switch 0x7f09010b\nint style Widget_AppCompat_DrawerArrowToggle 0x7f09010c\nint style Widget_AppCompat_DropDownItem_Spinner 0x7f09010d\nint style Widget_AppCompat_EditText 0x7f09010e\nint style Widget_AppCompat_Light_ActionBar 0x7f09010f\nint style Widget_AppCompat_Light_ActionBar_Solid 0x7f090110\nint style Widget_AppCompat_Light_ActionBar_Solid_Inverse 0x7f090111\nint style Widget_AppCompat_Light_ActionBar_TabBar 0x7f090112\nint style Widget_AppCompat_Light_ActionBar_TabBar_Inverse 0x7f090113\nint style Widget_AppCompat_Light_ActionBar_TabText 0x7f090114\nint style Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f090115\nint style Widget_AppCompat_Light_ActionBar_TabView 0x7f090116\nint style Widget_AppCompat_Light_ActionBar_TabView_Inverse 0x7f090117\nint style Widget_AppCompat_Light_ActionButton 0x7f090118\nint style Widget_AppCompat_Light_ActionButton_CloseMode 0x7f090119\nint style Widget_AppCompat_Light_ActionButton_Overflow 0x7f09011a\nint style Widget_AppCompat_Light_ActionMode_Inverse 0x7f09011b\nint style Widget_AppCompat_Light_ActivityChooserView 0x7f09011c\nint style Widget_AppCompat_Light_AutoCompleteTextView 0x7f09011d\nint style Widget_AppCompat_Light_DropDownItem_Spinner 0x7f09011e\nint style Widget_AppCompat_Light_ListPopupWindow 0x7f09011f\nint style Widget_AppCompat_Light_ListView_DropDown 0x7f090120\nint style Widget_AppCompat_Light_PopupMenu 0x7f090121\nint style Widget_AppCompat_Light_PopupMenu_Overflow 0x7f090122\nint style Widget_AppCompat_Light_SearchView 0x7f090123\nint style Widget_AppCompat_Light_Spinner_DropDown_ActionBar 0x7f090124\nint style Widget_AppCompat_ListPopupWindow 0x7f090125\nint style Widget_AppCompat_ListView 0x7f090126\nint style Widget_AppCompat_ListView_DropDown 0x7f090127\nint style Widget_AppCompat_ListView_Menu 0x7f090128\nint style Widget_AppCompat_PopupMenu 0x7f090129\nint style Widget_AppCompat_PopupMenu_Overflow 0x7f09012a\nint style Widget_AppCompat_PopupWindow 0x7f09012b\nint style Widget_AppCompat_ProgressBar 0x7f09012c\nint style Widget_AppCompat_ProgressBar_Horizontal 0x7f09012d\nint style Widget_AppCompat_RatingBar 0x7f09012e\nint style Widget_AppCompat_SearchView 0x7f09012f\nint style Widget_AppCompat_SearchView_ActionBar 0x7f090130\nint style Widget_AppCompat_Spinner 0x7f090131\nint style Widget_AppCompat_Spinner_DropDown 0x7f090132\nint style Widget_AppCompat_Spinner_DropDown_ActionBar 0x7f090133\nint style Widget_AppCompat_Spinner_Underlined 0x7f090134\nint style Widget_AppCompat_TextView_SpinnerItem 0x7f090135\nint style Widget_AppCompat_Toolbar 0x7f090136\nint style Widget_AppCompat_Toolbar_Button_Navigation 0x7f090137\nint[] styleable ActionBar { 0x7f010001, 0x7f010003, 0x7f010004, 0x7f010005, 0x7f010006, 0x7f010007, 0x7f010008, 0x7f010009, 0x7f01000a, 0x7f01000b, 0x7f01000c, 0x7f01000d, 0x7f01000e, 0x7f01000f, 0x7f010010, 0x7f010011, 0x7f010012, 0x7f010013, 0x7f010014, 0x7f010015, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f010097 }\nint styleable ActionBar_background 10\nint styleable ActionBar_backgroundSplit 12\nint styleable ActionBar_backgroundStacked 11\nint styleable ActionBar_contentInsetEnd 21\nint styleable ActionBar_contentInsetLeft 22\nint styleable ActionBar_contentInsetRight 23\nint styleable ActionBar_contentInsetStart 20\nint styleable ActionBar_customNavigationLayout 13\nint styleable ActionBar_displayOptions 3\nint styleable ActionBar_divider 9\nint styleable ActionBar_elevation 24\nint styleable ActionBar_height 0\nint styleable ActionBar_hideOnContentScroll 19\nint styleable ActionBar_homeAsUpIndicator 26\nint styleable ActionBar_homeLayout 14\nint styleable ActionBar_icon 7\nint styleable ActionBar_indeterminateProgressStyle 16\nint styleable ActionBar_itemPadding 18\nint styleable ActionBar_logo 8\nint styleable ActionBar_navigationMode 2\nint styleable ActionBar_popupTheme 25\nint styleable ActionBar_progressBarPadding 17\nint styleable ActionBar_progressBarStyle 15\nint styleable ActionBar_subtitle 4\nint styleable ActionBar_subtitleTextStyle 6\nint styleable ActionBar_title 1\nint styleable ActionBar_titleTextStyle 5\nint[] styleable ActionBarLayout { 0x010100b3 }\nint styleable ActionBarLayout_android_layout_gravity 0\nint[] styleable ActionMenuItemView { 0x0101013f }\nint styleable ActionMenuItemView_android_minWidth 0\nint[] styleable ActionMenuView { }\nint[] styleable ActionMode { 0x7f010001, 0x7f010007, 0x7f010008, 0x7f01000c, 0x7f01000e, 0x7f01001c }\nint styleable ActionMode_background 3\nint styleable ActionMode_backgroundSplit 4\nint styleable ActionMode_closeItemLayout 5\nint styleable ActionMode_height 0\nint styleable ActionMode_subtitleTextStyle 2\nint styleable ActionMode_titleTextStyle 1\nint[] styleable ActivityChooserView { 0x7f01001d, 0x7f01001e }\nint styleable ActivityChooserView_expandActivityOverflowButtonDrawable 1\nint styleable ActivityChooserView_initialActivityCount 0\nint[] styleable AlertDialog { 0x010100f2, 0x7f01001f, 0x7f010020, 0x7f010021, 0x7f010022, 0x7f010023 }\nint styleable AlertDialog_android_layout 0\nint styleable AlertDialog_buttonPanelSideLayout 1\nint styleable AlertDialog_listItemLayout 5\nint styleable AlertDialog_listLayout 2\nint styleable AlertDialog_multiChoiceItemLayout 3\nint styleable AlertDialog_singleChoiceItemLayout 4\nint[] styleable AppCompatTextView { 0x01010034, 0x7f010024 }\nint styleable AppCompatTextView_android_textAppearance 0\nint styleable AppCompatTextView_textAllCaps 1\nint[] styleable CompoundButton { 0x01010107, 0x7f010025, 0x7f010026 }\nint styleable CompoundButton_android_button 0\nint styleable CompoundButton_buttonTint 1\nint styleable CompoundButton_buttonTintMode 2\nint[] styleable DrawerArrowToggle { 0x7f010027, 0x7f010028, 0x7f010029, 0x7f01002a, 0x7f01002b, 0x7f01002c, 0x7f01002d, 0x7f01002e }\nint styleable DrawerArrowToggle_arrowHeadLength 4\nint styleable DrawerArrowToggle_arrowShaftLength 5\nint styleable DrawerArrowToggle_barLength 6\nint styleable DrawerArrowToggle_color 0\nint styleable DrawerArrowToggle_drawableSize 2\nint styleable DrawerArrowToggle_gapBetweenBars 3\nint styleable DrawerArrowToggle_spinBars 1\nint styleable DrawerArrowToggle_thickness 7\nint[] styleable GenericDraweeView { 0x7f01002f, 0x7f010030, 0x7f010031, 0x7f010032, 0x7f010033, 0x7f010034, 0x7f010035, 0x7f010036, 0x7f010037, 0x7f010038, 0x7f010039, 0x7f01003a, 0x7f01003b, 0x7f01003c, 0x7f01003d, 0x7f01003e, 0x7f01003f, 0x7f010040, 0x7f010041, 0x7f010042, 0x7f010043, 0x7f010044, 0x7f010045, 0x7f010046 }\nint styleable GenericDraweeView_actualImageScaleType 11\nint styleable GenericDraweeView_backgroundImage 12\nint styleable GenericDraweeView_fadeDuration 0\nint styleable GenericDraweeView_failureImage 6\nint styleable GenericDraweeView_failureImageScaleType 7\nint styleable GenericDraweeView_overlayImage 13\nint styleable GenericDraweeView_placeholderImage 2\nint styleable GenericDraweeView_placeholderImageScaleType 3\nint styleable GenericDraweeView_pressedStateOverlayImage 14\nint styleable GenericDraweeView_progressBarAutoRotateInterval 10\nint styleable GenericDraweeView_progressBarImage 8\nint styleable GenericDraweeView_progressBarImageScaleType 9\nint styleable GenericDraweeView_retryImage 4\nint styleable GenericDraweeView_retryImageScaleType 5\nint styleable GenericDraweeView_roundAsCircle 15\nint styleable GenericDraweeView_roundBottomLeft 20\nint styleable GenericDraweeView_roundBottomRight 19\nint styleable GenericDraweeView_roundTopLeft 17\nint styleable GenericDraweeView_roundTopRight 18\nint styleable GenericDraweeView_roundWithOverlayColor 21\nint styleable GenericDraweeView_roundedCornerRadius 16\nint styleable GenericDraweeView_roundingBorderColor 23\nint styleable GenericDraweeView_roundingBorderWidth 22\nint styleable GenericDraweeView_viewAspectRatio 1\nint[] styleable LinearLayoutCompat { 0x010100af, 0x010100c4, 0x01010126, 0x01010127, 0x01010128, 0x7f01000b, 0x7f010047, 0x7f010048, 0x7f010049 }\nint styleable LinearLayoutCompat_android_baselineAligned 2\nint styleable LinearLayoutCompat_android_baselineAlignedChildIndex 3\nint styleable LinearLayoutCompat_android_gravity 0\nint styleable LinearLayoutCompat_android_orientation 1\nint styleable LinearLayoutCompat_android_weightSum 4\nint styleable LinearLayoutCompat_divider 5\nint styleable LinearLayoutCompat_dividerPadding 8\nint styleable LinearLayoutCompat_measureWithLargestChild 6\nint styleable LinearLayoutCompat_showDividers 7\nint[] styleable LinearLayoutCompat_Layout { 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 }\nint styleable LinearLayoutCompat_Layout_android_layout_gravity 0\nint styleable LinearLayoutCompat_Layout_android_layout_height 2\nint styleable LinearLayoutCompat_Layout_android_layout_weight 3\nint styleable LinearLayoutCompat_Layout_android_layout_width 1\nint[] styleable ListPopupWindow { 0x010102ac, 0x010102ad }\nint styleable ListPopupWindow_android_dropDownHorizontalOffset 0\nint styleable ListPopupWindow_android_dropDownVerticalOffset 1\nint[] styleable MenuGroup { 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, 0x010101df, 0x010101e0 }\nint styleable MenuGroup_android_checkableBehavior 5\nint styleable MenuGroup_android_enabled 0\nint styleable MenuGroup_android_id 1\nint styleable MenuGroup_android_menuCategory 3\nint styleable MenuGroup_android_orderInCategory 4\nint styleable MenuGroup_android_visible 2\nint[] styleable MenuItem { 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f01004a, 0x7f01004b, 0x7f01004c, 0x7f01004d }\nint styleable MenuItem_actionLayout 14\nint styleable MenuItem_actionProviderClass 16\nint styleable MenuItem_actionViewClass 15\nint styleable MenuItem_android_alphabeticShortcut 9\nint styleable MenuItem_android_checkable 11\nint styleable MenuItem_android_checked 3\nint styleable MenuItem_android_enabled 1\nint styleable MenuItem_android_icon 0\nint styleable MenuItem_android_id 2\nint styleable MenuItem_android_menuCategory 5\nint styleable MenuItem_android_numericShortcut 10\nint styleable MenuItem_android_onClick 12\nint styleable MenuItem_android_orderInCategory 6\nint styleable MenuItem_android_title 7\nint styleable MenuItem_android_titleCondensed 8\nint styleable MenuItem_android_visible 4\nint styleable MenuItem_showAsAction 13\nint[] styleable MenuView { 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x7f01004e }\nint styleable MenuView_android_headerBackground 4\nint styleable MenuView_android_horizontalDivider 2\nint styleable MenuView_android_itemBackground 5\nint styleable MenuView_android_itemIconDisabledAlpha 6\nint styleable MenuView_android_itemTextAppearance 1\nint styleable MenuView_android_verticalDivider 3\nint styleable MenuView_android_windowAnimationStyle 0\nint styleable MenuView_preserveIconSpacing 7\nint[] styleable PopupWindow { 0x01010176, 0x7f01004f }\nint styleable PopupWindow_android_popupBackground 0\nint styleable PopupWindow_overlapAnchor 1\nint[] styleable PopupWindowBackgroundState { 0x7f010050 }\nint styleable PopupWindowBackgroundState_state_above_anchor 0\nint[] styleable RecyclerView { 0x010100c4, 0x7f010051, 0x7f010052, 0x7f010053, 0x7f010054 }\nint styleable RecyclerView_android_orientation 0\nint styleable RecyclerView_layoutManager 1\nint styleable RecyclerView_reverseLayout 3\nint styleable RecyclerView_spanCount 2\nint styleable RecyclerView_stackFromEnd 4\nint[] styleable SearchView { 0x010100da, 0x0101011f, 0x01010220, 0x01010264, 0x7f010055, 0x7f010056, 0x7f010057, 0x7f010058, 0x7f010059, 0x7f01005a, 0x7f01005b, 0x7f01005c, 0x7f01005d, 0x7f01005e, 0x7f01005f, 0x7f010060, 0x7f010061 }\nint styleable SearchView_android_focusable 0\nint styleable SearchView_android_imeOptions 3\nint styleable SearchView_android_inputType 2\nint styleable SearchView_android_maxWidth 1\nint styleable SearchView_closeIcon 8\nint styleable SearchView_commitIcon 13\nint styleable SearchView_defaultQueryHint 7\nint styleable SearchView_goIcon 9\nint styleable SearchView_iconifiedByDefault 5\nint styleable SearchView_layout 4\nint styleable SearchView_queryBackground 15\nint styleable SearchView_queryHint 6\nint styleable SearchView_searchHintIcon 11\nint styleable SearchView_searchIcon 10\nint styleable SearchView_submitBackground 16\nint styleable SearchView_suggestionRowLayout 14\nint styleable SearchView_voiceIcon 12\nint[] styleable Spinner { 0x01010176, 0x0101017b, 0x01010262, 0x7f01001b }\nint styleable Spinner_android_dropDownWidth 2\nint styleable Spinner_android_popupBackground 0\nint styleable Spinner_android_prompt 1\nint styleable Spinner_popupTheme 3\nint[] styleable SwitchCompat { 0x01010124, 0x01010125, 0x01010142, 0x7f010062, 0x7f010063, 0x7f010064, 0x7f010065, 0x7f010066, 0x7f010067, 0x7f010068 }\nint styleable SwitchCompat_android_textOff 1\nint styleable SwitchCompat_android_textOn 0\nint styleable SwitchCompat_android_thumb 2\nint styleable SwitchCompat_showText 9\nint styleable SwitchCompat_splitTrack 8\nint styleable SwitchCompat_switchMinWidth 6\nint styleable SwitchCompat_switchPadding 7\nint styleable SwitchCompat_switchTextAppearance 5\nint styleable SwitchCompat_thumbTextPadding 4\nint styleable SwitchCompat_track 3\nint[] styleable TextAppearance { 0x01010095, 0x01010096, 0x01010097, 0x01010098, 0x7f010024 }\nint styleable TextAppearance_android_textColor 3\nint styleable TextAppearance_android_textSize 0\nint styleable TextAppearance_android_textStyle 2\nint styleable TextAppearance_android_typeface 1\nint styleable TextAppearance_textAllCaps 4\nint[] styleable Theme { 0x01010057, 0x010100ae, 0x7f010069, 0x7f01006a, 0x7f01006b, 0x7f01006c, 0x7f01006d, 0x7f01006e, 0x7f01006f, 0x7f010070, 0x7f010071, 0x7f010072, 0x7f010073, 0x7f010074, 0x7f010075, 0x7f010076, 0x7f010077, 0x7f010078, 0x7f010079, 0x7f01007a, 0x7f01007b, 0x7f01007c, 0x7f01007d, 0x7f01007e, 0x7f01007f, 0x7f010080, 0x7f010081, 0x7f010082, 0x7f010083, 0x7f010084, 0x7f010085, 0x7f010086, 0x7f010087, 0x7f010088, 0x7f010089, 0x7f01008a, 0x7f01008b, 0x7f01008c, 0x7f01008d, 0x7f01008e, 0x7f01008f, 0x7f010090, 0x7f010091, 0x7f010092, 0x7f010093, 0x7f010094, 0x7f010095, 0x7f010096, 0x7f010097, 0x7f010098, 0x7f010099, 0x7f01009a, 0x7f01009b, 0x7f01009c, 0x7f01009d, 0x7f01009e, 0x7f01009f, 0x7f0100a0, 0x7f0100a1, 0x7f0100a2, 0x7f0100a3, 0x7f0100a4, 0x7f0100a5, 0x7f0100a6, 0x7f0100a7, 0x7f0100a8, 0x7f0100a9, 0x7f0100aa, 0x7f0100ab, 0x7f0100ac, 0x7f0100ad, 0x7f0100ae, 0x7f0100af, 0x7f0100b0, 0x7f0100b1, 0x7f0100b2, 0x7f0100b3, 0x7f0100b4, 0x7f0100b5, 0x7f0100b6, 0x7f0100b7, 0x7f0100b8, 0x7f0100b9, 0x7f0100ba, 0x7f0100bb, 0x7f0100bc, 0x7f0100bd, 0x7f0100be, 0x7f0100bf, 0x7f0100c0, 0x7f0100c1, 0x7f0100c2, 0x7f0100c3, 0x7f0100c4, 0x7f0100c5, 0x7f0100c6, 0x7f0100c7, 0x7f0100c8, 0x7f0100c9, 0x7f0100ca, 0x7f0100cb, 0x7f0100cc, 0x7f0100cd, 0x7f0100ce, 0x7f0100cf, 0x7f0100d0, 0x7f0100d1, 0x7f0100d2 }\nint styleable Theme_actionBarDivider 23\nint styleable Theme_actionBarItemBackground 24\nint styleable Theme_actionBarPopupTheme 17\nint styleable Theme_actionBarSize 22\nint styleable Theme_actionBarSplitStyle 19\nint styleable Theme_actionBarStyle 18\nint styleable Theme_actionBarTabBarStyle 13\nint styleable Theme_actionBarTabStyle 12\nint styleable Theme_actionBarTabTextStyle 14\nint styleable Theme_actionBarTheme 20\nint styleable Theme_actionBarWidgetTheme 21\nint styleable Theme_actionButtonStyle 49\nint styleable Theme_actionDropDownStyle 45\nint styleable Theme_actionMenuTextAppearance 25\nint styleable Theme_actionMenuTextColor 26\nint styleable Theme_actionModeBackground 29\nint styleable Theme_actionModeCloseButtonStyle 28\nint styleable Theme_actionModeCloseDrawable 31\nint styleable Theme_actionModeCopyDrawable 33\nint styleable Theme_actionModeCutDrawable 32\nint styleable Theme_actionModeFindDrawable 37\nint styleable Theme_actionModePasteDrawable 34\nint styleable Theme_actionModePopupWindowStyle 39\nint styleable Theme_actionModeSelectAllDrawable 35\nint styleable Theme_actionModeShareDrawable 36\nint styleable Theme_actionModeSplitBackground 30\nint styleable Theme_actionModeStyle 27\nint styleable Theme_actionModeWebSearchDrawable 38\nint styleable Theme_actionOverflowButtonStyle 15\nint styleable Theme_actionOverflowMenuStyle 16\nint styleable Theme_activityChooserViewStyle 57\nint styleable Theme_alertDialogButtonGroupStyle 91\nint styleable Theme_alertDialogCenterButtons 92\nint styleable Theme_alertDialogStyle 90\nint styleable Theme_alertDialogTheme 93\nint styleable Theme_android_windowAnimationStyle 1\nint styleable Theme_android_windowIsFloating 0\nint styleable Theme_autoCompleteTextViewStyle 98\nint styleable Theme_borderlessButtonStyle 54\nint styleable Theme_buttonBarButtonStyle 51\nint styleable Theme_buttonBarNegativeButtonStyle 96\nint styleable Theme_buttonBarNeutralButtonStyle 97\nint styleable Theme_buttonBarPositiveButtonStyle 95\nint styleable Theme_buttonBarStyle 50\nint styleable Theme_buttonStyle 99\nint styleable Theme_buttonStyleSmall 100\nint styleable Theme_checkboxStyle 101\nint styleable Theme_checkedTextViewStyle 102\nint styleable Theme_colorAccent 83\nint styleable Theme_colorButtonNormal 87\nint styleable Theme_colorControlActivated 85\nint styleable Theme_colorControlHighlight 86\nint styleable Theme_colorControlNormal 84\nint styleable Theme_colorPrimary 81\nint styleable Theme_colorPrimaryDark 82\nint styleable Theme_colorSwitchThumbNormal 88\nint styleable Theme_controlBackground 89\nint styleable Theme_dialogPreferredPadding 43\nint styleable Theme_dialogTheme 42\nint styleable Theme_dividerHorizontal 56\nint styleable Theme_dividerVertical 55\nint styleable Theme_dropDownListViewStyle 73\nint styleable Theme_dropdownListPreferredItemHeight 46\nint styleable Theme_editTextBackground 63\nint styleable Theme_editTextColor 62\nint styleable Theme_editTextStyle 103\nint styleable Theme_homeAsUpIndicator 48\nint styleable Theme_listChoiceBackgroundIndicator 80\nint styleable Theme_listDividerAlertDialog 44\nint styleable Theme_listPopupWindowStyle 74\nint styleable Theme_listPreferredItemHeight 68\nint styleable Theme_listPreferredItemHeightLarge 70\nint styleable Theme_listPreferredItemHeightSmall 69\nint styleable Theme_listPreferredItemPaddingLeft 71\nint styleable Theme_listPreferredItemPaddingRight 72\nint styleable Theme_panelBackground 77\nint styleable Theme_panelMenuListTheme 79\nint styleable Theme_panelMenuListWidth 78\nint styleable Theme_popupMenuStyle 60\nint styleable Theme_popupWindowStyle 61\nint styleable Theme_radioButtonStyle 104\nint styleable Theme_ratingBarStyle 105\nint styleable Theme_searchViewStyle 67\nint styleable Theme_selectableItemBackground 52\nint styleable Theme_selectableItemBackgroundBorderless 53\nint styleable Theme_spinnerDropDownItemStyle 47\nint styleable Theme_spinnerStyle 106\nint styleable Theme_switchStyle 107\nint styleable Theme_textAppearanceLargePopupMenu 40\nint styleable Theme_textAppearanceListItem 75\nint styleable Theme_textAppearanceListItemSmall 76\nint styleable Theme_textAppearanceSearchResultSubtitle 65\nint styleable Theme_textAppearanceSearchResultTitle 64\nint styleable Theme_textAppearanceSmallPopupMenu 41\nint styleable Theme_textColorAlertDialogListItem 94\nint styleable Theme_textColorSearchUrl 66\nint styleable Theme_toolbarNavigationButtonStyle 59\nint styleable Theme_toolbarStyle 58\nint styleable Theme_windowActionBar 2\nint styleable Theme_windowActionBarOverlay 4\nint styleable Theme_windowActionModeOverlay 5\nint styleable Theme_windowFixedHeightMajor 9\nint styleable Theme_windowFixedHeightMinor 7\nint styleable Theme_windowFixedWidthMajor 6\nint styleable Theme_windowFixedWidthMinor 8\nint styleable Theme_windowMinWidthMajor 10\nint styleable Theme_windowMinWidthMinor 11\nint styleable Theme_windowNoTitle 3\nint[] styleable Toolbar { 0x010100af, 0x01010140, 0x7f010003, 0x7f010006, 0x7f01000a, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001b, 0x7f0100d3, 0x7f0100d4, 0x7f0100d5, 0x7f0100d6, 0x7f0100d7, 0x7f0100d8, 0x7f0100d9, 0x7f0100da, 0x7f0100db, 0x7f0100dc, 0x7f0100dd, 0x7f0100de, 0x7f0100df, 0x7f0100e0, 0x7f0100e1 }\nint styleable Toolbar_android_gravity 0\nint styleable Toolbar_android_minHeight 1\nint styleable Toolbar_collapseContentDescription 19\nint styleable Toolbar_collapseIcon 18\nint styleable Toolbar_contentInsetEnd 6\nint styleable Toolbar_contentInsetLeft 7\nint styleable Toolbar_contentInsetRight 8\nint styleable Toolbar_contentInsetStart 5\nint styleable Toolbar_logo 4\nint styleable Toolbar_logoDescription 22\nint styleable Toolbar_maxButtonHeight 17\nint styleable Toolbar_navigationContentDescription 21\nint styleable Toolbar_navigationIcon 20\nint styleable Toolbar_popupTheme 9\nint styleable Toolbar_subtitle 3\nint styleable Toolbar_subtitleTextAppearance 11\nint styleable Toolbar_subtitleTextColor 24\nint styleable Toolbar_title 2\nint styleable Toolbar_titleMarginBottom 16\nint styleable Toolbar_titleMarginEnd 14\nint styleable Toolbar_titleMarginStart 13\nint styleable Toolbar_titleMarginTop 15\nint styleable Toolbar_titleMargins 12\nint styleable Toolbar_titleTextAppearance 10\nint styleable Toolbar_titleTextColor 23\nint[] styleable View { 0x01010000, 0x010100da, 0x7f0100e2, 0x7f0100e3, 0x7f0100e4 }\nint styleable View_android_focusable 1\nint styleable View_android_theme 0\nint styleable View_paddingEnd 3\nint styleable View_paddingStart 2\nint styleable View_theme 4\nint[] styleable ViewBackgroundHelper { 0x010100d4, 0x7f0100e5, 0x7f0100e6 }\nint styleable ViewBackgroundHelper_android_background 0\nint styleable ViewBackgroundHelper_backgroundTint 1\nint styleable ViewBackgroundHelper_backgroundTintMode 2\nint[] styleable ViewStubCompat { 0x010100d0, 0x010100f2, 0x010100f3 }\nint styleable ViewStubCompat_android_id 0\nint styleable ViewStubCompat_android_inflatedId 2\nint styleable ViewStubCompat_android_layout 1\nint xml preferences 0x7f060000\n"
  },
  {
    "path": "android/app/build/outputs/logs/manifest-merger-debug-report.txt",
    "content": "-- Merging decision tree log ---\nmanifest\nADDED from /Users/cmanus/code/src/github.com/go-react-native/android/app/src/main/AndroidManifest.xml:1:1-30:12\n\tpackage\n\t\tADDED from /Users/cmanus/code/src/github.com/go-react-native/android/app/src/main/AndroidManifest.xml:2:5-26\n\t\tINJECTED from /Users/cmanus/code/src/github.com/go-react-native/android/app/src/main/AndroidManifest.xml\n\t\tINJECTED from /Users/cmanus/code/src/github.com/go-react-native/android/app/src/main/AndroidManifest.xml\n\tandroid:versionName\n\t\tADDED from /Users/cmanus/code/src/github.com/go-react-native/android/app/src/main/AndroidManifest.xml:4:5-30\n\t\tINJECTED from /Users/cmanus/code/src/github.com/go-react-native/android/app/src/main/AndroidManifest.xml\n\t\tINJECTED from /Users/cmanus/code/src/github.com/go-react-native/android/app/src/main/AndroidManifest.xml\n\tandroid:versionCode\n\t\tADDED from /Users/cmanus/code/src/github.com/go-react-native/android/app/src/main/AndroidManifest.xml:3:5-28\n\t\tINJECTED from /Users/cmanus/code/src/github.com/go-react-native/android/app/src/main/AndroidManifest.xml\n\t\tINJECTED from /Users/cmanus/code/src/github.com/go-react-native/android/app/src/main/AndroidManifest.xml\n\txmlns:android\n\t\tADDED from /Users/cmanus/code/src/github.com/go-react-native/android/app/src/main/AndroidManifest.xml:1:11-69\nuses-permission#android.permission.INTERNET\nADDED from /Users/cmanus/code/src/github.com/go-react-native/android/app/src/main/AndroidManifest.xml:6:5-67\n\tandroid:name\n\t\tADDED from /Users/cmanus/code/src/github.com/go-react-native/android/app/src/main/AndroidManifest.xml:6:22-64\nuses-permission#android.permission.SYSTEM_ALERT_WINDOW\nADDED from /Users/cmanus/code/src/github.com/go-react-native/android/app/src/main/AndroidManifest.xml:7:5-77\nMERGED from [com.facebook.react:react-native:0.24.1] /Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/AndroidManifest.xml:11:5-78\n\tandroid:name\n\t\tADDED from /Users/cmanus/code/src/github.com/go-react-native/android/app/src/main/AndroidManifest.xml:7:22-75\nuses-sdk\nADDED from /Users/cmanus/code/src/github.com/go-react-native/android/app/src/main/AndroidManifest.xml:9:5-11:41\nMERGED from [com.android.support:appcompat-v7:23.0.1] /Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/AndroidManifest.xml:20:5-43\nMERGED from [com.android.support:support-v4:23.0.1] /Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/support-v4/23.0.1/AndroidManifest.xml:20:5-43\nMERGED from [com.facebook.react:react-native:0.24.1] /Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/AndroidManifest.xml:7:5-9:41\nMERGED from [com.facebook.fresco:fresco:0.8.1] /Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.fresco/fresco/0.8.1/AndroidManifest.xml:5:5-7:41\nMERGED from [com.facebook.fresco:imagepipeline:0.8.1] /Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/AndroidManifest.xml:5:5-7:41\nMERGED from [com.facebook.fresco:fbcore:0.8.1] /Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.fresco/fbcore/0.8.1/AndroidManifest.xml:5:5-7:41\nMERGED from [com.android.support:support-v4:23.0.1] /Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/support-v4/23.0.1/AndroidManifest.xml:20:5-43\nMERGED from [com.facebook.fresco:fbcore:0.8.1] /Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.fresco/fbcore/0.8.1/AndroidManifest.xml:5:5-7:41\nMERGED from [com.facebook.fresco:drawee:0.8.1] /Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.fresco/drawee/0.8.1/AndroidManifest.xml:5:5-7:41\nMERGED from [com.facebook.fresco:fbcore:0.8.1] /Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.fresco/fbcore/0.8.1/AndroidManifest.xml:5:5-7:41\nMERGED from [com.android.support:support-v4:23.0.1] /Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/support-v4/23.0.1/AndroidManifest.xml:20:5-43\nMERGED from [com.facebook.fresco:imagepipeline-okhttp:0.8.1] /Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline-okhttp/0.8.1/AndroidManifest.xml:5:5-7:41\nMERGED from [com.facebook.fresco:imagepipeline:0.8.1] /Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/AndroidManifest.xml:5:5-7:41\nMERGED from [com.facebook.fresco:fbcore:0.8.1] /Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.fresco/fbcore/0.8.1/AndroidManifest.xml:5:5-7:41\nMERGED from [com.android.support:support-v4:23.0.1] /Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/support-v4/23.0.1/AndroidManifest.xml:20:5-43\nMERGED from [com.facebook.fresco:fbcore:0.8.1] /Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.fresco/fbcore/0.8.1/AndroidManifest.xml:5:5-7:41\nMERGED from [com.android.support:recyclerview-v7:23.0.1] /Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/recyclerview-v7/23.0.1/AndroidManifest.xml:20:5-43\nMERGED from [com.android.support:support-v4:23.0.1] /Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/support-v4/23.0.1/AndroidManifest.xml:20:5-43\nMERGED from [com.android.support:appcompat-v7:23.0.1] /Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/AndroidManifest.xml:20:5-43\nMERGED from [com.android.support:support-v4:23.0.1] /Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/support-v4/23.0.1/AndroidManifest.xml:20:5-43\nMERGED from [GoReact:demo:unspecified] /Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/GoReact/demo/unspecified/AndroidManifest.xml:2:1-39\n\tandroid:targetSdkVersion\n\t\tADDED from /Users/cmanus/code/src/github.com/go-react-native/android/app/src/main/AndroidManifest.xml:11:9-38\n\t\tINJECTED from /Users/cmanus/code/src/github.com/go-react-native/android/app/src/main/AndroidManifest.xml\n\t\tINJECTED from /Users/cmanus/code/src/github.com/go-react-native/android/app/src/main/AndroidManifest.xml\n\tandroid:minSdkVersion\n\t\tADDED from /Users/cmanus/code/src/github.com/go-react-native/android/app/src/main/AndroidManifest.xml:10:9-35\n\t\tINJECTED from /Users/cmanus/code/src/github.com/go-react-native/android/app/src/main/AndroidManifest.xml\n\t\tINJECTED from /Users/cmanus/code/src/github.com/go-react-native/android/app/src/main/AndroidManifest.xml\napplication\nADDED from /Users/cmanus/code/src/github.com/go-react-native/android/app/src/main/AndroidManifest.xml:13:5-28:19\nMERGED from [com.android.support:appcompat-v7:23.0.1] /Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/AndroidManifest.xml:22:5-20\nMERGED from [com.android.support:support-v4:23.0.1] /Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/support-v4/23.0.1/AndroidManifest.xml:22:5-20\nMERGED from [com.facebook.react:react-native:0.24.1] /Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/AndroidManifest.xml:13:5-20\nMERGED from [org.webkit:android-jsc:r174650] /Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/org.webkit/android-jsc/r174650/AndroidManifest.xml:2:3-17\nMERGED from [com.android.support:support-v4:23.0.1] /Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/support-v4/23.0.1/AndroidManifest.xml:22:5-20\nMERGED from [com.android.support:support-v4:23.0.1] /Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/support-v4/23.0.1/AndroidManifest.xml:22:5-20\nMERGED from [com.android.support:support-v4:23.0.1] /Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/support-v4/23.0.1/AndroidManifest.xml:22:5-20\nMERGED from [com.android.support:support-v4:23.0.1] /Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/support-v4/23.0.1/AndroidManifest.xml:22:5-20\nMERGED from [com.android.support:appcompat-v7:23.0.1] /Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/AndroidManifest.xml:22:5-20\nMERGED from [com.android.support:support-v4:23.0.1] /Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/support-v4/23.0.1/AndroidManifest.xml:22:5-20\n\tandroid:label\n\t\tADDED from /Users/cmanus/code/src/github.com/go-react-native/android/app/src/main/AndroidManifest.xml:15:7-39\n\tandroid:allowBackup\n\t\tADDED from /Users/cmanus/code/src/github.com/go-react-native/android/app/src/main/AndroidManifest.xml:14:7-33\n\tandroid:icon\n\t\tADDED from /Users/cmanus/code/src/github.com/go-react-native/android/app/src/main/AndroidManifest.xml:16:7-41\n\tandroid:theme\n\t\tADDED from /Users/cmanus/code/src/github.com/go-react-native/android/app/src/main/AndroidManifest.xml:17:7-38\nactivity#com.goreact.MainActivity\nADDED from /Users/cmanus/code/src/github.com/go-react-native/android/app/src/main/AndroidManifest.xml:18:7-26:18\n\tandroid:label\n\t\tADDED from /Users/cmanus/code/src/github.com/go-react-native/android/app/src/main/AndroidManifest.xml:20:9-41\n\tandroid:configChanges\n\t\tADDED from /Users/cmanus/code/src/github.com/go-react-native/android/app/src/main/AndroidManifest.xml:21:9-79\n\tandroid:name\n\t\tADDED from /Users/cmanus/code/src/github.com/go-react-native/android/app/src/main/AndroidManifest.xml:19:9-37\nintent-filter#android.intent.action.MAIN+android.intent.category.LAUNCHER\nADDED from /Users/cmanus/code/src/github.com/go-react-native/android/app/src/main/AndroidManifest.xml:22:9-25:25\naction#android.intent.action.MAIN\nADDED from /Users/cmanus/code/src/github.com/go-react-native/android/app/src/main/AndroidManifest.xml:23:13-65\n\tandroid:name\n\t\tADDED from /Users/cmanus/code/src/github.com/go-react-native/android/app/src/main/AndroidManifest.xml:23:21-62\ncategory#android.intent.category.LAUNCHER\nADDED from /Users/cmanus/code/src/github.com/go-react-native/android/app/src/main/AndroidManifest.xml:24:13-73\n\tandroid:name\n\t\tADDED from /Users/cmanus/code/src/github.com/go-react-native/android/app/src/main/AndroidManifest.xml:24:23-70\nactivity#com.facebook.react.devsupport.DevSettingsActivity\nADDED from /Users/cmanus/code/src/github.com/go-react-native/android/app/src/main/AndroidManifest.xml:27:7-84\n\tandroid:name\n\t\tADDED from /Users/cmanus/code/src/github.com/go-react-native/android/app/src/main/AndroidManifest.xml:27:17-81\nandroid:uses-permission#android.permission.WRITE_EXTERNAL_STORAGE\nIMPLIED from /Users/cmanus/code/src/github.com/go-react-native/android/app/src/main/AndroidManifest.xml:1:1-30:12 reason: org.webkit.android_jsc has a targetSdkVersion < 4\nandroid:uses-permission#android.permission.READ_PHONE_STATE\nIMPLIED from /Users/cmanus/code/src/github.com/go-react-native/android/app/src/main/AndroidManifest.xml:1:1-30:12 reason: org.webkit.android_jsc has a targetSdkVersion < 4\nandroid:uses-permission#android.permission.READ_EXTERNAL_STORAGE\nIMPLIED from /Users/cmanus/code/src/github.com/go-react-native/android/app/src/main/AndroidManifest.xml:1:1-30:12 reason: org.webkit.android_jsc requested WRITE_EXTERNAL_STORAGE\n"
  },
  {
    "path": "android/app/build.gradle",
    "content": "apply plugin: \"com.android.application\"\n\nimport com.android.build.OutputFile\n\n/**\n * The react.gradle file registers a task for each build variant (e.g. bundleDebugJsAndAssets\n * and bundleReleaseJsAndAssets).\n * These basically call `react-native bundle` with the correct arguments during the Android build\n * cycle. By default, bundleDebugJsAndAssets is skipped, as in debug/dev mode we prefer to load the\n * bundle directly from the development server. Below you can see all the possible configurations\n * and their defaults. If you decide to add a configuration block, make sure to add it before the\n * `apply from: \"../../node_modules/react-native/react.gradle\"` line.\n *\n * project.ext.react = [\n *   // the name of the generated asset file containing your JS bundle\n *   bundleAssetName: \"index.android.bundle\",\n *\n *   // the entry file for bundle generation\n *   entryFile: \"index.android.js\",\n *\n *   // whether to bundle JS and assets in debug mode\n *   bundleInDebug: false,\n *\n *   // whether to bundle JS and assets in release mode\n *   bundleInRelease: true,\n *\n *   // whether to bundle JS and assets in another build variant (if configured).\n *   // See http://tools.android.com/tech-docs/new-build-system/user-guide#TOC-Build-Variants\n *   // The configuration property can be in the following formats\n *   //         'bundleIn${productFlavor}${buildType}'\n *   //         'bundleIn${buildType}'\n *   // bundleInFreeDebug: true,\n *   // bundleInPaidRelease: true,\n *   // bundleInBeta: true,\n *\n *   // the root of your project, i.e. where \"package.json\" lives\n *   root: \"../../\",\n *\n *   // where to put the JS bundle asset in debug mode\n *   jsBundleDirDebug: \"$buildDir/intermediates/assets/debug\",\n *\n *   // where to put the JS bundle asset in release mode\n *   jsBundleDirRelease: \"$buildDir/intermediates/assets/release\",\n *\n *   // where to put drawable resources / React Native assets, e.g. the ones you use via\n *   // require('./image.png')), in debug mode\n *   resourcesDirDebug: \"$buildDir/intermediates/res/merged/debug\",\n *\n *   // where to put drawable resources / React Native assets, e.g. the ones you use via\n *   // require('./image.png')), in release mode\n *   resourcesDirRelease: \"$buildDir/intermediates/res/merged/release\",\n *\n *   // by default the gradle tasks are skipped if none of the JS files or assets change; this means\n *   // that we don't look at files in android/ or ios/ to determine whether the tasks are up to\n *   // date; if you have any other folders that you want to ignore for performance reasons (gradle\n *   // indexes the entire tree), add them here. Alternatively, if you have JS files in android/\n *   // for example, you might want to remove it from here.\n *   inputExcludes: [\"android/**\", \"ios/**\"]\n * ]\n */\n\napply from: \"../../node_modules/react-native/react.gradle\"\n\n/**\n * Set this to true to create two separate APKs instead of one:\n *   - An APK that only works on ARM devices\n *   - An APK that only works on x86 devices\n * The advantage is the size of the APK is reduced by about 4MB.\n * Upload all the APKs to the Play Store and people will download\n * the correct one based on the CPU architecture of their device.\n */\ndef enableSeparateBuildPerCPUArchitecture = false\n\n/**\n * Run Proguard to shrink the Java bytecode in release builds.\n */\ndef enableProguardInReleaseBuilds = false\n\nandroid {\n    compileSdkVersion 23\n    buildToolsVersion \"23.0.1\"\n\n    defaultConfig {\n        applicationId \"com.goreact\"\n        minSdkVersion 16\n        targetSdkVersion 22\n        versionCode 1\n        versionName \"1.0\"\n        ndk {\n            abiFilters \"armeabi-v7a\", \"x86\"\n        }\n    }\n    splits {\n        abi {\n            reset()\n            enable enableSeparateBuildPerCPUArchitecture\n            universalApk false  // If true, also generate a universal APK\n            include \"armeabi-v7a\", \"x86\"\n        }\n    }\n    buildTypes {\n        release {\n            minifyEnabled enableProguardInReleaseBuilds\n            proguardFiles getDefaultProguardFile(\"proguard-android.txt\"), \"proguard-rules.pro\"\n        }\n    }\n    // applicationVariants are e.g. debug, release\n    applicationVariants.all { variant ->\n        variant.outputs.each { output ->\n            // For each separate APK per architecture, set a unique version code as described here:\n            // http://tools.android.com/tech-docs/new-build-system/user-guide/apk-splits\n            def versionCodes = [\"armeabi-v7a\":1, \"x86\":2]\n            def abi = output.getFilter(OutputFile.ABI)\n            if (abi != null) {  // null for the universal-debug, universal-release variants\n                output.versionCodeOverride =\n                        versionCodes.get(abi) * 1048576 + defaultConfig.versionCode\n            }\n        }\n    }\n}\n\ndependencies {\n    compile fileTree(dir: 'libs', include: ['*.jar'])\n    compile 'com.android.support:appcompat-v7:23.0.1'\n    compile 'com.facebook.react:react-native:+'\n    // From node_modules\n    compile project(':demo')\n}\n\n// Run this once to be able to run the application with BUCK\n// puts all compile dependencies into folder libs for BUCK to use\ntask copyDownloadableDepsToLibs(type: Copy) {\n  from configurations.compile\n  into 'libs'\n}\n"
  },
  {
    "path": "android/app/proguard-rules.pro",
    "content": "# Add project specific ProGuard rules here.\n# By default, the flags in this file are appended to flags specified\n# in /usr/local/Cellar/android-sdk/24.3.3/tools/proguard/proguard-android.txt\n# You can edit the include path and order by changing the proguardFiles\n# directive in build.gradle.\n#\n# For more details, see\n#   http://developer.android.com/guide/developing/tools/proguard.html\n\n# Add any project specific keep options here:\n\n# If your project uses WebView with JS, uncomment the following\n# and specify the fully qualified class name to the JavaScript interface\n# class:\n#-keepclassmembers class fqcn.of.javascript.interface.for.webview {\n#   public *;\n#}\n\n# Disabling obfuscation is useful if you collect stack traces from production crashes\n# (unless you are using a system that supports de-obfuscate the stack traces).\n-dontobfuscate\n\n# React Native\n\n# Keep our interfaces so they can be used by other ProGuard rules.\n# See http://sourceforge.net/p/proguard/bugs/466/\n-keep,allowobfuscation @interface com.facebook.proguard.annotations.DoNotStrip\n-keep,allowobfuscation @interface com.facebook.proguard.annotations.KeepGettersAndSetters\n\n# Do not strip any method/class that is annotated with @DoNotStrip\n-keep @com.facebook.proguard.annotations.DoNotStrip class *\n-keepclassmembers class * {\n    @com.facebook.proguard.annotations.DoNotStrip *;\n}\n\n-keepclassmembers @com.facebook.proguard.annotations.KeepGettersAndSetters class * {\n  void set*(***);\n  *** get*();\n}\n\n-keep class * extends com.facebook.react.bridge.JavaScriptModule { *; }\n-keep class * extends com.facebook.react.bridge.NativeModule { *; }\n-keepclassmembers,includedescriptorclasses class * { native <methods>; }\n-keepclassmembers class *  { @com.facebook.react.uimanager.UIProp <fields>; }\n-keepclassmembers class *  { @com.facebook.react.uimanager.annotations.ReactProp <methods>; }\n-keepclassmembers class *  { @com.facebook.react.uimanager.annotations.ReactPropGroup <methods>; }\n\n-dontwarn com.facebook.react.**\n\n# okhttp\n\n-keepattributes Signature\n-keepattributes *Annotation*\n-keep class com.squareup.okhttp.** { *; }\n-keep interface com.squareup.okhttp.** { *; }\n-dontwarn com.squareup.okhttp.**\n\n# okio\n\n-keep class sun.misc.Unsafe { *; }\n-dontwarn java.nio.file.*\n-dontwarn org.codehaus.mojo.animal_sniffer.IgnoreJRERequirement\n-dontwarn okio.**\n\n# stetho\n\n-dontwarn com.facebook.stetho.**\n"
  },
  {
    "path": "android/app/src/main/AndroidManifest.xml",
    "content": "<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    package=\"com.goreact\"\n    android:versionCode=\"1\"\n    android:versionName=\"1.0\">\n\n    <uses-permission android:name=\"android.permission.INTERNET\" />\n    <uses-permission android:name=\"android.permission.SYSTEM_ALERT_WINDOW\"/>\n\n    <uses-sdk\n        android:minSdkVersion=\"16\"\n        android:targetSdkVersion=\"22\" />\n\n    <application\n      android:allowBackup=\"true\"\n      android:label=\"@string/app_name\"\n      android:icon=\"@mipmap/ic_launcher\"\n      android:theme=\"@style/AppTheme\">\n      <activity\n        android:name=\".MainActivity\"\n        android:label=\"@string/app_name\"\n        android:configChanges=\"keyboard|keyboardHidden|orientation|screenSize\">\n        <intent-filter>\n            <action android:name=\"android.intent.action.MAIN\" />\n            <category android:name=\"android.intent.category.LAUNCHER\" />\n        </intent-filter>\n      </activity>\n      <activity android:name=\"com.facebook.react.devsupport.DevSettingsActivity\" />\n    </application>\n\n</manifest>\n"
  },
  {
    "path": "android/app/src/main/java/com/goreact/GoModule.java",
    "content": "package com.goreact;\n//import react native stuff\nimport android.util.Log;\n\nimport com.facebook.react.bridge.NativeModule;\nimport com.facebook.react.bridge.ReactApplicationContext;\nimport com.facebook.react.bridge.ReactContext;\nimport com.facebook.react.bridge.ReactContextBaseJavaModule;\nimport com.facebook.react.bridge.ReactMethod;\nimport com.facebook.react.bridge.Callback;\nimport com.facebook.react.modules.core.DeviceEventManagerModule;\n\nimport java.util.Map;\n\n//import Go Module\nimport demo.Demo;\n\npublic class GoModule extends ReactContextBaseJavaModule {\n\n  @ReactMethod\n  public void sayHello(Callback success){\n      final ReactApplicationContext context = this.getReactApplicationContext();\n      success.invoke(Demo.helloWorld(new demo.EventBus() {\n        @Override\n        public void sendEvent(String channel, String message) {\n          Log.i(channel, message);\n          context.getJSModule(DeviceEventManagerModule.RCTDeviceEventEmitter.class)\n                .emit(channel, message);\n        }\n      }));\n  } \n  @Override\n  public String getName(){\n      return \"Go\";\n  }\n\n  public GoModule(ReactApplicationContext reactContext) {\n    super(reactContext);\n  }\n}\n"
  },
  {
    "path": "android/app/src/main/java/com/goreact/GoPackage.java",
    "content": "package com.goreact;\n\nimport com.facebook.react.bridge.NativeModule;\nimport com.facebook.react.bridge.ReactApplicationContext;\nimport com.facebook.react.bridge.JavaScriptModule;\nimport com.facebook.react.ReactPackage;\nimport com.facebook.react.uimanager.ViewManager;\n\n\nimport java.util.ArrayList;\nimport java.util.Arrays;\nimport java.util.Collections;\nimport java.util.List;\n\nclass GoPackage implements ReactPackage {\n\n  @Override\n  public List<Class<? extends JavaScriptModule>> createJSModules() {\n    return Collections.emptyList();\n  }\n\n  @Override\n  public List<ViewManager> createViewManagers(ReactApplicationContext reactContext) {\n    return Collections.emptyList();\n  }\n\n  @Override\n  public List<NativeModule> createNativeModules(\n                              ReactApplicationContext reactContext) {\n    List<NativeModule> modules = new ArrayList<>();\n\n    modules.add(new GoModule(reactContext));\n\n    return modules;\n  }\n}"
  },
  {
    "path": "android/app/src/main/java/com/goreact/MainActivity.java",
    "content": "package com.goreact;\n\nimport android.content.Context;\nimport android.util.Log;\nimport android.widget.Toast;\nimport android.content.ContextWrapper;\n\nimport com.facebook.react.ReactActivity;\nimport com.facebook.react.ReactInstanceManager;\nimport com.facebook.react.ReactPackage;\nimport com.facebook.react.bridge.ReactApplicationContext;\nimport com.facebook.react.modules.core.DeviceEventManagerModule;\nimport com.facebook.react.shell.MainReactPackage;\n\nimport java.io.File;\nimport java.util.Arrays;\nimport java.util.List;\n\n\nimport demo.Demo;\n\npublic class MainActivity extends ReactActivity {\n\n    @Override\n    protected void onResume() {\n        super.onResume();\n        File dir = new ContextWrapper(this).getFilesDir();\n        Demo.writeFile(dir.getAbsolutePath());\n        Demo.startListening();\n\n    }\n\n    /**\n     * Returns the name of the main component registered from JavaScript.\n     * This is used to schedule rendering of the component.\n     */\n    @Override\n    protected String getMainComponentName() {\n        return \"GoReact\";\n    }\n\n    /**\n     * Returns whether dev mode should be enabled.\n     * This enables e.g. the dev menu.\n     */\n    @Override\n    protected boolean getUseDeveloperSupport() {\n        return BuildConfig.DEBUG;\n    }\n\n    /**\n     * A list of packages used by the app. If the app uses additional views\n     * or modules besides the default ones, add more packages here.\n     */\n    @Override\n    protected List<ReactPackage> getPackages() {\n        return Arrays.<ReactPackage>asList(\n            new MainReactPackage(),\n            new GoPackage()\n        );\n    }\n\n}\n"
  },
  {
    "path": "android/app/src/main/res/values/strings.xml",
    "content": "<resources>\n    <string name=\"app_name\">GoReact</string>\n</resources>\n"
  },
  {
    "path": "android/app/src/main/res/values/styles.xml",
    "content": "<resources>\n\n    <!-- Base application theme. -->\n    <style name=\"AppTheme\" parent=\"Theme.AppCompat.Light.NoActionBar\">\n        <!-- Customize your theme here. -->\n    </style>\n\n</resources>\n"
  },
  {
    "path": "android/build/intermediates/dex-cache/cache.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<items version=\"2\" >\n\n    <item\n        jar=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline-okhttp/0.8.1/jars/classes.jar\"\n        jumboMode=\"false\"\n        revision=\"23.0.1\"\n        sha1=\"0d5d69b03cb7d68b81543f6483ed04ccb0e2235b\">\n        <dex dex=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/pre-dexed/debug/classes-c768763f1b120d05733d68602c20b7c005725677.jar\" />\n    </item>\n    <item\n        jar=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.fresco/drawee/0.8.1/jars/classes.jar\"\n        jumboMode=\"false\"\n        revision=\"23.0.1\"\n        sha1=\"845a5b3a624946b2068963ba656c117fc453701c\">\n        <dex dex=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/pre-dexed/debug/classes-d2ba2ab47ebbf47dcfc6d7a103dae91e4ebb61e8.jar\" />\n    </item>\n    <item\n        jar=\"/Users/cmanus/code/src/github.com/sandbox/samples/GoReact/android/app/build/intermediates/exploded-aar/GoReact/demo/unspecified/jars/classes.jar\"\n        jumboMode=\"false\"\n        revision=\"23.0.1\"\n        sha1=\"aed0b7aa95476c8281b712e0ff44de918db568f0\">\n        <dex dex=\"/Users/cmanus/code/src/github.com/sandbox/samples/GoReact/android/app/build/intermediates/pre-dexed/debug/classes-d7c547928b5e37ee8966cf421e5d9906c81beb3f.jar\" />\n    </item>\n    <item\n        jar=\"/Users/cmanus/.gradle/caches/modules-2/files-2.1/com.parse.bolts/bolts-android/1.1.4/129874135e6081269ace2312092031558865de12/bolts-android-1.1.4.jar\"\n        jumboMode=\"false\"\n        revision=\"23.0.1\"\n        sha1=\"129874135e6081269ace2312092031558865de12\">\n        <dex dex=\"/Users/cmanus/code/src/github.com/sandbox/samples/GoReact/android/app/build/intermediates/pre-dexed/debug/bolts-android-1.1.4-b34502cf0ed4863255bc6fa8a34c31dcd0eb7240.jar\" />\n    </item>\n    <item\n        jar=\"/Users/cmanus/code/src/github.com/sandbox/samples/GoReact/android/app/build/intermediates/exploded-aar/com.android.support/support-v4/23.0.1/jars/classes.jar\"\n        jumboMode=\"false\"\n        revision=\"23.0.1\"\n        sha1=\"c31e21b53ff2f74664e498248d01453a32e32d48\">\n        <dex dex=\"/Users/cmanus/code/src/github.com/sandbox/samples/GoReact/android/app/build/intermediates/pre-dexed/debug/classes-9c6517b203377b909adf77bbf66dca2bd5890811.jar\" />\n    </item>\n    <item\n        jar=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/jars/classes.jar\"\n        jumboMode=\"false\"\n        revision=\"23.0.1\"\n        sha1=\"d86429b0f0b3f3cafbeb78dda1b9d89119ccb05d\">\n        <dex dex=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/pre-dexed/debug/classes-323a896789714803693ff18f5550a712a7bb8622.jar\" />\n    </item>\n    <item\n        jar=\"/Users/cmanus/code/src/github.com/sandbox/samples/GoReact/android/app/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline-okhttp/0.8.1/jars/classes.jar\"\n        jumboMode=\"false\"\n        revision=\"23.0.1\"\n        sha1=\"0d5d69b03cb7d68b81543f6483ed04ccb0e2235b\">\n        <dex dex=\"/Users/cmanus/code/src/github.com/sandbox/samples/GoReact/android/app/build/intermediates/pre-dexed/debug/classes-cb448f2f3193778fd2d9f069e811e365af2d15a1.jar\" />\n    </item>\n    <item\n        jar=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/jars/libs/infer-annotations-1.5.jar\"\n        jumboMode=\"false\"\n        revision=\"23.0.1\"\n        sha1=\"50bae83a0680cb90776a4d36bb6aa4911a84fd8b\">\n        <dex dex=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/pre-dexed/debug/infer-annotations-1.5-0b3ebc0795e9c94ab4b48dd573d6bcb46d2c242d.jar\" />\n    </item>\n    <item\n        jar=\"/Users/cmanus/.gradle/caches/modules-2/files-2.1/com.nineoldandroids/library/2.4.0/e9b63380f3a242dbdbf103a2355ad7e43bad17cb/library-2.4.0.jar\"\n        jumboMode=\"false\"\n        revision=\"23.0.1\"\n        sha1=\"e9b63380f3a242dbdbf103a2355ad7e43bad17cb\">\n        <dex dex=\"/Users/cmanus/code/src/github.com/sandbox/samples/GoReact/android/app/build/intermediates/pre-dexed/debug/library-2.4.0-62fd6e885126481b81f01777b0e4a419d732f18f.jar\" />\n    </item>\n    <item\n        jar=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/GoReact/demo/unspecified/jars/classes.jar\"\n        jumboMode=\"false\"\n        revision=\"23.0.1\"\n        sha1=\"929478fa8cb36c5726bae3abbce869628181584d\">\n        <dex dex=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/pre-dexed/debug/classes-9baa5304294656a3117467cabe0a4a4c1ed5dad7.jar\" />\n    </item>\n    <item\n        jar=\"/Users/cmanus/code/src/github.com/sandbox/samples/GoReact/android/app/build/intermediates/exploded-aar/com.android.support/support-v4/23.0.1/jars/libs/internal_impl-23.0.1.jar\"\n        jumboMode=\"false\"\n        revision=\"23.0.1\"\n        sha1=\"aa92916125166649d8ad4ba3940c3dd7515596d3\">\n        <dex dex=\"/Users/cmanus/code/src/github.com/sandbox/samples/GoReact/android/app/build/intermediates/pre-dexed/debug/internal_impl-23.0.1-d980146bef7cb93fe03dab14295ac26ab1900028.jar\" />\n    </item>\n    <item\n        jar=\"/Users/cmanus/code/src/github.com/sandbox/samples/GoReact/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/jars/libs/infer-annotations-1.5.jar\"\n        jumboMode=\"false\"\n        revision=\"23.0.1\"\n        sha1=\"50bae83a0680cb90776a4d36bb6aa4911a84fd8b\">\n        <dex dex=\"/Users/cmanus/code/src/github.com/sandbox/samples/GoReact/android/app/build/intermediates/pre-dexed/debug/infer-annotations-1.5-d1760cc7e9be7fc5eafe3e97ce8d79acbd3472e5.jar\" />\n    </item>\n    <item\n        jar=\"/Users/cmanus/.gradle/caches/modules-2/files-2.1/com.google.code.findbugs/jsr305/3.0.0/5871fb60dc68d67da54a663c3fd636a10a532948/jsr305-3.0.0.jar\"\n        jumboMode=\"false\"\n        revision=\"23.0.1\"\n        sha1=\"5871fb60dc68d67da54a663c3fd636a10a532948\">\n        <dex dex=\"/Users/cmanus/code/src/github.com/sandbox/samples/GoReact/android/app/build/intermediates/pre-dexed/debug/jsr305-3.0.0-a6475cec24aa4e4b7e8c7668c98e0c66f43ba953.jar\" />\n    </item>\n    <item\n        jar=\"/Users/cmanus/code/src/github.com/sandbox/samples/GoReact/android/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/jars/classes.jar\"\n        jumboMode=\"false\"\n        revision=\"23.0.1\"\n        sha1=\"d86429b0f0b3f3cafbeb78dda1b9d89119ccb05d\">\n        <dex dex=\"/Users/cmanus/code/src/github.com/sandbox/samples/GoReact/android/app/build/intermediates/pre-dexed/debug/classes-849dc0e0218a34bb00eece8983571e46234f2c56.jar\" />\n    </item>\n    <item\n        jar=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.fresco/fresco/0.8.1/jars/classes.jar\"\n        jumboMode=\"false\"\n        revision=\"23.0.1\"\n        sha1=\"9178570a3a28c95fabd3bc746cd68efe99ad2b47\">\n        <dex dex=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/pre-dexed/debug/classes-1f386f70fb006e74ebc51fa1f52ef0f5fd61e0a5.jar\" />\n    </item>\n    <item\n        jar=\"/Users/cmanus/code/src/github.com/sandbox/samples/GoReact/android/app/build/intermediates/exploded-aar/com.facebook.fresco/drawee/0.8.1/jars/classes.jar\"\n        jumboMode=\"false\"\n        revision=\"23.0.1\"\n        sha1=\"845a5b3a624946b2068963ba656c117fc453701c\">\n        <dex dex=\"/Users/cmanus/code/src/github.com/sandbox/samples/GoReact/android/app/build/intermediates/pre-dexed/debug/classes-5a79d9b57aefeaf8998abeb8a5153d143790d114.jar\" />\n    </item>\n    <item\n        jar=\"/Users/cmanus/.gradle/caches/modules-2/files-2.1/com.squareup.okio/okio/1.6.0/98476622f10715998eacf9240d6b479f12c66143/okio-1.6.0.jar\"\n        jumboMode=\"false\"\n        revision=\"23.0.1\"\n        sha1=\"98476622f10715998eacf9240d6b479f12c66143\">\n        <dex dex=\"/Users/cmanus/code/src/github.com/sandbox/samples/GoReact/android/app/build/intermediates/pre-dexed/debug/okio-1.6.0-19457862f890962d52b2a5fbbca41c484a1eac6e.jar\" />\n    </item>\n    <item\n        jar=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/recyclerview-v7/23.0.1/jars/classes.jar\"\n        jumboMode=\"false\"\n        revision=\"23.0.1\"\n        sha1=\"4356e230a981d1bbf047d848b91bc0d9b7c5bacc\">\n        <dex dex=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/pre-dexed/debug/classes-9ca5e1443c4d42316a19eb9098beeb32c6a438b9.jar\" />\n    </item>\n    <item\n        jar=\"/Users/cmanus/code/src/github.com/sandbox/samples/GoReact/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/jars/classes.jar\"\n        jumboMode=\"false\"\n        revision=\"23.0.1\"\n        sha1=\"d12931c7b260dda5ba99b8c89cd6ec2a104abed3\">\n        <dex dex=\"/Users/cmanus/code/src/github.com/sandbox/samples/GoReact/android/app/build/intermediates/pre-dexed/debug/classes-02ac1a361b1f1076c936f82632c600677ea8a585.jar\" />\n    </item>\n    <item\n        jar=\"/Users/cmanus/code/src/github.com/sandbox/samples/GoReact/android/app/build/intermediates/exploded-aar/com.facebook.fresco/fresco/0.8.1/jars/classes.jar\"\n        jumboMode=\"false\"\n        revision=\"23.0.1\"\n        sha1=\"9178570a3a28c95fabd3bc746cd68efe99ad2b47\">\n        <dex dex=\"/Users/cmanus/code/src/github.com/sandbox/samples/GoReact/android/app/build/intermediates/pre-dexed/debug/classes-4a384c9f4e4614f2184b408fa7e68efbbeeba259.jar\" />\n    </item>\n    <item\n        jar=\"/Users/cmanus/code/src/github.com/sandbox/samples/GoReact/android/app/build/intermediates/exploded-aar/com.android.support/recyclerview-v7/23.0.1/jars/classes.jar\"\n        jumboMode=\"false\"\n        revision=\"23.0.1\"\n        sha1=\"4356e230a981d1bbf047d848b91bc0d9b7c5bacc\">\n        <dex dex=\"/Users/cmanus/code/src/github.com/sandbox/samples/GoReact/android/app/build/intermediates/pre-dexed/debug/classes-4befdf7593517df43e4aeed367b18a37d6f44f2f.jar\" />\n    </item>\n    <item\n        jar=\"/Users/cmanus/code/src/github.com/sandbox/samples/GoReact/android/app/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/jars/classes.jar\"\n        jumboMode=\"false\"\n        revision=\"23.0.1\"\n        sha1=\"3836ecca4e31e18ea8fbae8e822d49777b0db4f7\">\n        <dex dex=\"/Users/cmanus/code/src/github.com/sandbox/samples/GoReact/android/app/build/intermediates/pre-dexed/debug/classes-5e2c670d83dea92b0f4fab2c0d3b7778a3008779.jar\" />\n    </item>\n    <item\n        jar=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.react/react-native/0.24.1/jars/classes.jar\"\n        jumboMode=\"false\"\n        revision=\"23.0.1\"\n        sha1=\"d12931c7b260dda5ba99b8c89cd6ec2a104abed3\">\n        <dex dex=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/pre-dexed/debug/classes-be7b57f4d1def316cd6e0cd611425c2d51712a5a.jar\" />\n    </item>\n    <item\n        jar=\"/Users/cmanus/Library/Android/sdk/extras/android/m2repository/com/android/support/support-annotations/23.0.1/support-annotations-23.0.1.jar\"\n        jumboMode=\"false\"\n        revision=\"23.0.1\"\n        sha1=\"1fce89a6428c51467090d7f424e4c9c3dbd55f7e\">\n        <dex dex=\"/Users/cmanus/code/src/github.com/sandbox/samples/GoReact/android/app/build/intermediates/pre-dexed/debug/support-annotations-23.0.1-3278e4cf5ddc541285821ec3509730967182d401.jar\" />\n    </item>\n    <item\n        jar=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.fresco/fbcore/0.8.1/jars/classes.jar\"\n        jumboMode=\"false\"\n        revision=\"23.0.1\"\n        sha1=\"4af24c040b21980e0a80a505816c648e36705bd9\">\n        <dex dex=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/pre-dexed/debug/classes-6b0ebbc33007be2ddc49380c5754e5be9f1743ba.jar\" />\n    </item>\n    <item\n        jar=\"/Users/cmanus/.gradle/caches/modules-2/files-2.1/com.squareup.okhttp/okhttp/2.5.0/4de2b4ed3445c37ec1720a7d214712e845a24636/okhttp-2.5.0.jar\"\n        jumboMode=\"false\"\n        revision=\"23.0.1\"\n        sha1=\"4de2b4ed3445c37ec1720a7d214712e845a24636\">\n        <dex dex=\"/Users/cmanus/code/src/github.com/sandbox/samples/GoReact/android/app/build/intermediates/pre-dexed/debug/okhttp-2.5.0-f69fe66b79fcfc3e445ca84e93eba3d214c5be20.jar\" />\n    </item>\n    <item\n        jar=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.facebook.fresco/imagepipeline/0.8.1/jars/classes.jar\"\n        jumboMode=\"false\"\n        revision=\"23.0.1\"\n        sha1=\"3836ecca4e31e18ea8fbae8e822d49777b0db4f7\">\n        <dex dex=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/pre-dexed/debug/classes-00b4e9be7edf0ac307f47c1b6f7ba664a5bfeb0d.jar\" />\n    </item>\n    <item\n        jar=\"/Users/cmanus/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-core/2.2.3/1a0113da2cab5f4c216b4e5e7c1dbfaa67087e14/jackson-core-2.2.3.jar\"\n        jumboMode=\"false\"\n        revision=\"23.0.1\"\n        sha1=\"1a0113da2cab5f4c216b4e5e7c1dbfaa67087e14\">\n        <dex dex=\"/Users/cmanus/code/src/github.com/sandbox/samples/GoReact/android/app/build/intermediates/pre-dexed/debug/jackson-core-2.2.3-a552dcbd2dffbb151fc31f14050f099683cf6186.jar\" />\n    </item>\n    <item\n        jar=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/support-v4/23.0.1/jars/classes.jar\"\n        jumboMode=\"false\"\n        revision=\"23.0.1\"\n        sha1=\"c31e21b53ff2f74664e498248d01453a32e32d48\">\n        <dex dex=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/pre-dexed/debug/classes-a0e88a26aec4de5159f7b6c6837db61587cdb692.jar\" />\n    </item>\n    <item\n        jar=\"/Users/cmanus/code/src/github.com/sandbox/samples/GoReact/android/app/build/intermediates/exploded-aar/com.facebook.fresco/fbcore/0.8.1/jars/classes.jar\"\n        jumboMode=\"false\"\n        revision=\"23.0.1\"\n        sha1=\"4af24c040b21980e0a80a505816c648e36705bd9\">\n        <dex dex=\"/Users/cmanus/code/src/github.com/sandbox/samples/GoReact/android/app/build/intermediates/pre-dexed/debug/classes-25fb0224929149a2eafe4d7f4ca55080e107abdc.jar\" />\n    </item>\n    <item\n        jar=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/exploded-aar/com.android.support/support-v4/23.0.1/jars/libs/internal_impl-23.0.1.jar\"\n        jumboMode=\"false\"\n        revision=\"23.0.1\"\n        sha1=\"aa92916125166649d8ad4ba3940c3dd7515596d3\">\n        <dex dex=\"/Users/cmanus/code/src/github.com/go-react-native/android/app/build/intermediates/pre-dexed/debug/internal_impl-23.0.1-75fac949aca984eca962670f419054ea3c113b58.jar\" />\n    </item>\n    <item\n        jar=\"/Users/cmanus/.gradle/caches/modules-2/files-2.1/com.squareup.okhttp/okhttp-ws/2.5.0/e9753b7dcae5deca92e871c5c759067070b07bc/okhttp-ws-2.5.0.jar\"\n        jumboMode=\"false\"\n        revision=\"23.0.1\"\n        sha1=\"0e9753b7dcae5deca92e871c5c759067070b07bc\">\n        <dex dex=\"/Users/cmanus/code/src/github.com/sandbox/samples/GoReact/android/app/build/intermediates/pre-dexed/debug/okhttp-ws-2.5.0-6b79c20511030c23c0508115328de9f671d96336.jar\" />\n    </item>\n\n</items>\n"
  },
  {
    "path": "android/build.gradle",
    "content": "// Top-level build file where you can add configuration options common to all sub-projects/modules.\n\nbuildscript {\n    repositories {\n        jcenter()\n    }\n    dependencies {\n        classpath 'com.android.tools.build:gradle:2.2.3'\n\n        // NOTE: Do not place your application dependencies here; they belong\n        // in the individual module build.gradle files\n    }\n}\n\nallprojects {\n    repositories {\n        mavenLocal()\n        jcenter()\n        maven {\n            // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm\n            url \"$projectDir/../../node_modules/react-native/android\"\n        }\n    }\n}\n"
  },
  {
    "path": "android/demo/build.gradle",
    "content": "configurations.create(\"default\")\nartifacts.add(\"default\", file('demo.aar'))"
  },
  {
    "path": "android/demo/demo.iml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<module external.linked.project.id=\":demo\" external.linked.project.path=\"$MODULE_DIR$\" external.root.project.path=\"$MODULE_DIR$/..\" external.system.id=\"GRADLE\" external.system.module.group=\"GoReact\" external.system.module.version=\"unspecified\" type=\"JAVA_MODULE\" version=\"4\">\n  <component name=\"FacetManager\">\n    <facet type=\"android-gradle\" name=\"Android-Gradle\">\n      <configuration>\n        <option name=\"GRADLE_PROJECT_PATH\" value=\":demo\" />\n      </configuration>\n    </facet>\n    <facet type=\"java-gradle\" name=\"Java-Gradle\">\n      <configuration>\n        <option name=\"BUILD_FOLDER_PATH\" value=\"$MODULE_DIR$/build\" />\n        <option name=\"BUILDABLE\" value=\"false\" />\n      </configuration>\n    </facet>\n  </component>\n  <component name=\"NewModuleRootManager\" LANGUAGE_LEVEL=\"JDK_1_7\" inherit-compiler-output=\"true\">\n    <exclude-output />\n    <content url=\"file://$MODULE_DIR$\">\n      <excludeFolder url=\"file://$MODULE_DIR$/.gradle\" />\n      <excludeFolder url=\"file://$MODULE_DIR$/build\" />\n    </content>\n    <orderEntry type=\"inheritedJdk\" />\n    <orderEntry type=\"sourceFolder\" forTests=\"false\" />\n  </component>\n</module>"
  },
  {
    "path": "android/gradle/wrapper/gradle-wrapper.properties",
    "content": "distributionBase=GRADLE_USER_HOME\ndistributionPath=wrapper/dists\nzipStoreBase=GRADLE_USER_HOME\nzipStorePath=wrapper/dists\ndistributionUrl=https\\://services.gradle.org/distributions/gradle-2.4-all.zip\n"
  },
  {
    "path": "android/gradle.properties",
    "content": "# Project-wide Gradle settings.\n\n# IDE (e.g. Android Studio) users:\n# Gradle settings configured through the IDE *will override*\n# any settings specified in this file.\n\n# For more details on how to configure your build environment visit\n# http://www.gradle.org/docs/current/userguide/build_environment.html\n\n# Specifies the JVM arguments used for the daemon process.\n# The setting is particularly useful for tweaking memory settings.\n# Default value: -Xmx10248m -XX:MaxPermSize=256m\n# org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8\n\n# When configured, Gradle will run in incubating parallel mode.\n# This option should only be used with decoupled projects. More details, visit\n# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects\n# org.gradle.parallel=true\n\nandroid.useDeprecatedNdk=true\n"
  },
  {
    "path": "android/gradlew",
    "content": "#!/usr/bin/env bash\n\n##############################################################################\n##\n##  Gradle start up script for UN*X\n##\n##############################################################################\n\n# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.\nDEFAULT_JVM_OPTS=\"\"\n\nAPP_NAME=\"Gradle\"\nAPP_BASE_NAME=`basename \"$0\"`\n\n# Use the maximum available, or set MAX_FD != -1 to use that value.\nMAX_FD=\"maximum\"\n\nwarn ( ) {\n    echo \"$*\"\n}\n\ndie ( ) {\n    echo\n    echo \"$*\"\n    echo\n    exit 1\n}\n\n# OS specific support (must be 'true' or 'false').\ncygwin=false\nmsys=false\ndarwin=false\ncase \"`uname`\" in\n  CYGWIN* )\n    cygwin=true\n    ;;\n  Darwin* )\n    darwin=true\n    ;;\n  MINGW* )\n    msys=true\n    ;;\nesac\n\n# For Cygwin, ensure paths are in UNIX format before anything is touched.\nif $cygwin ; then\n    [ -n \"$JAVA_HOME\" ] && JAVA_HOME=`cygpath --unix \"$JAVA_HOME\"`\nfi\n\n# Attempt to set APP_HOME\n# Resolve links: $0 may be a link\nPRG=\"$0\"\n# Need this for relative symlinks.\nwhile [ -h \"$PRG\" ] ; do\n    ls=`ls -ld \"$PRG\"`\n    link=`expr \"$ls\" : '.*-> \\(.*\\)$'`\n    if expr \"$link\" : '/.*' > /dev/null; then\n        PRG=\"$link\"\n    else\n        PRG=`dirname \"$PRG\"`\"/$link\"\n    fi\ndone\nSAVED=\"`pwd`\"\ncd \"`dirname \\\"$PRG\\\"`/\" >&-\nAPP_HOME=\"`pwd -P`\"\ncd \"$SAVED\" >&-\n\nCLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar\n\n# Determine the Java command to use to start the JVM.\nif [ -n \"$JAVA_HOME\" ] ; then\n    if [ -x \"$JAVA_HOME/jre/sh/java\" ] ; then\n        # IBM's JDK on AIX uses strange locations for the executables\n        JAVACMD=\"$JAVA_HOME/jre/sh/java\"\n    else\n        JAVACMD=\"$JAVA_HOME/bin/java\"\n    fi\n    if [ ! -x \"$JAVACMD\" ] ; then\n        die \"ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME\n\nPlease set the JAVA_HOME variable in your environment to match the\nlocation of your Java installation.\"\n    fi\nelse\n    JAVACMD=\"java\"\n    which java >/dev/null 2>&1 || die \"ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.\n\nPlease set the JAVA_HOME variable in your environment to match the\nlocation of your Java installation.\"\nfi\n\n# Increase the maximum file descriptors if we can.\nif [ \"$cygwin\" = \"false\" -a \"$darwin\" = \"false\" ] ; then\n    MAX_FD_LIMIT=`ulimit -H -n`\n    if [ $? -eq 0 ] ; then\n        if [ \"$MAX_FD\" = \"maximum\" -o \"$MAX_FD\" = \"max\" ] ; then\n            MAX_FD=\"$MAX_FD_LIMIT\"\n        fi\n        ulimit -n $MAX_FD\n        if [ $? -ne 0 ] ; then\n            warn \"Could not set maximum file descriptor limit: $MAX_FD\"\n        fi\n    else\n        warn \"Could not query maximum file descriptor limit: $MAX_FD_LIMIT\"\n    fi\nfi\n\n# For Darwin, add options to specify how the application appears in the dock\nif $darwin; then\n    GRADLE_OPTS=\"$GRADLE_OPTS \\\"-Xdock:name=$APP_NAME\\\" \\\"-Xdock:icon=$APP_HOME/media/gradle.icns\\\"\"\nfi\n\n# For Cygwin, switch paths to Windows format before running java\nif $cygwin ; then\n    APP_HOME=`cygpath --path --mixed \"$APP_HOME\"`\n    CLASSPATH=`cygpath --path --mixed \"$CLASSPATH\"`\n\n    # We build the pattern for arguments to be converted via cygpath\n    ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null`\n    SEP=\"\"\n    for dir in $ROOTDIRSRAW ; do\n        ROOTDIRS=\"$ROOTDIRS$SEP$dir\"\n        SEP=\"|\"\n    done\n    OURCYGPATTERN=\"(^($ROOTDIRS))\"\n    # Add a user-defined pattern to the cygpath arguments\n    if [ \"$GRADLE_CYGPATTERN\" != \"\" ] ; then\n        OURCYGPATTERN=\"$OURCYGPATTERN|($GRADLE_CYGPATTERN)\"\n    fi\n    # Now convert the arguments - kludge to limit ourselves to /bin/sh\n    i=0\n    for arg in \"$@\" ; do\n        CHECK=`echo \"$arg\"|egrep -c \"$OURCYGPATTERN\" -`\n        CHECK2=`echo \"$arg\"|egrep -c \"^-\"`                                 ### Determine if an option\n\n        if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then                    ### Added a condition\n            eval `echo args$i`=`cygpath --path --ignore --mixed \"$arg\"`\n        else\n            eval `echo args$i`=\"\\\"$arg\\\"\"\n        fi\n        i=$((i+1))\n    done\n    case $i in\n        (0) set -- ;;\n        (1) set -- \"$args0\" ;;\n        (2) set -- \"$args0\" \"$args1\" ;;\n        (3) set -- \"$args0\" \"$args1\" \"$args2\" ;;\n        (4) set -- \"$args0\" \"$args1\" \"$args2\" \"$args3\" ;;\n        (5) set -- \"$args0\" \"$args1\" \"$args2\" \"$args3\" \"$args4\" ;;\n        (6) set -- \"$args0\" \"$args1\" \"$args2\" \"$args3\" \"$args4\" \"$args5\" ;;\n        (7) set -- \"$args0\" \"$args1\" \"$args2\" \"$args3\" \"$args4\" \"$args5\" \"$args6\" ;;\n        (8) set -- \"$args0\" \"$args1\" \"$args2\" \"$args3\" \"$args4\" \"$args5\" \"$args6\" \"$args7\" ;;\n        (9) set -- \"$args0\" \"$args1\" \"$args2\" \"$args3\" \"$args4\" \"$args5\" \"$args6\" \"$args7\" \"$args8\" ;;\n    esac\nfi\n\n# Split up the JVM_OPTS And GRADLE_OPTS values into an array, following the shell quoting and substitution rules\nfunction splitJvmOpts() {\n    JVM_OPTS=(\"$@\")\n}\neval splitJvmOpts $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS\nJVM_OPTS[${#JVM_OPTS[*]}]=\"-Dorg.gradle.appname=$APP_BASE_NAME\"\n\nexec \"$JAVACMD\" \"${JVM_OPTS[@]}\" -classpath \"$CLASSPATH\" org.gradle.wrapper.GradleWrapperMain \"$@\"\n"
  },
  {
    "path": "android/gradlew.bat",
    "content": "@if \"%DEBUG%\" == \"\" @echo off\r\n@rem ##########################################################################\r\n@rem\r\n@rem  Gradle startup script for Windows\r\n@rem\r\n@rem ##########################################################################\r\n\r\n@rem Set local scope for the variables with windows NT shell\r\nif \"%OS%\"==\"Windows_NT\" setlocal\r\n\r\n@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.\r\nset DEFAULT_JVM_OPTS=\r\n\r\nset DIRNAME=%~dp0\r\nif \"%DIRNAME%\" == \"\" set DIRNAME=.\r\nset APP_BASE_NAME=%~n0\r\nset APP_HOME=%DIRNAME%\r\n\r\n@rem Find java.exe\r\nif defined JAVA_HOME goto findJavaFromJavaHome\r\n\r\nset JAVA_EXE=java.exe\r\n%JAVA_EXE% -version >NUL 2>&1\r\nif \"%ERRORLEVEL%\" == \"0\" goto init\r\n\r\necho.\r\necho ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.\r\necho.\r\necho Please set the JAVA_HOME variable in your environment to match the\r\necho location of your Java installation.\r\n\r\ngoto fail\r\n\r\n:findJavaFromJavaHome\r\nset JAVA_HOME=%JAVA_HOME:\"=%\r\nset JAVA_EXE=%JAVA_HOME%/bin/java.exe\r\n\r\nif exist \"%JAVA_EXE%\" goto init\r\n\r\necho.\r\necho ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%\r\necho.\r\necho Please set the JAVA_HOME variable in your environment to match the\r\necho location of your Java installation.\r\n\r\ngoto fail\r\n\r\n:init\r\n@rem Get command-line arguments, handling Windowz variants\r\n\r\nif not \"%OS%\" == \"Windows_NT\" goto win9xME_args\r\nif \"%@eval[2+2]\" == \"4\" goto 4NT_args\r\n\r\n:win9xME_args\r\n@rem Slurp the command line arguments.\r\nset CMD_LINE_ARGS=\r\nset _SKIP=2\r\n\r\n:win9xME_args_slurp\r\nif \"x%~1\" == \"x\" goto execute\r\n\r\nset CMD_LINE_ARGS=%*\r\ngoto execute\r\n\r\n:4NT_args\r\n@rem Get arguments from the 4NT Shell from JP Software\r\nset CMD_LINE_ARGS=%$\r\n\r\n:execute\r\n@rem Setup the command line\r\n\r\nset CLASSPATH=%APP_HOME%\\gradle\\wrapper\\gradle-wrapper.jar\r\n\r\n@rem Execute Gradle\r\n\"%JAVA_EXE%\" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% \"-Dorg.gradle.appname=%APP_BASE_NAME%\" -classpath \"%CLASSPATH%\" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS%\r\n\r\n:end\r\n@rem End local scope for the variables with windows NT shell\r\nif \"%ERRORLEVEL%\"==\"0\" goto mainEnd\r\n\r\n:fail\r\nrem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of\r\nrem the _cmd.exe /c_ return code!\r\nif  not \"\" == \"%GRADLE_EXIT_CONSOLE%\" exit 1\r\nexit /b 1\r\n\r\n:mainEnd\r\nif \"%OS%\"==\"Windows_NT\" endlocal\r\n\r\n:omega\r\n"
  },
  {
    "path": "android/keystores/BUCK",
    "content": "keystore(\n  name = 'debug',\n  store = 'debug.keystore',\n  properties = 'debug.keystore.properties',\n  visibility = [\n    'PUBLIC',\n  ],\n)\n"
  },
  {
    "path": "android/keystores/debug.keystore.properties",
    "content": "key.store=debug.keystore\nkey.alias=androiddebugkey\nkey.store.password=android\nkey.alias.password=android\n"
  },
  {
    "path": "android/local.properties",
    "content": "## This file is automatically generated by Android Studio.\n# Do not modify this file -- YOUR CHANGES WILL BE ERASED!\n#\n# This file must *NOT* be checked into Version Control Systems,\n# as it contains information specific to your local configuration.\n#\n# Location of the SDK. This is only used by Gradle.\n# For customization when using a Version Control System, please read the\n# header note.\n#Tue May 03 14:16:48 CDT 2016\nsdk.dir=/Users/cmanus/Library/Android/sdk\n"
  },
  {
    "path": "android/settings.gradle",
    "content": "rootProject.name = 'GoReact'\n\ninclude ':app', ':demo'\n"
  },
  {
    "path": "demo/Demo.framework/Versions/A/Headers/Demo.h",
    "content": "// Objective-C API for talking to github.com/go-react-native/demo Go package.\n//   gobind -lang=objc -prefix=Go github.com/go-react-native/demo\n//\n// File is generated by gobind. Do not edit.\n\n#ifndef __GoDemo_H__\n#define __GoDemo_H__\n\n#include <Foundation/Foundation.h>\n\n@protocol GoDemoEventBus;\n@class GoDemoEventBus;\n\n@protocol GoDemoEventBus\n- (void)sendEvent:(NSString*)channel message:(NSString*)message;\n@end\n\nFOUNDATION_EXPORT NSString* GoDemoHelloWorld(id<GoDemoEventBus> bus);\n\nFOUNDATION_EXPORT NSString* GoDemoReadFile(NSString* baseDir);\n\nFOUNDATION_EXPORT void GoDemoStartListening();\n\nFOUNDATION_EXPORT void GoDemoWriteFile(NSString* baseDir);\n\n@class GoDemoEventBus;\n\n@interface GoDemoEventBus : NSObject <GoDemoEventBus> {\n}\n@property(strong, readonly) id _ref;\n\n- (id)initWithRef:(id)ref;\n- (void)sendEvent:(NSString*)channel message:(NSString*)message;\n@end\n\n#endif\n"
  },
  {
    "path": "demo/Demo.framework/Versions/A/Modules/module.modulemap",
    "content": "framework module \"Demo\" {\n    header \"Demo.h\"\n\n    export *\n}"
  },
  {
    "path": "demo/Demo.framework/Versions/A/Resources/Info.plist",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n    <!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n    <plist version=\"1.0\">\n      <dict>\n      </dict>\n    </plist>\n"
  },
  {
    "path": "demo/demo.go",
    "content": "package demo\n\nimport (\n\t//\"encoding/json\"\n\t\"fmt\"\n\t\"golang.org/x/net/websocket\"\n\t\"io/ioutil\"\n\t\"net/http\"\n\t\"path/filepath\"\n\t\"time\"\n)\n\ntype EventBus interface {\n\tSendEvent(channel, message string)\n}\n\nfunc StartListening() {\n\tgo func() {\n\t\thttp.HandleFunc(\"/\", func(w http.ResponseWriter, r *http.Request) {\n\t\t\ttime.Sleep(time.Second * 2)\n\t\t\tfmt.Fprintln(w, \"Hello Http\")\n\n\t\t})\n\t\thttp.Handle(\"/websocket\", websocket.Handler(onWebSocket))\n\n\t\thttp.ListenAndServe(\":8080\", nil)\n\n\t}()\n}\nfunc onWebSocket(ws *websocket.Conn) {\n\tmessage := \"Hello Web Socket\"\n\twebsocket.Message.Send(ws, message)\n\n}\nfunc WriteFile(baseDir string) {\n\td1 := []byte(\"hello go\\n\")\n\tfile := filepath.Join(baseDir, \"test.txt\")\n\tioutil.WriteFile(file, d1, 0644)\n}\nfunc ReadFile(baseDir string) string {\n\tfile := filepath.Join(baseDir, \"test.txt\")\n\tbytes, _ := ioutil.ReadFile(file)\n\treturn string(bytes)\n}\n\nfunc HelloWorld(bus EventBus) string {\n\tgo func() {\n\t\ttime.Sleep(time.Second * 3)\n\t\tbus.SendEvent(\"general\", \"After 3 seconds!\")\n\t\ttime.Sleep(time.Second * 3)\n\t\tbus.SendEvent(\"general\", \"After 6 seconds!\")\n\t}()\n\treturn \"Hello Native Bridge\"\n}\n"
  },
  {
    "path": "index.android.js",
    "content": "/**\n * Sample React Native App\n * https://github.com/facebook/react-native\n */\n\nimport React, {\n  AppRegistry,\n  Component,\n  StyleSheet,\n  Text,\n  View,\n  NativeModules,\n  DeviceEventEmitter,\n  Alert\n} from 'react-native';\n\nclass GoReact extends Component {\n  constructor() {\n    super();\n    this.state = {};\n    DeviceEventEmitter.addListener('general', (message) => {\n      Alert.alert(\"From Go\", message);\n    });\n    fetch(\"http://localhost:8080/\").then((result) => {\n      return result.text();\n    }).then((text) => {\n      this.setState({ httpMessage: text });\n    });\n    var ws = new WebSocket('ws://localhost:8080/websocket');\n\n    ws.onopen = () => {\n      // connection opened\n      ws.send('something');\n    };\n\n    ws.onmessage = (e) => {\n      this.setState({ webSocketMessage: e.data });\n    };\n    NativeModules.Go.sayHello((data) => {\n      this.setState({nativeBridgeMessage: data});\n    });\n  }\n  render() {\n    return (\n      <View style={styles.container}>\n        <Text style={styles.welcome}>\n          From HTTP: {this.state.httpMessage}\n        </Text>\n        <Text style={styles.welcome}>\n          From WebSocket: {this.state.webSocketMessage}\n        </Text>\n         <Text style={styles.welcome}>\n          From Native Bridge: {this.state.nativeBridgeMessage}\n        </Text>\n      </View>\n    );\n  }\n}\n\nconst styles = StyleSheet.create({\n  container: {\n    flex: 1,\n    justifyContent: 'center',\n    alignItems: 'center',\n    backgroundColor: '#F5FCFF',\n  },\n  welcome: {\n    fontSize: 20,\n    textAlign: 'center',\n    margin: 10,\n  },\n  instructions: {\n    textAlign: 'center',\n    color: '#333333',\n    marginBottom: 5,\n  },\n});\n\nAppRegistry.registerComponent('GoReact', () => GoReact);\n"
  },
  {
    "path": "index.ios.js",
    "content": "/**\n * Sample React Native App\n * https://github.com/facebook/react-native\n */\n\nimport React, {\n  AppRegistry,\n  Component,\n  StyleSheet,\n  Text,\n  View,\n  NativeModules,\n  DeviceEventEmitter,\n  Alert\n} from 'react-native';\n\nclass GoReact extends Component {\n  constructor() {\n    super();\n    this.state = {};\n    DeviceEventEmitter.addListener('general', (message) => {\n      Alert.alert(\"From Go\", message);\n    });\n    fetch(\"http://localhost:8080/\").then((result) => {\n      return result.text();\n    }).then((text) => {\n      this.setState({ httpMessage: text });\n    });\n    var ws = new WebSocket('ws://localhost:8080/websocket');\n\n    ws.onopen = () => {\n      // connection opened\n      ws.send('something');\n    };\n\n    ws.onmessage = (e) => {\n      this.setState({ webSocketMessage: e.data });\n    };\n    NativeModules.Go.sayHello((data) => {\n      this.setState({nativeBridgeMessage: data});\n    });\n  }\n  render() {\n    return (\n      <View style={styles.container}>\n        <Text style={styles.welcome}>\n          From HTTP: {this.state.httpMessage}\n        </Text>\n        <Text style={styles.welcome}>\n          From WebSocket: {this.state.webSocketMessage}\n        </Text>\n         <Text style={styles.welcome}>\n          From Native Bridge: {this.state.nativeBridgeMessage}\n        </Text>\n      </View>\n    );\n  }\n}\n\nconst styles = StyleSheet.create({\n  container: {\n    flex: 1,\n    justifyContent: 'center',\n    alignItems: 'center',\n    backgroundColor: '#F5FCFF',\n  },\n  welcome: {\n    fontSize: 20,\n    textAlign: 'center',\n    margin: 10,\n  },\n  instructions: {\n    textAlign: 'center',\n    color: '#333333',\n    marginBottom: 5,\n  },\n});\n\nAppRegistry.registerComponent('GoReact', () => GoReact);\n"
  },
  {
    "path": "ios/Demo.framework/Versions/A/Headers/Demo.h",
    "content": "// Objective-C API for talking to github.com/go-react-native/demo Go package.\n//   gobind -lang=objc -prefix=Go github.com/go-react-native/demo\n//\n// File is generated by gobind. Do not edit.\n\n#ifndef __GoDemo_H__\n#define __GoDemo_H__\n\n#include <Foundation/Foundation.h>\n\n@protocol GoDemoEventBus;\n@class GoDemoEventBus;\n\n@protocol GoDemoEventBus\n- (void)sendEvent:(NSString*)channel message:(NSString*)message;\n@end\n\nFOUNDATION_EXPORT NSString* GoDemoHelloWorld(id<GoDemoEventBus> bus);\n\nFOUNDATION_EXPORT NSString* GoDemoReadFile(NSString* baseDir);\n\nFOUNDATION_EXPORT void GoDemoStartListening();\n\nFOUNDATION_EXPORT void GoDemoWriteFile(NSString* baseDir);\n\n@class GoDemoEventBus;\n\n@interface GoDemoEventBus : NSObject <GoDemoEventBus> {\n}\n@property(strong, readonly) id _ref;\n\n- (id)initWithRef:(id)ref;\n- (void)sendEvent:(NSString*)channel message:(NSString*)message;\n@end\n\n#endif\n"
  },
  {
    "path": "ios/Demo.framework/Versions/A/Modules/module.modulemap",
    "content": "framework module \"Demo\" {\n    header \"Demo.h\"\n\n    export *\n}"
  },
  {
    "path": "ios/Demo.framework/Versions/A/Resources/Info.plist",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n    <!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n    <plist version=\"1.0\">\n      <dict>\n      </dict>\n    </plist>\n"
  },
  {
    "path": "ios/GoReact/AppDelegate.h",
    "content": "/**\n * Copyright (c) 2015-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n */\n\n#import <UIKit/UIKit.h>\n#import \"Demo/Demo.h\"\n\n@interface AppDelegate : UIResponder <UIApplicationDelegate>\n\n@property (nonatomic, strong) UIWindow *window;\n\n@end\n"
  },
  {
    "path": "ios/GoReact/AppDelegate.m",
    "content": "/**\n * Copyright (c) 2015-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n */\n\n#import \"AppDelegate.h\"\n\n#import \"RCTRootView.h\"\n\n@implementation AppDelegate\n\n- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions\n{\n  NSURL *jsCodeLocation;\n  //dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{\n    GoDemoStartListening();\n  //});\n  NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);\n  NSString *dir = [paths objectAtIndex:0];\n  GoDemoWriteFile(dir);\n  NSLog(GoDemoReadFile(dir));\n\n  /**\n   * Loading JavaScript code - uncomment the one you want.\n   *\n   * OPTION 1\n   * Load from development server. Start the server from the repository root:\n   *\n   * $ npm start\n   *\n   * To run on device, change `localhost` to the IP address of your computer\n   * (you can get this by typing `ifconfig` into the terminal and selecting the\n   * `inet` value under `en0:`) and make sure your computer and iOS device are\n   * on the same Wi-Fi network.\n   */\n\n  jsCodeLocation = [NSURL URLWithString:@\"http://localhost:8081/index.ios.bundle?platform=ios&dev=true\"];\n\n  /**\n   * OPTION 2\n   * Load from pre-bundled file on disk. The static bundle is automatically\n   * generated by the \"Bundle React Native code and images\" build step when\n   * running the project on an actual device or running the project on the\n   * simulator in the \"Release\" build configuration.\n   */\n\n//   jsCodeLocation = [[NSBundle mainBundle] URLForResource:@\"main\" withExtension:@\"jsbundle\"];\n\n  RCTRootView *rootView = [[RCTRootView alloc] initWithBundleURL:jsCodeLocation\n                                                      moduleName:@\"GoReact\"\n                                               initialProperties:nil\n                                                   launchOptions:launchOptions];\n\n  self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds];\n  UIViewController *rootViewController = [UIViewController new];\n  rootViewController.view = rootView;\n  self.window.rootViewController = rootViewController;\n  [self.window makeKeyAndVisible];\n  return YES;\n}\n\n@end\n"
  },
  {
    "path": "ios/GoReact/Base.lproj/LaunchScreen.xib",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>\n<document type=\"com.apple.InterfaceBuilder3.CocoaTouch.XIB\" version=\"3.0\" toolsVersion=\"7702\" systemVersion=\"14D136\" targetRuntime=\"iOS.CocoaTouch\" propertyAccessControl=\"none\" useAutolayout=\"YES\" launchScreen=\"YES\" useTraitCollections=\"YES\">\n    <dependencies>\n        <deployment identifier=\"iOS\"/>\n        <plugIn identifier=\"com.apple.InterfaceBuilder.IBCocoaTouchPlugin\" version=\"7701\"/>\n        <capability name=\"Constraints with non-1.0 multipliers\" minToolsVersion=\"5.1\"/>\n    </dependencies>\n    <objects>\n        <placeholder placeholderIdentifier=\"IBFilesOwner\" id=\"-1\" userLabel=\"File's Owner\"/>\n        <placeholder placeholderIdentifier=\"IBFirstResponder\" id=\"-2\" customClass=\"UIResponder\"/>\n        <view contentMode=\"scaleToFill\" id=\"iN0-l3-epB\">\n            <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"480\" height=\"480\"/>\n            <autoresizingMask key=\"autoresizingMask\" widthSizable=\"YES\" heightSizable=\"YES\"/>\n            <subviews>\n                <label opaque=\"NO\" clipsSubviews=\"YES\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"Powered by React Native\" textAlignment=\"center\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" minimumFontSize=\"9\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"8ie-xW-0ye\">\n                    <rect key=\"frame\" x=\"20\" y=\"439\" width=\"441\" height=\"21\"/>\n                    <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"17\"/>\n                    <color key=\"textColor\" cocoaTouchSystemColor=\"darkTextColor\"/>\n                    <nil key=\"highlightedColor\"/>\n                </label>\n                <label opaque=\"NO\" clipsSubviews=\"YES\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"GoReact\" textAlignment=\"center\" lineBreakMode=\"middleTruncation\" baselineAdjustment=\"alignBaselines\" minimumFontSize=\"18\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"kId-c2-rCX\">\n                    <rect key=\"frame\" x=\"20\" y=\"140\" width=\"441\" height=\"43\"/>\n                    <fontDescription key=\"fontDescription\" type=\"boldSystem\" pointSize=\"36\"/>\n                    <color key=\"textColor\" cocoaTouchSystemColor=\"darkTextColor\"/>\n                    <nil key=\"highlightedColor\"/>\n                </label>\n            </subviews>\n            <color key=\"backgroundColor\" white=\"1\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"calibratedWhite\"/>\n            <constraints>\n                <constraint firstItem=\"kId-c2-rCX\" firstAttribute=\"centerY\" secondItem=\"iN0-l3-epB\" secondAttribute=\"bottom\" multiplier=\"1/3\" constant=\"1\" id=\"5cJ-9S-tgC\"/>\n                <constraint firstAttribute=\"centerX\" secondItem=\"kId-c2-rCX\" secondAttribute=\"centerX\" id=\"Koa-jz-hwk\"/>\n                <constraint firstAttribute=\"bottom\" secondItem=\"8ie-xW-0ye\" secondAttribute=\"bottom\" constant=\"20\" id=\"Kzo-t9-V3l\"/>\n                <constraint firstItem=\"8ie-xW-0ye\" firstAttribute=\"leading\" secondItem=\"iN0-l3-epB\" secondAttribute=\"leading\" constant=\"20\" symbolic=\"YES\" id=\"MfP-vx-nX0\"/>\n                <constraint firstAttribute=\"centerX\" secondItem=\"8ie-xW-0ye\" secondAttribute=\"centerX\" id=\"ZEH-qu-HZ9\"/>\n                <constraint firstItem=\"kId-c2-rCX\" firstAttribute=\"leading\" secondItem=\"iN0-l3-epB\" secondAttribute=\"leading\" constant=\"20\" symbolic=\"YES\" id=\"fvb-Df-36g\"/>\n            </constraints>\n            <nil key=\"simulatedStatusBarMetrics\"/>\n            <freeformSimulatedSizeMetrics key=\"simulatedDestinationMetrics\"/>\n            <point key=\"canvasLocation\" x=\"548\" y=\"455\"/>\n        </view>\n    </objects>\n</document>\n"
  },
  {
    "path": "ios/GoReact/Go.h",
    "content": "//\n//  Go.h\n//  GoReact\n//\n//  Created by Casey Manus on 5/25/16.\n//  Copyright © 2016 Facebook. All rights reserved.\n//\n\n#import \"RCTBridgeModule.h\"\n#import \"Demo/Demo.h\"\n\n@interface Go : NSObject <RCTBridgeModule, GoDemoEventBus>\n\n\n@end\n"
  },
  {
    "path": "ios/GoReact/Go.m",
    "content": "//\n//  Go.m\n//  GoReact\n//\n//  Created by Casey Manus on 5/25/16.\n//  Copyright © 2016 Facebook. All rights reserved.\n//\n\n#import \"Go.h\"\n#import \"RCTBridge.h\"\n#import \"RCTEventDispatcher.h\"\n\n@implementation Go\n\n@synthesize bridge = _bridge;\n\nRCT_EXPORT_MODULE();\n\nRCT_EXPORT_METHOD(sayHello:(RCTResponseSenderBlock)success){\n  success(@[GoDemoHelloWorld(self)]);\n}\n-(void)sendEvent:(NSString*)channel message:(NSString*)message{\n  [self.bridge.eventDispatcher sendDeviceEventWithName:channel body:message];\n}\n\n@end\n"
  },
  {
    "path": "ios/GoReact/Images.xcassets/AppIcon.appiconset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"idiom\" : \"iphone\",\n      \"size\" : \"29x29\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"iphone\",\n      \"size\" : \"29x29\",\n      \"scale\" : \"3x\"\n    },\n    {\n      \"idiom\" : \"iphone\",\n      \"size\" : \"40x40\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"iphone\",\n      \"size\" : \"40x40\",\n      \"scale\" : \"3x\"\n    },\n    {\n      \"idiom\" : \"iphone\",\n      \"size\" : \"60x60\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"iphone\",\n      \"size\" : \"60x60\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"version\" : 1,\n    \"author\" : \"xcode\"\n  }\n}"
  },
  {
    "path": "ios/GoReact/Info.plist",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<key>CFBundleDevelopmentRegion</key>\n\t<string>en</string>\n\t<key>CFBundleExecutable</key>\n\t<string>$(EXECUTABLE_NAME)</string>\n\t<key>CFBundleIdentifier</key>\n\t<string>org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)</string>\n\t<key>CFBundleInfoDictionaryVersion</key>\n\t<string>6.0</string>\n\t<key>CFBundleName</key>\n\t<string>$(PRODUCT_NAME)</string>\n\t<key>CFBundlePackageType</key>\n\t<string>APPL</string>\n\t<key>CFBundleShortVersionString</key>\n\t<string>1.0</string>\n\t<key>CFBundleSignature</key>\n\t<string>????</string>\n\t<key>CFBundleVersion</key>\n\t<string>1</string>\n\t<key>LSRequiresIPhoneOS</key>\n\t<true/>\n\t<key>UILaunchStoryboardName</key>\n\t<string>LaunchScreen</string>\n\t<key>UIRequiredDeviceCapabilities</key>\n\t<array>\n\t\t<string>armv7</string>\n\t</array>\n\t<key>UISupportedInterfaceOrientations</key>\n\t<array>\n\t\t<string>UIInterfaceOrientationPortrait</string>\n\t\t<string>UIInterfaceOrientationLandscapeLeft</string>\n\t\t<string>UIInterfaceOrientationLandscapeRight</string>\n\t</array>\n\t<key>UIViewControllerBasedStatusBarAppearance</key>\n\t<false/>\n\t<key>NSLocationWhenInUseUsageDescription</key>\n\t<string></string>\n  <key>NSAppTransportSecurity</key>\n  <dict>\n    <!--See http://ste.vn/2015/06/10/configuring-app-transport-security-ios-9-osx-10-11/ -->\n    <key>NSAllowsArbitraryLoads</key>\n    <true/>\n  </dict>\n</dict>\n</plist>\n"
  },
  {
    "path": "ios/GoReact/main.m",
    "content": "/**\n * Copyright (c) 2015-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n */\n\n#import <UIKit/UIKit.h>\n\n#import \"AppDelegate.h\"\n\nint main(int argc, char * argv[]) {\n  @autoreleasepool {\n    return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));\n  }\n}\n"
  },
  {
    "path": "ios/GoReact.xcodeproj/project.pbxproj",
    "content": "// !$*UTF8*$!\n{\n\tarchiveVersion = 1;\n\tclasses = {\n\t};\n\tobjectVersion = 46;\n\tobjects = {\n\n/* Begin PBXBuildFile section */\n\t\t00C302E51ABCBA2D00DB3ED1 /* libRCTActionSheet.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */; };\n\t\t00C302E71ABCBA2D00DB3ED1 /* libRCTGeolocation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */; };\n\t\t00C302E81ABCBA2D00DB3ED1 /* libRCTImage.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */; };\n\t\t00C302E91ABCBA2D00DB3ED1 /* libRCTNetwork.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */; };\n\t\t00C302EA1ABCBA2D00DB3ED1 /* libRCTVibration.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */; };\n\t\t00E356F31AD99517003FC87E /* GoReactTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* GoReactTests.m */; };\n\t\t133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 78C398B91ACF4ADC00677621 /* libRCTLinking.a */; };\n\t\t139105C61AF99C1200B5F7CC /* libRCTSettings.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */; };\n\t\t139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */; };\n\t\t13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; };\n\t\t13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB11A68108700A75B9A /* LaunchScreen.xib */; };\n\t\t13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };\n\t\t13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };\n\t\t146834051AC3E58100842450 /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 146834041AC3E56700842450 /* libReact.a */; };\n\t\t602216491CF64504002C4206 /* Go.m in Sources */ = {isa = PBXBuildFile; fileRef = 602216481CF64504002C4206 /* Go.m */; };\n\t\t832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 832341B51AAA6A8300B99B32 /* libRCTText.a */; };\n\t\tEF8E500C1CC8279600F34571 /* Demo.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EF8E500B1CC8279600F34571 /* Demo.framework */; };\n/* End PBXBuildFile section */\n\n/* Begin PBXContainerItemProxy section */\n\t\t00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */ = {\n\t\t\tisa = PBXContainerItemProxy;\n\t\t\tcontainerPortal = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */;\n\t\t\tproxyType = 2;\n\t\t\tremoteGlobalIDString = 134814201AA4EA6300B7C361;\n\t\t\tremoteInfo = RCTActionSheet;\n\t\t};\n\t\t00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */ = {\n\t\t\tisa = PBXContainerItemProxy;\n\t\t\tcontainerPortal = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */;\n\t\t\tproxyType = 2;\n\t\t\tremoteGlobalIDString = 134814201AA4EA6300B7C361;\n\t\t\tremoteInfo = RCTGeolocation;\n\t\t};\n\t\t00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */ = {\n\t\t\tisa = PBXContainerItemProxy;\n\t\t\tcontainerPortal = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */;\n\t\t\tproxyType = 2;\n\t\t\tremoteGlobalIDString = 58B5115D1A9E6B3D00147676;\n\t\t\tremoteInfo = RCTImage;\n\t\t};\n\t\t00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */ = {\n\t\t\tisa = PBXContainerItemProxy;\n\t\t\tcontainerPortal = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */;\n\t\t\tproxyType = 2;\n\t\t\tremoteGlobalIDString = 58B511DB1A9E6C8500147676;\n\t\t\tremoteInfo = RCTNetwork;\n\t\t};\n\t\t00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */ = {\n\t\t\tisa = PBXContainerItemProxy;\n\t\t\tcontainerPortal = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */;\n\t\t\tproxyType = 2;\n\t\t\tremoteGlobalIDString = 832C81801AAF6DEF007FA2F7;\n\t\t\tremoteInfo = RCTVibration;\n\t\t};\n\t\t00E356F41AD99517003FC87E /* PBXContainerItemProxy */ = {\n\t\t\tisa = PBXContainerItemProxy;\n\t\t\tcontainerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */;\n\t\t\tproxyType = 1;\n\t\t\tremoteGlobalIDString = 13B07F861A680F5B00A75B9A;\n\t\t\tremoteInfo = GoReact;\n\t\t};\n\t\t139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */ = {\n\t\t\tisa = PBXContainerItemProxy;\n\t\t\tcontainerPortal = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */;\n\t\t\tproxyType = 2;\n\t\t\tremoteGlobalIDString = 134814201AA4EA6300B7C361;\n\t\t\tremoteInfo = RCTSettings;\n\t\t};\n\t\t139FDEF31B06529B00C62182 /* PBXContainerItemProxy */ = {\n\t\t\tisa = PBXContainerItemProxy;\n\t\t\tcontainerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */;\n\t\t\tproxyType = 2;\n\t\t\tremoteGlobalIDString = 3C86DF461ADF2C930047B81A;\n\t\t\tremoteInfo = RCTWebSocket;\n\t\t};\n\t\t146834031AC3E56700842450 /* PBXContainerItemProxy */ = {\n\t\t\tisa = PBXContainerItemProxy;\n\t\t\tcontainerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;\n\t\t\tproxyType = 2;\n\t\t\tremoteGlobalIDString = 83CBBA2E1A601D0E00E9B192;\n\t\t\tremoteInfo = React;\n\t\t};\n\t\t78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */ = {\n\t\t\tisa = PBXContainerItemProxy;\n\t\t\tcontainerPortal = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */;\n\t\t\tproxyType = 2;\n\t\t\tremoteGlobalIDString = 134814201AA4EA6300B7C361;\n\t\t\tremoteInfo = RCTLinking;\n\t\t};\n\t\t832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */ = {\n\t\t\tisa = PBXContainerItemProxy;\n\t\t\tcontainerPortal = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */;\n\t\t\tproxyType = 2;\n\t\t\tremoteGlobalIDString = 58B5119B1A9E6C1200147676;\n\t\t\tremoteInfo = RCTText;\n\t\t};\n/* End PBXContainerItemProxy section */\n\n/* Begin PBXFileReference section */\n\t\t008F07F21AC5B25A0029DE68 /* main.jsbundle */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = main.jsbundle; sourceTree = \"<group>\"; };\n\t\t00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = \"wrapper.pb-project\"; name = RCTActionSheet.xcodeproj; path = \"../node_modules/react-native/Libraries/ActionSheetIOS/RCTActionSheet.xcodeproj\"; sourceTree = \"<group>\"; };\n\t\t00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = \"wrapper.pb-project\"; name = RCTGeolocation.xcodeproj; path = \"../node_modules/react-native/Libraries/Geolocation/RCTGeolocation.xcodeproj\"; sourceTree = \"<group>\"; };\n\t\t00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = \"wrapper.pb-project\"; name = RCTImage.xcodeproj; path = \"../node_modules/react-native/Libraries/Image/RCTImage.xcodeproj\"; sourceTree = \"<group>\"; };\n\t\t00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = \"wrapper.pb-project\"; name = RCTNetwork.xcodeproj; path = \"../node_modules/react-native/Libraries/Network/RCTNetwork.xcodeproj\"; sourceTree = \"<group>\"; };\n\t\t00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = \"wrapper.pb-project\"; name = RCTVibration.xcodeproj; path = \"../node_modules/react-native/Libraries/Vibration/RCTVibration.xcodeproj\"; sourceTree = \"<group>\"; };\n\t\t00E356EE1AD99517003FC87E /* GoReactTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = GoReactTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };\n\t\t00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = \"<group>\"; };\n\t\t00E356F21AD99517003FC87E /* GoReactTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = GoReactTests.m; sourceTree = \"<group>\"; };\n\t\t139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = \"wrapper.pb-project\"; name = RCTSettings.xcodeproj; path = \"../node_modules/react-native/Libraries/Settings/RCTSettings.xcodeproj\"; sourceTree = \"<group>\"; };\n\t\t139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = \"wrapper.pb-project\"; name = RCTWebSocket.xcodeproj; path = \"../node_modules/react-native/Libraries/WebSocket/RCTWebSocket.xcodeproj\"; sourceTree = \"<group>\"; };\n\t\t13B07F961A680F5B00A75B9A /* GoReact.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = GoReact.app; sourceTree = BUILT_PRODUCTS_DIR; };\n\t\t13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = GoReact/AppDelegate.h; sourceTree = \"<group>\"; };\n\t\t13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = GoReact/AppDelegate.m; sourceTree = \"<group>\"; };\n\t\t13B07FB21A68108700A75B9A /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = \"<group>\"; };\n\t\t13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = GoReact/Images.xcassets; sourceTree = \"<group>\"; };\n\t\t13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = GoReact/Info.plist; sourceTree = \"<group>\"; };\n\t\t13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = GoReact/main.m; sourceTree = \"<group>\"; };\n\t\t146833FF1AC3E56700842450 /* React.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = \"wrapper.pb-project\"; name = React.xcodeproj; path = \"../node_modules/react-native/React/React.xcodeproj\"; sourceTree = \"<group>\"; };\n\t\t602216471CF64504002C4206 /* Go.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Go.h; path = GoReact/Go.h; sourceTree = \"<group>\"; };\n\t\t602216481CF64504002C4206 /* Go.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = Go.m; path = GoReact/Go.m; sourceTree = \"<group>\"; };\n\t\t78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = \"wrapper.pb-project\"; name = RCTLinking.xcodeproj; path = \"../node_modules/react-native/Libraries/LinkingIOS/RCTLinking.xcodeproj\"; sourceTree = \"<group>\"; };\n\t\t832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = \"wrapper.pb-project\"; name = RCTText.xcodeproj; path = \"../node_modules/react-native/Libraries/Text/RCTText.xcodeproj\"; sourceTree = \"<group>\"; };\n\t\tEF8E500B1CC8279600F34571 /* Demo.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = Demo.framework; sourceTree = \"<group>\"; };\n/* End PBXFileReference section */\n\n/* Begin PBXFrameworksBuildPhase section */\n\t\t00E356EB1AD99517003FC87E /* Frameworks */ = {\n\t\t\tisa = PBXFrameworksBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\t13B07F8C1A680F5B00A75B9A /* Frameworks */ = {\n\t\t\tisa = PBXFrameworksBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t146834051AC3E58100842450 /* libReact.a in Frameworks */,\n\t\t\t\t00C302E51ABCBA2D00DB3ED1 /* libRCTActionSheet.a in Frameworks */,\n\t\t\t\t00C302E71ABCBA2D00DB3ED1 /* libRCTGeolocation.a in Frameworks */,\n\t\t\t\t00C302E81ABCBA2D00DB3ED1 /* libRCTImage.a in Frameworks */,\n\t\t\t\t133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */,\n\t\t\t\t00C302E91ABCBA2D00DB3ED1 /* libRCTNetwork.a in Frameworks */,\n\t\t\t\t139105C61AF99C1200B5F7CC /* libRCTSettings.a in Frameworks */,\n\t\t\t\tEF8E500C1CC8279600F34571 /* Demo.framework in Frameworks */,\n\t\t\t\t832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */,\n\t\t\t\t00C302EA1ABCBA2D00DB3ED1 /* libRCTVibration.a in Frameworks */,\n\t\t\t\t139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n/* End PBXFrameworksBuildPhase section */\n\n/* Begin PBXGroup section */\n\t\t00C302A81ABCB8CE00DB3ED1 /* Products */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */,\n\t\t\t);\n\t\t\tname = Products;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t00C302B61ABCB90400DB3ED1 /* Products */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */,\n\t\t\t);\n\t\t\tname = Products;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t00C302BC1ABCB91800DB3ED1 /* Products */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t00C302C01ABCB91800DB3ED1 /* libRCTImage.a */,\n\t\t\t);\n\t\t\tname = Products;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t00C302D41ABCB9D200DB3ED1 /* Products */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */,\n\t\t\t);\n\t\t\tname = Products;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t00C302E01ABCB9EE00DB3ED1 /* Products */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */,\n\t\t\t);\n\t\t\tname = Products;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t00E356EF1AD99517003FC87E /* GoReactTests */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t00E356F21AD99517003FC87E /* GoReactTests.m */,\n\t\t\t\t00E356F01AD99517003FC87E /* Supporting Files */,\n\t\t\t);\n\t\t\tpath = GoReactTests;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t00E356F01AD99517003FC87E /* Supporting Files */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t00E356F11AD99517003FC87E /* Info.plist */,\n\t\t\t);\n\t\t\tname = \"Supporting Files\";\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t139105B71AF99BAD00B5F7CC /* Products */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t139105C11AF99BAD00B5F7CC /* libRCTSettings.a */,\n\t\t\t);\n\t\t\tname = Products;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t139FDEE71B06529A00C62182 /* Products */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t139FDEF41B06529B00C62182 /* libRCTWebSocket.a */,\n\t\t\t);\n\t\t\tname = Products;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t13B07FAE1A68108700A75B9A /* GoReact */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t008F07F21AC5B25A0029DE68 /* main.jsbundle */,\n\t\t\t\t13B07FAF1A68108700A75B9A /* AppDelegate.h */,\n\t\t\t\t13B07FB01A68108700A75B9A /* AppDelegate.m */,\n\t\t\t\t13B07FB51A68108700A75B9A /* Images.xcassets */,\n\t\t\t\t13B07FB61A68108700A75B9A /* Info.plist */,\n\t\t\t\t13B07FB11A68108700A75B9A /* LaunchScreen.xib */,\n\t\t\t\t13B07FB71A68108700A75B9A /* main.m */,\n\t\t\t\t602216471CF64504002C4206 /* Go.h */,\n\t\t\t\t602216481CF64504002C4206 /* Go.m */,\n\t\t\t);\n\t\t\tname = GoReact;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t146834001AC3E56700842450 /* Products */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t146834041AC3E56700842450 /* libReact.a */,\n\t\t\t);\n\t\t\tname = Products;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t78C398B11ACF4ADC00677621 /* Products */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t78C398B91ACF4ADC00677621 /* libRCTLinking.a */,\n\t\t\t);\n\t\t\tname = Products;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t832341AE1AAA6A7D00B99B32 /* Libraries */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tEF8E500B1CC8279600F34571 /* Demo.framework */,\n\t\t\t\t146833FF1AC3E56700842450 /* React.xcodeproj */,\n\t\t\t\t00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */,\n\t\t\t\t00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */,\n\t\t\t\t00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */,\n\t\t\t\t78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */,\n\t\t\t\t00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */,\n\t\t\t\t139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */,\n\t\t\t\t832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */,\n\t\t\t\t00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */,\n\t\t\t\t139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */,\n\t\t\t);\n\t\t\tname = Libraries;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t832341B11AAA6A8300B99B32 /* Products */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t832341B51AAA6A8300B99B32 /* libRCTText.a */,\n\t\t\t);\n\t\t\tname = Products;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t83CBB9F61A601CBA00E9B192 = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t13B07FAE1A68108700A75B9A /* GoReact */,\n\t\t\t\t832341AE1AAA6A7D00B99B32 /* Libraries */,\n\t\t\t\t00E356EF1AD99517003FC87E /* GoReactTests */,\n\t\t\t\t83CBBA001A601CBA00E9B192 /* Products */,\n\t\t\t);\n\t\t\tindentWidth = 2;\n\t\t\tsourceTree = \"<group>\";\n\t\t\ttabWidth = 2;\n\t\t};\n\t\t83CBBA001A601CBA00E9B192 /* Products */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t13B07F961A680F5B00A75B9A /* GoReact.app */,\n\t\t\t\t00E356EE1AD99517003FC87E /* GoReactTests.xctest */,\n\t\t\t);\n\t\t\tname = Products;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n/* End PBXGroup section */\n\n/* Begin PBXNativeTarget section */\n\t\t00E356ED1AD99517003FC87E /* GoReactTests */ = {\n\t\t\tisa = PBXNativeTarget;\n\t\t\tbuildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget \"GoReactTests\" */;\n\t\t\tbuildPhases = (\n\t\t\t\t00E356EA1AD99517003FC87E /* Sources */,\n\t\t\t\t00E356EB1AD99517003FC87E /* Frameworks */,\n\t\t\t\t00E356EC1AD99517003FC87E /* Resources */,\n\t\t\t);\n\t\t\tbuildRules = (\n\t\t\t);\n\t\t\tdependencies = (\n\t\t\t\t00E356F51AD99517003FC87E /* PBXTargetDependency */,\n\t\t\t);\n\t\t\tname = GoReactTests;\n\t\t\tproductName = GoReactTests;\n\t\t\tproductReference = 00E356EE1AD99517003FC87E /* GoReactTests.xctest */;\n\t\t\tproductType = \"com.apple.product-type.bundle.unit-test\";\n\t\t};\n\t\t13B07F861A680F5B00A75B9A /* GoReact */ = {\n\t\t\tisa = PBXNativeTarget;\n\t\t\tbuildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget \"GoReact\" */;\n\t\t\tbuildPhases = (\n\t\t\t\t13B07F871A680F5B00A75B9A /* Sources */,\n\t\t\t\t13B07F8C1A680F5B00A75B9A /* Frameworks */,\n\t\t\t\t13B07F8E1A680F5B00A75B9A /* Resources */,\n\t\t\t\t00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */,\n\t\t\t);\n\t\t\tbuildRules = (\n\t\t\t);\n\t\t\tdependencies = (\n\t\t\t);\n\t\t\tname = GoReact;\n\t\t\tproductName = \"Hello World\";\n\t\t\tproductReference = 13B07F961A680F5B00A75B9A /* GoReact.app */;\n\t\t\tproductType = \"com.apple.product-type.application\";\n\t\t};\n/* End PBXNativeTarget section */\n\n/* Begin PBXProject section */\n\t\t83CBB9F71A601CBA00E9B192 /* Project object */ = {\n\t\t\tisa = PBXProject;\n\t\t\tattributes = {\n\t\t\t\tLastUpgradeCheck = 0610;\n\t\t\t\tORGANIZATIONNAME = Facebook;\n\t\t\t\tTargetAttributes = {\n\t\t\t\t\t00E356ED1AD99517003FC87E = {\n\t\t\t\t\t\tCreatedOnToolsVersion = 6.2;\n\t\t\t\t\t\tTestTargetID = 13B07F861A680F5B00A75B9A;\n\t\t\t\t\t};\n\t\t\t\t};\n\t\t\t};\n\t\t\tbuildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject \"GoReact\" */;\n\t\t\tcompatibilityVersion = \"Xcode 3.2\";\n\t\t\tdevelopmentRegion = English;\n\t\t\thasScannedForEncodings = 0;\n\t\t\tknownRegions = (\n\t\t\t\ten,\n\t\t\t\tBase,\n\t\t\t);\n\t\t\tmainGroup = 83CBB9F61A601CBA00E9B192;\n\t\t\tproductRefGroup = 83CBBA001A601CBA00E9B192 /* Products */;\n\t\t\tprojectDirPath = \"\";\n\t\t\tprojectReferences = (\n\t\t\t\t{\n\t\t\t\t\tProductGroup = 00C302A81ABCB8CE00DB3ED1 /* Products */;\n\t\t\t\t\tProjectRef = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */;\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tProductGroup = 00C302B61ABCB90400DB3ED1 /* Products */;\n\t\t\t\t\tProjectRef = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */;\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tProductGroup = 00C302BC1ABCB91800DB3ED1 /* Products */;\n\t\t\t\t\tProjectRef = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */;\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tProductGroup = 78C398B11ACF4ADC00677621 /* Products */;\n\t\t\t\t\tProjectRef = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */;\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tProductGroup = 00C302D41ABCB9D200DB3ED1 /* Products */;\n\t\t\t\t\tProjectRef = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */;\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tProductGroup = 139105B71AF99BAD00B5F7CC /* Products */;\n\t\t\t\t\tProjectRef = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */;\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tProductGroup = 832341B11AAA6A8300B99B32 /* Products */;\n\t\t\t\t\tProjectRef = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */;\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tProductGroup = 00C302E01ABCB9EE00DB3ED1 /* Products */;\n\t\t\t\t\tProjectRef = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */;\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tProductGroup = 139FDEE71B06529A00C62182 /* Products */;\n\t\t\t\t\tProjectRef = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */;\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tProductGroup = 146834001AC3E56700842450 /* Products */;\n\t\t\t\t\tProjectRef = 146833FF1AC3E56700842450 /* React.xcodeproj */;\n\t\t\t\t},\n\t\t\t);\n\t\t\tprojectRoot = \"\";\n\t\t\ttargets = (\n\t\t\t\t13B07F861A680F5B00A75B9A /* GoReact */,\n\t\t\t\t00E356ED1AD99517003FC87E /* GoReactTests */,\n\t\t\t);\n\t\t};\n/* End PBXProject section */\n\n/* Begin PBXReferenceProxy section */\n\t\t00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */ = {\n\t\t\tisa = PBXReferenceProxy;\n\t\t\tfileType = archive.ar;\n\t\t\tpath = libRCTActionSheet.a;\n\t\t\tremoteRef = 00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */;\n\t\t\tsourceTree = BUILT_PRODUCTS_DIR;\n\t\t};\n\t\t00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */ = {\n\t\t\tisa = PBXReferenceProxy;\n\t\t\tfileType = archive.ar;\n\t\t\tpath = libRCTGeolocation.a;\n\t\t\tremoteRef = 00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */;\n\t\t\tsourceTree = BUILT_PRODUCTS_DIR;\n\t\t};\n\t\t00C302C01ABCB91800DB3ED1 /* libRCTImage.a */ = {\n\t\t\tisa = PBXReferenceProxy;\n\t\t\tfileType = archive.ar;\n\t\t\tpath = libRCTImage.a;\n\t\t\tremoteRef = 00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */;\n\t\t\tsourceTree = BUILT_PRODUCTS_DIR;\n\t\t};\n\t\t00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */ = {\n\t\t\tisa = PBXReferenceProxy;\n\t\t\tfileType = archive.ar;\n\t\t\tpath = libRCTNetwork.a;\n\t\t\tremoteRef = 00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */;\n\t\t\tsourceTree = BUILT_PRODUCTS_DIR;\n\t\t};\n\t\t00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */ = {\n\t\t\tisa = PBXReferenceProxy;\n\t\t\tfileType = archive.ar;\n\t\t\tpath = libRCTVibration.a;\n\t\t\tremoteRef = 00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */;\n\t\t\tsourceTree = BUILT_PRODUCTS_DIR;\n\t\t};\n\t\t139105C11AF99BAD00B5F7CC /* libRCTSettings.a */ = {\n\t\t\tisa = PBXReferenceProxy;\n\t\t\tfileType = archive.ar;\n\t\t\tpath = libRCTSettings.a;\n\t\t\tremoteRef = 139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */;\n\t\t\tsourceTree = BUILT_PRODUCTS_DIR;\n\t\t};\n\t\t139FDEF41B06529B00C62182 /* libRCTWebSocket.a */ = {\n\t\t\tisa = PBXReferenceProxy;\n\t\t\tfileType = archive.ar;\n\t\t\tpath = libRCTWebSocket.a;\n\t\t\tremoteRef = 139FDEF31B06529B00C62182 /* PBXContainerItemProxy */;\n\t\t\tsourceTree = BUILT_PRODUCTS_DIR;\n\t\t};\n\t\t146834041AC3E56700842450 /* libReact.a */ = {\n\t\t\tisa = PBXReferenceProxy;\n\t\t\tfileType = archive.ar;\n\t\t\tpath = libReact.a;\n\t\t\tremoteRef = 146834031AC3E56700842450 /* PBXContainerItemProxy */;\n\t\t\tsourceTree = BUILT_PRODUCTS_DIR;\n\t\t};\n\t\t78C398B91ACF4ADC00677621 /* libRCTLinking.a */ = {\n\t\t\tisa = PBXReferenceProxy;\n\t\t\tfileType = archive.ar;\n\t\t\tpath = libRCTLinking.a;\n\t\t\tremoteRef = 78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */;\n\t\t\tsourceTree = BUILT_PRODUCTS_DIR;\n\t\t};\n\t\t832341B51AAA6A8300B99B32 /* libRCTText.a */ = {\n\t\t\tisa = PBXReferenceProxy;\n\t\t\tfileType = archive.ar;\n\t\t\tpath = libRCTText.a;\n\t\t\tremoteRef = 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */;\n\t\t\tsourceTree = BUILT_PRODUCTS_DIR;\n\t\t};\n/* End PBXReferenceProxy section */\n\n/* Begin PBXResourcesBuildPhase section */\n\t\t00E356EC1AD99517003FC87E /* Resources */ = {\n\t\t\tisa = PBXResourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\t13B07F8E1A680F5B00A75B9A /* Resources */ = {\n\t\t\tisa = PBXResourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */,\n\t\t\t\t13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n/* End PBXResourcesBuildPhase section */\n\n/* Begin PBXShellScriptBuildPhase section */\n\t\t00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = {\n\t\t\tisa = PBXShellScriptBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t);\n\t\t\tinputPaths = (\n\t\t\t);\n\t\t\tname = \"Bundle React Native code and images\";\n\t\t\toutputPaths = (\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t\tshellPath = /bin/sh;\n\t\t\tshellScript = \"export NODE_BINARY=node\\n../node_modules/react-native/packager/react-native-xcode.sh\";\n\t\t};\n/* End PBXShellScriptBuildPhase section */\n\n/* Begin PBXSourcesBuildPhase section */\n\t\t00E356EA1AD99517003FC87E /* Sources */ = {\n\t\t\tisa = PBXSourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t00E356F31AD99517003FC87E /* GoReactTests.m in Sources */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\t13B07F871A680F5B00A75B9A /* Sources */ = {\n\t\t\tisa = PBXSourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */,\n\t\t\t\t13B07FC11A68108700A75B9A /* main.m in Sources */,\n\t\t\t\t602216491CF64504002C4206 /* Go.m in Sources */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n/* End PBXSourcesBuildPhase section */\n\n/* Begin PBXTargetDependency section */\n\t\t00E356F51AD99517003FC87E /* PBXTargetDependency */ = {\n\t\t\tisa = PBXTargetDependency;\n\t\t\ttarget = 13B07F861A680F5B00A75B9A /* GoReact */;\n\t\t\ttargetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */;\n\t\t};\n/* End PBXTargetDependency section */\n\n/* Begin PBXVariantGroup section */\n\t\t13B07FB11A68108700A75B9A /* LaunchScreen.xib */ = {\n\t\t\tisa = PBXVariantGroup;\n\t\t\tchildren = (\n\t\t\t\t13B07FB21A68108700A75B9A /* Base */,\n\t\t\t);\n\t\t\tname = LaunchScreen.xib;\n\t\t\tpath = GoReact;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n/* End PBXVariantGroup section */\n\n/* Begin XCBuildConfiguration section */\n\t\t00E356F61AD99517003FC87E /* Debug */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tBUNDLE_LOADER = \"$(TEST_HOST)\";\n\t\t\t\tFRAMEWORK_SEARCH_PATHS = (\n\t\t\t\t\t\"$(SDKROOT)/Developer/Library/Frameworks\",\n\t\t\t\t\t\"$(inherited)\",\n\t\t\t\t);\n\t\t\t\tGCC_PREPROCESSOR_DEFINITIONS = (\n\t\t\t\t\t\"DEBUG=1\",\n\t\t\t\t\t\"$(inherited)\",\n\t\t\t\t);\n\t\t\t\tINFOPLIST_FILE = GoReactTests/Info.plist;\n\t\t\t\tIPHONEOS_DEPLOYMENT_TARGET = 8.2;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = \"$(inherited) @executable_path/Frameworks @loader_path/Frameworks\";\n\t\t\t\tPRODUCT_NAME = \"$(TARGET_NAME)\";\n\t\t\t\tTEST_HOST = \"$(BUILT_PRODUCTS_DIR)/GoReact.app/GoReact\";\n\t\t\t};\n\t\t\tname = Debug;\n\t\t};\n\t\t00E356F71AD99517003FC87E /* Release */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tBUNDLE_LOADER = \"$(TEST_HOST)\";\n\t\t\t\tCOPY_PHASE_STRIP = NO;\n\t\t\t\tFRAMEWORK_SEARCH_PATHS = (\n\t\t\t\t\t\"$(SDKROOT)/Developer/Library/Frameworks\",\n\t\t\t\t\t\"$(inherited)\",\n\t\t\t\t);\n\t\t\t\tINFOPLIST_FILE = GoReactTests/Info.plist;\n\t\t\t\tIPHONEOS_DEPLOYMENT_TARGET = 8.2;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = \"$(inherited) @executable_path/Frameworks @loader_path/Frameworks\";\n\t\t\t\tPRODUCT_NAME = \"$(TARGET_NAME)\";\n\t\t\t\tTEST_HOST = \"$(BUILT_PRODUCTS_DIR)/GoReact.app/GoReact\";\n\t\t\t};\n\t\t\tname = Release;\n\t\t};\n\t\t13B07F941A680F5B00A75B9A /* Debug */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;\n\t\t\t\tDEAD_CODE_STRIPPING = NO;\n\t\t\t\tFRAMEWORK_SEARCH_PATHS = (\n\t\t\t\t\t\"$(inherited)\",\n\t\t\t\t\t\"$(PROJECT_DIR)\",\n\t\t\t\t);\n\t\t\t\tHEADER_SEARCH_PATHS = (\n\t\t\t\t\t\"$(inherited)\",\n\t\t\t\t\t/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,\n\t\t\t\t\t\"$(SRCROOT)/../node_modules/react-native/React/**\",\n\t\t\t\t);\n\t\t\t\tINFOPLIST_FILE = GoReact/Info.plist;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = \"$(inherited) @executable_path/Frameworks\";\n\t\t\t\tOTHER_LDFLAGS = \"-ObjC\";\n\t\t\t\tPRODUCT_NAME = GoReact;\n\t\t\t};\n\t\t\tname = Debug;\n\t\t};\n\t\t13B07F951A680F5B00A75B9A /* Release */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;\n\t\t\t\tFRAMEWORK_SEARCH_PATHS = (\n\t\t\t\t\t\"$(inherited)\",\n\t\t\t\t\t\"$(PROJECT_DIR)\",\n\t\t\t\t);\n\t\t\t\tHEADER_SEARCH_PATHS = (\n\t\t\t\t\t\"$(inherited)\",\n\t\t\t\t\t/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,\n\t\t\t\t\t\"$(SRCROOT)/../node_modules/react-native/React/**\",\n\t\t\t\t);\n\t\t\t\tINFOPLIST_FILE = GoReact/Info.plist;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = \"$(inherited) @executable_path/Frameworks\";\n\t\t\t\tOTHER_LDFLAGS = \"-ObjC\";\n\t\t\t\tPRODUCT_NAME = GoReact;\n\t\t\t};\n\t\t\tname = Release;\n\t\t};\n\t\t83CBBA201A601CBA00E9B192 /* Debug */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tALWAYS_SEARCH_USER_PATHS = NO;\n\t\t\t\tCLANG_CXX_LANGUAGE_STANDARD = \"gnu++0x\";\n\t\t\t\tCLANG_CXX_LIBRARY = \"libc++\";\n\t\t\t\tCLANG_ENABLE_MODULES = YES;\n\t\t\t\tCLANG_ENABLE_OBJC_ARC = YES;\n\t\t\t\tCLANG_WARN_BOOL_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_CONSTANT_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;\n\t\t\t\tCLANG_WARN_EMPTY_BODY = YES;\n\t\t\t\tCLANG_WARN_ENUM_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_INT_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;\n\t\t\t\tCLANG_WARN_UNREACHABLE_CODE = YES;\n\t\t\t\tCLANG_WARN__DUPLICATE_METHOD_MATCH = YES;\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=iphoneos*]\" = \"iPhone Developer\";\n\t\t\t\tCOPY_PHASE_STRIP = NO;\n\t\t\t\tENABLE_STRICT_OBJC_MSGSEND = YES;\n\t\t\t\tGCC_C_LANGUAGE_STANDARD = gnu99;\n\t\t\t\tGCC_DYNAMIC_NO_PIC = NO;\n\t\t\t\tGCC_OPTIMIZATION_LEVEL = 0;\n\t\t\t\tGCC_PREPROCESSOR_DEFINITIONS = (\n\t\t\t\t\t\"DEBUG=1\",\n\t\t\t\t\t\"$(inherited)\",\n\t\t\t\t);\n\t\t\t\tGCC_SYMBOLS_PRIVATE_EXTERN = NO;\n\t\t\t\tGCC_WARN_64_TO_32_BIT_CONVERSION = YES;\n\t\t\t\tGCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;\n\t\t\t\tGCC_WARN_UNDECLARED_SELECTOR = YES;\n\t\t\t\tGCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;\n\t\t\t\tGCC_WARN_UNUSED_FUNCTION = YES;\n\t\t\t\tGCC_WARN_UNUSED_VARIABLE = YES;\n\t\t\t\tHEADER_SEARCH_PATHS = (\n\t\t\t\t\t\"$(inherited)\",\n\t\t\t\t\t/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,\n\t\t\t\t\t\"$(SRCROOT)/../node_modules/react-native/React/**\",\n\t\t\t\t);\n\t\t\t\tIPHONEOS_DEPLOYMENT_TARGET = 7.0;\n\t\t\t\tMTL_ENABLE_DEBUG_INFO = YES;\n\t\t\t\tONLY_ACTIVE_ARCH = YES;\n\t\t\t\tSDKROOT = iphoneos;\n\t\t\t};\n\t\t\tname = Debug;\n\t\t};\n\t\t83CBBA211A601CBA00E9B192 /* Release */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tALWAYS_SEARCH_USER_PATHS = NO;\n\t\t\t\tCLANG_CXX_LANGUAGE_STANDARD = \"gnu++0x\";\n\t\t\t\tCLANG_CXX_LIBRARY = \"libc++\";\n\t\t\t\tCLANG_ENABLE_MODULES = YES;\n\t\t\t\tCLANG_ENABLE_OBJC_ARC = YES;\n\t\t\t\tCLANG_WARN_BOOL_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_CONSTANT_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;\n\t\t\t\tCLANG_WARN_EMPTY_BODY = YES;\n\t\t\t\tCLANG_WARN_ENUM_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_INT_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;\n\t\t\t\tCLANG_WARN_UNREACHABLE_CODE = YES;\n\t\t\t\tCLANG_WARN__DUPLICATE_METHOD_MATCH = YES;\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=iphoneos*]\" = \"iPhone Developer\";\n\t\t\t\tCOPY_PHASE_STRIP = YES;\n\t\t\t\tENABLE_NS_ASSERTIONS = NO;\n\t\t\t\tENABLE_STRICT_OBJC_MSGSEND = YES;\n\t\t\t\tGCC_C_LANGUAGE_STANDARD = gnu99;\n\t\t\t\tGCC_WARN_64_TO_32_BIT_CONVERSION = YES;\n\t\t\t\tGCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;\n\t\t\t\tGCC_WARN_UNDECLARED_SELECTOR = YES;\n\t\t\t\tGCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;\n\t\t\t\tGCC_WARN_UNUSED_FUNCTION = YES;\n\t\t\t\tGCC_WARN_UNUSED_VARIABLE = YES;\n\t\t\t\tHEADER_SEARCH_PATHS = (\n\t\t\t\t\t\"$(inherited)\",\n\t\t\t\t\t/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,\n\t\t\t\t\t\"$(SRCROOT)/../node_modules/react-native/React/**\",\n\t\t\t\t);\n\t\t\t\tIPHONEOS_DEPLOYMENT_TARGET = 7.0;\n\t\t\t\tMTL_ENABLE_DEBUG_INFO = NO;\n\t\t\t\tSDKROOT = iphoneos;\n\t\t\t\tVALIDATE_PRODUCT = YES;\n\t\t\t};\n\t\t\tname = Release;\n\t\t};\n/* End XCBuildConfiguration section */\n\n/* Begin XCConfigurationList section */\n\t\t00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget \"GoReactTests\" */ = {\n\t\t\tisa = XCConfigurationList;\n\t\t\tbuildConfigurations = (\n\t\t\t\t00E356F61AD99517003FC87E /* Debug */,\n\t\t\t\t00E356F71AD99517003FC87E /* Release */,\n\t\t\t);\n\t\t\tdefaultConfigurationIsVisible = 0;\n\t\t\tdefaultConfigurationName = Release;\n\t\t};\n\t\t13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget \"GoReact\" */ = {\n\t\t\tisa = XCConfigurationList;\n\t\t\tbuildConfigurations = (\n\t\t\t\t13B07F941A680F5B00A75B9A /* Debug */,\n\t\t\t\t13B07F951A680F5B00A75B9A /* Release */,\n\t\t\t);\n\t\t\tdefaultConfigurationIsVisible = 0;\n\t\t\tdefaultConfigurationName = Release;\n\t\t};\n\t\t83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject \"GoReact\" */ = {\n\t\t\tisa = XCConfigurationList;\n\t\t\tbuildConfigurations = (\n\t\t\t\t83CBBA201A601CBA00E9B192 /* Debug */,\n\t\t\t\t83CBBA211A601CBA00E9B192 /* Release */,\n\t\t\t);\n\t\t\tdefaultConfigurationIsVisible = 0;\n\t\t\tdefaultConfigurationName = Release;\n\t\t};\n/* End XCConfigurationList section */\n\t};\n\trootObject = 83CBB9F71A601CBA00E9B192 /* Project object */;\n}\n"
  },
  {
    "path": "ios/GoReact.xcodeproj/project.xcworkspace/contents.xcworkspacedata",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Workspace\n   version = \"1.0\">\n   <FileRef\n      location = \"self:\">\n   </FileRef>\n</Workspace>\n"
  },
  {
    "path": "ios/GoReact.xcodeproj/xcshareddata/xcschemes/GoReact.xcscheme",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Scheme\n   LastUpgradeVersion = \"0620\"\n   version = \"1.3\">\n   <BuildAction\n      parallelizeBuildables = \"YES\"\n      buildImplicitDependencies = \"YES\">\n      <BuildActionEntries>\n         <BuildActionEntry\n            buildForTesting = \"YES\"\n            buildForRunning = \"YES\"\n            buildForProfiling = \"YES\"\n            buildForArchiving = \"YES\"\n            buildForAnalyzing = \"YES\">\n            <BuildableReference\n               BuildableIdentifier = \"primary\"\n               BlueprintIdentifier = \"13B07F861A680F5B00A75B9A\"\n               BuildableName = \"GoReact.app\"\n               BlueprintName = \"GoReact\"\n               ReferencedContainer = \"container:GoReact.xcodeproj\">\n            </BuildableReference>\n         </BuildActionEntry>\n         <BuildActionEntry\n            buildForTesting = \"YES\"\n            buildForRunning = \"YES\"\n            buildForProfiling = \"NO\"\n            buildForArchiving = \"NO\"\n            buildForAnalyzing = \"YES\">\n            <BuildableReference\n               BuildableIdentifier = \"primary\"\n               BlueprintIdentifier = \"00E356ED1AD99517003FC87E\"\n               BuildableName = \"GoReactTests.xctest\"\n               BlueprintName = \"GoReactTests\"\n               ReferencedContainer = \"container:GoReact.xcodeproj\">\n            </BuildableReference>\n         </BuildActionEntry>\n      </BuildActionEntries>\n   </BuildAction>\n   <TestAction\n      selectedDebuggerIdentifier = \"Xcode.DebuggerFoundation.Debugger.LLDB\"\n      selectedLauncherIdentifier = \"Xcode.DebuggerFoundation.Launcher.LLDB\"\n      shouldUseLaunchSchemeArgsEnv = \"YES\"\n      buildConfiguration = \"Debug\">\n      <Testables>\n         <TestableReference\n            skipped = \"NO\">\n            <BuildableReference\n               BuildableIdentifier = \"primary\"\n               BlueprintIdentifier = \"00E356ED1AD99517003FC87E\"\n               BuildableName = \"GoReactTests.xctest\"\n               BlueprintName = \"GoReactTests\"\n               ReferencedContainer = \"container:GoReact.xcodeproj\">\n            </BuildableReference>\n         </TestableReference>\n      </Testables>\n      <MacroExpansion>\n         <BuildableReference\n            BuildableIdentifier = \"primary\"\n            BlueprintIdentifier = \"13B07F861A680F5B00A75B9A\"\n            BuildableName = \"GoReact.app\"\n            BlueprintName = \"GoReact\"\n            ReferencedContainer = \"container:GoReact.xcodeproj\">\n         </BuildableReference>\n      </MacroExpansion>\n   </TestAction>\n   <LaunchAction\n      selectedDebuggerIdentifier = \"Xcode.DebuggerFoundation.Debugger.LLDB\"\n      selectedLauncherIdentifier = \"Xcode.DebuggerFoundation.Launcher.LLDB\"\n      launchStyle = \"0\"\n      useCustomWorkingDirectory = \"NO\"\n      buildConfiguration = \"Debug\"\n      ignoresPersistentStateOnLaunch = \"NO\"\n      debugDocumentVersioning = \"YES\"\n      allowLocationSimulation = \"YES\">\n      <BuildableProductRunnable\n         runnableDebuggingMode = \"0\">\n         <BuildableReference\n            BuildableIdentifier = \"primary\"\n            BlueprintIdentifier = \"13B07F861A680F5B00A75B9A\"\n            BuildableName = \"GoReact.app\"\n            BlueprintName = \"GoReact\"\n            ReferencedContainer = \"container:GoReact.xcodeproj\">\n         </BuildableReference>\n      </BuildableProductRunnable>\n      <AdditionalOptions>\n      </AdditionalOptions>\n   </LaunchAction>\n   <ProfileAction\n      shouldUseLaunchSchemeArgsEnv = \"YES\"\n      savedToolIdentifier = \"\"\n      useCustomWorkingDirectory = \"NO\"\n      buildConfiguration = \"Release\"\n      debugDocumentVersioning = \"YES\">\n      <BuildableProductRunnable\n         runnableDebuggingMode = \"0\">\n         <BuildableReference\n            BuildableIdentifier = \"primary\"\n            BlueprintIdentifier = \"13B07F861A680F5B00A75B9A\"\n            BuildableName = \"GoReact.app\"\n            BlueprintName = \"GoReact\"\n            ReferencedContainer = \"container:GoReact.xcodeproj\">\n         </BuildableReference>\n      </BuildableProductRunnable>\n   </ProfileAction>\n   <AnalyzeAction\n      buildConfiguration = \"Debug\">\n   </AnalyzeAction>\n   <ArchiveAction\n      buildConfiguration = \"Release\"\n      revealArchiveInOrganizer = \"YES\">\n   </ArchiveAction>\n</Scheme>\n"
  },
  {
    "path": "ios/GoReact.xcodeproj/xcuserdata/cmanus.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Bucket\n   type = \"1\"\n   version = \"2.0\">\n</Bucket>\n"
  },
  {
    "path": "ios/GoReact.xcodeproj/xcuserdata/cmanus.xcuserdatad/xcschemes/xcschememanagement.plist",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<key>SchemeUserState</key>\n\t<dict>\n\t\t<key>GoReact.xcscheme_^#shared#^_</key>\n\t\t<dict>\n\t\t\t<key>orderHint</key>\n\t\t\t<integer>0</integer>\n\t\t</dict>\n\t</dict>\n\t<key>SuppressBuildableAutocreation</key>\n\t<dict>\n\t\t<key>00E356ED1AD99517003FC87E</key>\n\t\t<dict>\n\t\t\t<key>primary</key>\n\t\t\t<true/>\n\t\t</dict>\n\t\t<key>13B07F861A680F5B00A75B9A</key>\n\t\t<dict>\n\t\t\t<key>primary</key>\n\t\t\t<true/>\n\t\t</dict>\n\t</dict>\n</dict>\n</plist>\n"
  },
  {
    "path": "ios/GoReactTests/GoReactTests.m",
    "content": "/**\n * Copyright (c) 2015-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n */\n\n#import <UIKit/UIKit.h>\n#import <XCTest/XCTest.h>\n\n#import \"RCTLog.h\"\n#import \"RCTRootView.h\"\n\n#define TIMEOUT_SECONDS 240\n#define TEXT_TO_LOOK_FOR @\"Welcome to React Native!\"\n\n@interface GoReactTests : XCTestCase\n\n@end\n\n@implementation GoReactTests\n\n- (BOOL)findSubviewInView:(UIView *)view matching:(BOOL(^)(UIView *view))test\n{\n  if (test(view)) {\n    return YES;\n  }\n  for (UIView *subview in [view subviews]) {\n    if ([self findSubviewInView:subview matching:test]) {\n      return YES;\n    }\n  }\n  return NO;\n}\n\n- (void)testRendersWelcomeScreen\n{\n  UIViewController *vc = [[[[UIApplication sharedApplication] delegate] window] rootViewController];\n  NSDate *date = [NSDate dateWithTimeIntervalSinceNow:TIMEOUT_SECONDS];\n  BOOL foundElement = NO;\n\n  __block NSString *redboxError = nil;\n  RCTSetLogFunction(^(RCTLogLevel level, RCTLogSource source, NSString *fileName, NSNumber *lineNumber, NSString *message) {\n    if (level >= RCTLogLevelError) {\n      redboxError = message;\n    }\n  });\n\n  while ([date timeIntervalSinceNow] > 0 && !foundElement && !redboxError) {\n    [[NSRunLoop mainRunLoop] runMode:NSDefaultRunLoopMode beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]];\n    [[NSRunLoop mainRunLoop] runMode:NSRunLoopCommonModes beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]];\n\n    foundElement = [self findSubviewInView:vc.view matching:^BOOL(UIView *view) {\n      if ([view.accessibilityLabel isEqualToString:TEXT_TO_LOOK_FOR]) {\n        return YES;\n      }\n      return NO;\n    }];\n  }\n\n  RCTSetLogFunction(RCTDefaultLogFunction);\n\n  XCTAssertNil(redboxError, @\"RedBox error: %@\", redboxError);\n  XCTAssertTrue(foundElement, @\"Couldn't find element with text '%@' in %d seconds\", TEXT_TO_LOOK_FOR, TIMEOUT_SECONDS);\n}\n\n\n@end\n"
  },
  {
    "path": "ios/GoReactTests/Info.plist",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<key>CFBundleDevelopmentRegion</key>\n\t<string>en</string>\n\t<key>CFBundleExecutable</key>\n\t<string>$(EXECUTABLE_NAME)</string>\n\t<key>CFBundleIdentifier</key>\n\t<string>org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)</string>\n\t<key>CFBundleInfoDictionaryVersion</key>\n\t<string>6.0</string>\n\t<key>CFBundleName</key>\n\t<string>$(PRODUCT_NAME)</string>\n\t<key>CFBundlePackageType</key>\n\t<string>BNDL</string>\n\t<key>CFBundleShortVersionString</key>\n\t<string>1.0</string>\n\t<key>CFBundleSignature</key>\n\t<string>????</string>\n\t<key>CFBundleVersion</key>\n\t<string>1</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "package.json",
    "content": "{\n  \"name\": \"GoReact\",\n  \"version\": \"0.0.1\",\n  \"private\": true,\n  \"scripts\": {\n    \"start\": \"react-native start\"\n  },\n  \"dependencies\": {\n    \"react\": \"^0.14.8\",\n    \"react-native\": \"^0.24.1\"\n  }\n}\n"
  }
]