| @ -1,23 +1,51 @@ | |||||
| # react-native-date-picker | # react-native-date-picker | ||||
| A cross platform date picker component for React Native. This component uses the default DatePickerIOS on iOS and a custom picker on Android which has similar look and feel. | |||||
| 📅 React Native Date Picker is a date picker component for React Native working on iOS and Android. It uses the default DatePickerIOS on iOS and a custom picker on Android which has similar look and feel. | |||||
| ## Installation | ## Installation | ||||
| `$ yarn add @henninghall/react-native-date-picker` | |||||
| `yarn add @henninghall/react-native-date-picker` | |||||
| `$ react-native link ` | |||||
| `react-native link ` | |||||
| ## Usage | ## Usage | ||||
| ```js | ```js | ||||
| import Picker from '@henninghall/react-native-date-picker'; | |||||
| <Picker | |||||
| date={new Date()} | |||||
| onDateChange={(date) => console.log(date)} | |||||
| style={{ width: 300, height: 210 }} | |||||
| /> | |||||
| import React, { Component } from 'react'; | |||||
| import { View, StyleSheet} from 'react-native'; | |||||
| import DatePicker from '@henninghall/react-native-date-picker'; | |||||
| export default class App extends Component { | |||||
| state = { chosenDate: new Date()} | |||||
| setDate = (newDate) => this.setState({ chosenDate: newDate }) | |||||
| render() { | |||||
| return ( | |||||
| <View style={styles.container}> | |||||
| <DatePicker | |||||
| date={this.state.chosenDate} | |||||
| onDateChange={this.setDate} | |||||
| style={{ width: 300, height: 170 }} | |||||
| /> | |||||
| </View> | |||||
| ); | |||||
| } | |||||
| } | |||||
| const styles = StyleSheet.create({ | |||||
| container: { | |||||
| flex: 1, | |||||
| alignItems: 'center', | |||||
| justifyContent: 'center', | |||||
| backgroundColor: 'white', | |||||
| }, | |||||
| }) | |||||
| ``` | ``` | ||||
| @ -1,29 +0,0 @@ | |||||
| <component name="ProjectCodeStyleConfiguration"> | |||||
| <code_scheme name="Project" version="173"> | |||||
| <Objective-C-extensions> | |||||
| <file> | |||||
| <option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="Import" /> | |||||
| <option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="Macro" /> | |||||
| <option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="Typedef" /> | |||||
| <option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="Enum" /> | |||||
| <option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="Constant" /> | |||||
| <option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="Global" /> | |||||
| <option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="Struct" /> | |||||
| <option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="FunctionPredecl" /> | |||||
| <option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="Function" /> | |||||
| </file> | |||||
| <class> | |||||
| <option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="Property" /> | |||||
| <option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="Synthesize" /> | |||||
| <option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="InitMethod" /> | |||||
| <option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="StaticMethod" /> | |||||
| <option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="InstanceMethod" /> | |||||
| <option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="DeallocMethod" /> | |||||
| </class> | |||||
| <extensions> | |||||
| <pair source="cpp" header="h" fileNamingConvention="NONE" /> | |||||
| <pair source="c" header="h" fileNamingConvention="NONE" /> | |||||
| </extensions> | |||||
| </Objective-C-extensions> | |||||
| </code_scheme> | |||||
| </component> | |||||
| @ -1,12 +0,0 @@ | |||||
| <?xml version="1.0" encoding="UTF-8"?> | |||||
| <project version="4"> | |||||
| <component name="GradleSettings"> | |||||
| <option name="linkedExternalProjectsSettings"> | |||||
| <GradleProjectSettings> | |||||
| <option name="distributionType" value="DEFAULT_WRAPPED" /> | |||||
| <option name="externalProjectPath" value="$PROJECT_DIR$" /> | |||||
| <option name="resolveModulePerSourceSet" value="false" /> | |||||
| </GradleProjectSettings> | |||||
| </option> | |||||
| </component> | |||||
| </project> | |||||
| @ -1,34 +0,0 @@ | |||||
| <?xml version="1.0" encoding="UTF-8"?> | |||||
| <project version="4"> | |||||
| <component name="NullableNotNullManager"> | |||||
| <option name="myDefaultNullable" value="android.support.annotation.Nullable" /> | |||||
| <option name="myDefaultNotNull" value="android.support.annotation.NonNull" /> | |||||
| <option name="myNullables"> | |||||
| <value> | |||||
| <list size="5"> | |||||
| <item index="0" class="java.lang.String" itemvalue="org.jetbrains.annotations.Nullable" /> | |||||
| <item index="1" class="java.lang.String" itemvalue="javax.annotation.Nullable" /> | |||||
| <item index="2" class="java.lang.String" itemvalue="javax.annotation.CheckForNull" /> | |||||
| <item index="3" class="java.lang.String" itemvalue="edu.umd.cs.findbugs.annotations.Nullable" /> | |||||
| <item index="4" class="java.lang.String" itemvalue="android.support.annotation.Nullable" /> | |||||
| </list> | |||||
| </value> | |||||
| </option> | |||||
| <option name="myNotNulls"> | |||||
| <value> | |||||
| <list size="4"> | |||||
| <item index="0" class="java.lang.String" itemvalue="org.jetbrains.annotations.NotNull" /> | |||||
| <item index="1" class="java.lang.String" itemvalue="javax.annotation.Nonnull" /> | |||||
| <item index="2" class="java.lang.String" itemvalue="edu.umd.cs.findbugs.annotations.NonNull" /> | |||||
| <item index="3" class="java.lang.String" itemvalue="android.support.annotation.NonNull" /> | |||||
| </list> | |||||
| </value> | |||||
| </option> | |||||
| </component> | |||||
| <component name="ProjectRootManager"> | |||||
| <output url="file://$PROJECT_DIR$/build/classes" /> | |||||
| </component> | |||||
| <component name="ProjectType"> | |||||
| <option name="id" value="Android" /> | |||||
| </component> | |||||
| </project> | |||||
| @ -1,8 +0,0 @@ | |||||
| <?xml version="1.0" encoding="UTF-8"?> | |||||
| <project version="4"> | |||||
| <component name="ProjectModuleManager"> | |||||
| <modules> | |||||
| <module fileurl="file://$PROJECT_DIR$/android.iml" filepath="$PROJECT_DIR$/android.iml" /> | |||||
| </modules> | |||||
| </component> | |||||
| </project> | |||||
| @ -1,12 +0,0 @@ | |||||
| <?xml version="1.0" encoding="UTF-8"?> | |||||
| <project version="4"> | |||||
| <component name="RunConfigurationProducerService"> | |||||
| <option name="ignoredProducers"> | |||||
| <set> | |||||
| <option value="org.jetbrains.plugins.gradle.execution.test.runner.AllInPackageGradleConfigurationProducer" /> | |||||
| <option value="org.jetbrains.plugins.gradle.execution.test.runner.TestClassGradleConfigurationProducer" /> | |||||
| <option value="org.jetbrains.plugins.gradle.execution.test.runner.TestMethodGradleConfigurationProducer" /> | |||||
| </set> | |||||
| </option> | |||||
| </component> | |||||
| </project> | |||||
| @ -1,298 +0,0 @@ | |||||
| <?xml version="1.0" encoding="UTF-8"?> | |||||
| <project version="4"> | |||||
| <component name="ChangeListManager"> | |||||
| <list default="true" id="a691167a-7eab-46b1-a15f-438341565b48" name="Default" comment="" /> | |||||
| <ignored path="$PROJECT_DIR$/build/classes/" /> | |||||
| <option name="EXCLUDED_CONVERTED_TO_IGNORED" value="true" /> | |||||
| <option name="TRACKING_ENABLED" value="true" /> | |||||
| <option name="SHOW_DIALOG" value="false" /> | |||||
| <option name="HIGHLIGHT_CONFLICTS" value="true" /> | |||||
| <option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" /> | |||||
| <option name="LAST_RESOLUTION" value="IGNORE" /> | |||||
| </component> | |||||
| <component name="ExternalProjectsManager"> | |||||
| <system id="GRADLE"> | |||||
| <state> | |||||
| <projects_view /> | |||||
| </state> | |||||
| </system> | |||||
| </component> | |||||
| <component name="FileEditorManager"> | |||||
| <leaf> | |||||
| <file leaf-file-name="RCTDatePickerManager.java" pinned="false" current-in-tab="true"> | |||||
| <entry file="file://$PROJECT_DIR$/src/main/java/com/henninghall/date_picker/RCTDatePickerManager.java"> | |||||
| <provider selected="true" editor-type-id="text-editor"> | |||||
| <state relative-caret-position="240"> | |||||
| <caret line="53" column="8" lean-forward="false" selection-start-line="53" selection-start-column="8" selection-end-line="53" selection-end-column="8" /> | |||||
| <folding /> | |||||
| </state> | |||||
| </provider> | |||||
| </entry> | |||||
| </file> | |||||
| </leaf> | |||||
| </component> | |||||
| <component name="GradleLocalSettings"> | |||||
| <option name="externalProjectsViewState"> | |||||
| <projects_view /> | |||||
| </option> | |||||
| <option name="projectSyncType"> | |||||
| <map> | |||||
| <entry key="$PROJECT_DIR$" value="RE_IMPORT" /> | |||||
| </map> | |||||
| </option> | |||||
| </component> | |||||
| <component name="IdeDocumentHistory"> | |||||
| <option name="CHANGED_PATHS"> | |||||
| <list> | |||||
| <option value="$PROJECT_DIR$/src/main/java/com/henninghall/date_picker/RCTDatePickerManager.java" /> | |||||
| </list> | |||||
| </option> | |||||
| </component> | |||||
| <component name="ProjectFrameBounds"> | |||||
| <option name="x" value="1920" /> | |||||
| <option name="y" value="58" /> | |||||
| <option name="width" value="1862" /> | |||||
| <option name="height" value="1057" /> | |||||
| </component> | |||||
| <component name="ProjectView"> | |||||
| <navigator currentView="AndroidView" proportions="" version="1"> | |||||
| <flattenPackages /> | |||||
| <showMembers /> | |||||
| <showModules /> | |||||
| <showLibraryContents /> | |||||
| <hideEmptyPackages /> | |||||
| <abbreviatePackageNames /> | |||||
| <autoscrollToSource /> | |||||
| <autoscrollFromSource /> | |||||
| <sortByType /> | |||||
| <manualOrder /> | |||||
| <foldersAlwaysOnTop value="true" /> | |||||
| </navigator> | |||||
| <panes> | |||||
| <pane id="PackagesPane" /> | |||||
| <pane id="Scratches" /> | |||||
| <pane id="AndroidView"> | |||||
| <subPane> | |||||
| <expand> | |||||
| <path> | |||||
| <item name="android" type="1abcf292:AndroidViewProjectNode" /> | |||||
| <item name="android" type="462c0819:PsiDirectoryNode" /> | |||||
| </path> | |||||
| <path> | |||||
| <item name="android" type="1abcf292:AndroidViewProjectNode" /> | |||||
| <item name="android" type="462c0819:PsiDirectoryNode" /> | |||||
| <item name="src" type="462c0819:PsiDirectoryNode" /> | |||||
| </path> | |||||
| <path> | |||||
| <item name="android" type="1abcf292:AndroidViewProjectNode" /> | |||||
| <item name="android" type="462c0819:PsiDirectoryNode" /> | |||||
| <item name="src" type="462c0819:PsiDirectoryNode" /> | |||||
| <item name="main" type="462c0819:PsiDirectoryNode" /> | |||||
| </path> | |||||
| <path> | |||||
| <item name="android" type="1abcf292:AndroidViewProjectNode" /> | |||||
| <item name="android" type="462c0819:PsiDirectoryNode" /> | |||||
| <item name="src" type="462c0819:PsiDirectoryNode" /> | |||||
| <item name="main" type="462c0819:PsiDirectoryNode" /> | |||||
| <item name="java" type="462c0819:PsiDirectoryNode" /> | |||||
| </path> | |||||
| <path> | |||||
| <item name="android" type="1abcf292:AndroidViewProjectNode" /> | |||||
| <item name="android" type="462c0819:PsiDirectoryNode" /> | |||||
| <item name="src" type="462c0819:PsiDirectoryNode" /> | |||||
| <item name="main" type="462c0819:PsiDirectoryNode" /> | |||||
| <item name="java" type="462c0819:PsiDirectoryNode" /> | |||||
| <item name="com" type="462c0819:PsiDirectoryNode" /> | |||||
| </path> | |||||
| <path> | |||||
| <item name="android" type="1abcf292:AndroidViewProjectNode" /> | |||||
| <item name="android" type="462c0819:PsiDirectoryNode" /> | |||||
| <item name="src" type="462c0819:PsiDirectoryNode" /> | |||||
| <item name="main" type="462c0819:PsiDirectoryNode" /> | |||||
| <item name="java" type="462c0819:PsiDirectoryNode" /> | |||||
| <item name="com" type="462c0819:PsiDirectoryNode" /> | |||||
| <item name="henninghall" type="462c0819:PsiDirectoryNode" /> | |||||
| </path> | |||||
| <path> | |||||
| <item name="android" type="1abcf292:AndroidViewProjectNode" /> | |||||
| <item name="android" type="462c0819:PsiDirectoryNode" /> | |||||
| <item name="src" type="462c0819:PsiDirectoryNode" /> | |||||
| <item name="main" type="462c0819:PsiDirectoryNode" /> | |||||
| <item name="java" type="462c0819:PsiDirectoryNode" /> | |||||
| <item name="com" type="462c0819:PsiDirectoryNode" /> | |||||
| <item name="henninghall" type="462c0819:PsiDirectoryNode" /> | |||||
| <item name="date_picker" type="462c0819:PsiDirectoryNode" /> | |||||
| </path> | |||||
| </expand> | |||||
| <select /> | |||||
| </subPane> | |||||
| </pane> | |||||
| <pane id="ProjectPane" /> | |||||
| <pane id="Scope" /> | |||||
| </panes> | |||||
| </component> | |||||
| <component name="PropertiesComponent"> | |||||
| <property name="android.sdk.path" value="$USER_HOME$/Library/Android/sdk" /> | |||||
| </component> | |||||
| <component name="RunDashboard"> | |||||
| <option name="ruleStates"> | |||||
| <list> | |||||
| <RuleState> | |||||
| <option name="name" value="ConfigurationTypeDashboardGroupingRule" /> | |||||
| </RuleState> | |||||
| <RuleState> | |||||
| <option name="name" value="StatusDashboardGroupingRule" /> | |||||
| </RuleState> | |||||
| </list> | |||||
| </option> | |||||
| </component> | |||||
| <component name="RunManager"> | |||||
| <configuration default="true" type="Application" factoryName="Application"> | |||||
| <extension name="coverage" enabled="false" merge="false" sample_coverage="true" runner="idea" /> | |||||
| <option name="MAIN_CLASS_NAME" /> | |||||
| <option name="VM_PARAMETERS" /> | |||||
| <option name="PROGRAM_PARAMETERS" /> | |||||
| <option name="WORKING_DIRECTORY" value="$PROJECT_DIR$" /> | |||||
| <option name="ALTERNATIVE_JRE_PATH_ENABLED" value="false" /> | |||||
| <option name="ALTERNATIVE_JRE_PATH" /> | |||||
| <option name="ENABLE_SWING_INSPECTOR" value="false" /> | |||||
| <option name="ENV_VARIABLES" /> | |||||
| <option name="PASS_PARENT_ENVS" value="true" /> | |||||
| <module name="" /> | |||||
| <envs /> | |||||
| </configuration> | |||||
| <configuration default="true" type="Remote" factoryName="Remote"> | |||||
| <option name="USE_SOCKET_TRANSPORT" value="true" /> | |||||
| <option name="SERVER_MODE" value="false" /> | |||||
| <option name="SHMEM_ADDRESS" value="javadebug" /> | |||||
| <option name="HOST" value="localhost" /> | |||||
| <option name="PORT" value="5005" /> | |||||
| </configuration> | |||||
| <configuration default="true" type="TestNG" factoryName="TestNG"> | |||||
| <extension name="coverage" enabled="false" merge="false" sample_coverage="true" runner="idea" /> | |||||
| <module name="" /> | |||||
| <option name="ALTERNATIVE_JRE_PATH_ENABLED" value="false" /> | |||||
| <option name="ALTERNATIVE_JRE_PATH" /> | |||||
| <option name="SUITE_NAME" /> | |||||
| <option name="PACKAGE_NAME" /> | |||||
| <option name="MAIN_CLASS_NAME" /> | |||||
| <option name="METHOD_NAME" /> | |||||
| <option name="GROUP_NAME" /> | |||||
| <option name="TEST_OBJECT" value="CLASS" /> | |||||
| <option name="VM_PARAMETERS" value="-ea" /> | |||||
| <option name="PARAMETERS" /> | |||||
| <option name="WORKING_DIRECTORY" value="$MODULE_DIR$" /> | |||||
| <option name="OUTPUT_DIRECTORY" /> | |||||
| <option name="ANNOTATION_TYPE" /> | |||||
| <option name="ENV_VARIABLES" /> | |||||
| <option name="PASS_PARENT_ENVS" value="true" /> | |||||
| <option name="TEST_SEARCH_SCOPE"> | |||||
| <value defaultName="singleModule" /> | |||||
| </option> | |||||
| <option name="USE_DEFAULT_REPORTERS" value="false" /> | |||||
| <option name="PROPERTIES_FILE" /> | |||||
| <envs /> | |||||
| <properties /> | |||||
| <listeners /> | |||||
| </configuration> | |||||
| <configuration name="<template>" type="Applet" default="true" selected="false"> | |||||
| <option name="MAIN_CLASS_NAME" /> | |||||
| <option name="HTML_FILE_NAME" /> | |||||
| <option name="HTML_USED" value="false" /> | |||||
| <option name="WIDTH" value="400" /> | |||||
| <option name="HEIGHT" value="300" /> | |||||
| <option name="POLICY_FILE" value="$APPLICATION_HOME_DIR$/bin/appletviewer.policy" /> | |||||
| <option name="VM_PARAMETERS" /> | |||||
| </configuration> | |||||
| <configuration default="true" type="JUnit" factoryName="JUnit"> | |||||
| <extension name="coverage" enabled="false" merge="false" sample_coverage="true" runner="idea" /> | |||||
| <module name="" /> | |||||
| <option name="ALTERNATIVE_JRE_PATH_ENABLED" value="false" /> | |||||
| <option name="ALTERNATIVE_JRE_PATH" /> | |||||
| <option name="PACKAGE_NAME" /> | |||||
| <option name="MAIN_CLASS_NAME" /> | |||||
| <option name="METHOD_NAME" /> | |||||
| <option name="TEST_OBJECT" value="class" /> | |||||
| <option name="VM_PARAMETERS" value="-ea" /> | |||||
| <option name="PARAMETERS" /> | |||||
| <option name="WORKING_DIRECTORY" value="$MODULE_DIR$" /> | |||||
| <option name="ENV_VARIABLES" /> | |||||
| <option name="PASS_PARENT_ENVS" value="true" /> | |||||
| <option name="TEST_SEARCH_SCOPE"> | |||||
| <value defaultName="singleModule" /> | |||||
| </option> | |||||
| <envs /> | |||||
| <patterns /> | |||||
| <method /> | |||||
| </configuration> | |||||
| <configuration name="<template>" type="#org.jetbrains.idea.devkit.run.PluginConfigurationType" default="true" selected="false"> | |||||
| <option name="VM_PARAMETERS" value="-Xmx512m -Xms256m -XX:MaxPermSize=250m -ea" /> | |||||
| </configuration> | |||||
| </component> | |||||
| <component name="ShelveChangesManager" show_recycled="false"> | |||||
| <option name="remove_strategy" value="false" /> | |||||
| </component> | |||||
| <component name="SvnConfiguration"> | |||||
| <configuration /> | |||||
| </component> | |||||
| <component name="TaskManager"> | |||||
| <task active="true" id="Default" summary="Default task"> | |||||
| <changelist id="a691167a-7eab-46b1-a15f-438341565b48" name="Default" comment="" /> | |||||
| <created>1522866442837</created> | |||||
| <option name="number" value="Default" /> | |||||
| <option name="presentableId" value="Default" /> | |||||
| <updated>1522866442837</updated> | |||||
| </task> | |||||
| <servers /> | |||||
| </component> | |||||
| <component name="ToolWindowManager"> | |||||
| <frame x="1920" y="58" width="1862" height="1057" extended-state="0" /> | |||||
| <editor active="true" /> | |||||
| <layout> | |||||
| <window_info id="TODO" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="6" side_tool="false" content_ui="tabs" /> | |||||
| <window_info id="Messages" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="true" show_stripe_button="true" weight="0.32952183" sideWeight="0.5" order="-1" side_tool="false" content_ui="tabs" /> | |||||
| <window_info id="Palette	" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="-1" side_tool="false" content_ui="tabs" /> | |||||
| <window_info id="Image Layers" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="-1" side_tool="false" content_ui="tabs" /> | |||||
| <window_info id="Build Variants" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="-1" side_tool="true" content_ui="tabs" /> | |||||
| <window_info id="Capture Analysis" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="-1" side_tool="false" content_ui="tabs" /> | |||||
| <window_info id="Event Log" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="-1" side_tool="true" content_ui="tabs" /> | |||||
| <window_info id="Run" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="2" side_tool="false" content_ui="tabs" /> | |||||
| <window_info id="Version Control" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="false" weight="0.33" sideWeight="0.5" order="-1" side_tool="false" content_ui="tabs" /> | |||||
| <window_info id="Terminal" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="-1" side_tool="false" content_ui="tabs" /> | |||||
| <window_info id="Capture Tool" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="-1" side_tool="false" content_ui="tabs" /> | |||||
| <window_info id="Designer" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="-1" side_tool="false" content_ui="tabs" /> | |||||
| <window_info id="Project" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="true" show_stripe_button="true" weight="0.25" sideWeight="0.5" order="0" side_tool="false" content_ui="combo" /> | |||||
| <window_info id="Build" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.32952183" sideWeight="0.5" order="-1" side_tool="false" content_ui="tabs" /> | |||||
| <window_info id="Gradle" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="-1" side_tool="false" content_ui="tabs" /> | |||||
| <window_info id="Structure" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.25" sideWeight="0.5" order="1" side_tool="false" content_ui="tabs" /> | |||||
| <window_info id="Theme Preview" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="-1" side_tool="false" content_ui="tabs" /> | |||||
| <window_info id="Debug" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.4" sideWeight="0.5" order="3" side_tool="false" content_ui="tabs" /> | |||||
| <window_info id="Favorites" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="-1" side_tool="true" content_ui="tabs" /> | |||||
| <window_info id="Cvs" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.25" sideWeight="0.5" order="4" side_tool="false" content_ui="tabs" /> | |||||
| <window_info id="Message" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="0" side_tool="false" content_ui="tabs" /> | |||||
| <window_info id="Commander" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.4" sideWeight="0.5" order="0" side_tool="false" content_ui="tabs" /> | |||||
| <window_info id="Inspection" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.4" sideWeight="0.5" order="5" side_tool="false" content_ui="tabs" /> | |||||
| <window_info id="Captures" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.25" sideWeight="0.5" order="2" side_tool="false" content_ui="tabs" /> | |||||
| <window_info id="Hierarchy" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.25" sideWeight="0.5" order="2" side_tool="false" content_ui="combo" /> | |||||
| <window_info id="Find" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="1" side_tool="false" content_ui="tabs" /> | |||||
| <window_info id="Ant Build" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.25" sideWeight="0.5" order="1" side_tool="false" content_ui="tabs" /> | |||||
| </layout> | |||||
| </component> | |||||
| <component name="VcsContentAnnotationSettings"> | |||||
| <option name="myLimit" value="2678400000" /> | |||||
| </component> | |||||
| <component name="XDebuggerManager"> | |||||
| <breakpoint-manager /> | |||||
| <watches-manager /> | |||||
| </component> | |||||
| <component name="editorHistoryManager"> | |||||
| <entry file="file://$PROJECT_DIR$/src/main/java/com/henninghall/date_picker/RCTDatePickerManager.java"> | |||||
| <provider selected="true" editor-type-id="text-editor"> | |||||
| <state relative-caret-position="240"> | |||||
| <caret line="53" column="8" lean-forward="false" selection-start-line="53" selection-start-column="8" selection-end-line="53" selection-end-column="8" /> | |||||
| <folding /> | |||||
| </state> | |||||
| </provider> | |||||
| </entry> | |||||
| </component> | |||||
| </project> | |||||
| @ -1,13 +0,0 @@ | |||||
| /** | |||||
| * Automatically generated file. DO NOT MODIFY | |||||
| */ | |||||
| package com.henninghall.date_picker; | |||||
| public final class BuildConfig { | |||||
| public static final boolean DEBUG = Boolean.parseBoolean("true"); | |||||
| public static final String APPLICATION_ID = "com.henninghall.date_picker"; | |||||
| public static final String BUILD_TYPE = "debug"; | |||||
| public static final String FLAVOR = ""; | |||||
| public static final int VERSION_CODE = 1; | |||||
| public static final String VERSION_NAME = "1.0"; | |||||
| } | |||||
| @ -1,13 +0,0 @@ | |||||
| /** | |||||
| * Automatically generated file. DO NOT MODIFY | |||||
| */ | |||||
| package com.henninghall.date_picker; | |||||
| public final class BuildConfig { | |||||
| public static final boolean DEBUG = false; | |||||
| public static final String APPLICATION_ID = "com.henninghall.date_picker"; | |||||
| public static final String BUILD_TYPE = "release"; | |||||
| public static final String FLAVOR = ""; | |||||
| public static final int VERSION_CODE = 1; | |||||
| public static final String VERSION_NAME = "1.0"; | |||||
| } | |||||
| @ -1,10 +0,0 @@ | |||||
| /* AUTO-GENERATED FILE. DO NOT MODIFY. | |||||
| * | |||||
| * This class was automatically generated by the | |||||
| * gradle plugin from the resource data it found. It | |||||
| * should not be modified by hand. | |||||
| */ | |||||
| package android.support.graphics.drawable; | |||||
| public final class R { | |||||
| } | |||||
| @ -1,10 +0,0 @@ | |||||
| /* AUTO-GENERATED FILE. DO NOT MODIFY. | |||||
| * | |||||
| * This class was automatically generated by the | |||||
| * gradle plugin from the resource data it found. It | |||||
| * should not be modified by hand. | |||||
| */ | |||||
| package android.support.graphics.drawable.animated; | |||||
| public final class R { | |||||
| } | |||||
| @ -1,10 +0,0 @@ | |||||
| /* AUTO-GENERATED FILE. DO NOT MODIFY. | |||||
| * | |||||
| * This class was automatically generated by the | |||||
| * gradle plugin from the resource data it found. It | |||||
| * should not be modified by hand. | |||||
| */ | |||||
| package android.support.v4; | |||||
| public final class R { | |||||
| } | |||||
| @ -1,81 +0,0 @@ | |||||
| /* AUTO-GENERATED FILE. DO NOT MODIFY. | |||||
| * | |||||
| * This class was automatically generated by the | |||||
| * gradle plugin from the resource data it found. It | |||||
| * should not be modified by hand. | |||||
| */ | |||||
| package com.facebook.drawee; | |||||
| public final class R { | |||||
| public static final class attr { | |||||
| public static int actualImageResource = 0x7f040023; | |||||
| public static int actualImageScaleType = 0x7f040024; | |||||
| public static int actualImageUri = 0x7f040025; | |||||
| public static int backgroundImage = 0x7f04002f; | |||||
| public static int fadeDuration = 0x7f040067; | |||||
| public static int failureImage = 0x7f040068; | |||||
| public static int failureImageScaleType = 0x7f040069; | |||||
| public static int overlayImage = 0x7f0400a7; | |||||
| public static int placeholderImage = 0x7f0400ad; | |||||
| public static int placeholderImageScaleType = 0x7f0400ae; | |||||
| public static int pressedStateOverlayImage = 0x7f0400b3; | |||||
| public static int progressBarAutoRotateInterval = 0x7f0400b4; | |||||
| public static int progressBarImage = 0x7f0400b5; | |||||
| public static int progressBarImageScaleType = 0x7f0400b6; | |||||
| public static int retryImage = 0x7f0400bf; | |||||
| public static int retryImageScaleType = 0x7f0400c0; | |||||
| public static int roundAsCircle = 0x7f0400c1; | |||||
| public static int roundBottomLeft = 0x7f0400c2; | |||||
| public static int roundBottomRight = 0x7f0400c3; | |||||
| public static int roundTopLeft = 0x7f0400c4; | |||||
| public static int roundTopRight = 0x7f0400c5; | |||||
| public static int roundWithOverlayColor = 0x7f0400c6; | |||||
| public static int roundedCornerRadius = 0x7f0400c7; | |||||
| public static int roundingBorderColor = 0x7f0400c8; | |||||
| public static int roundingBorderPadding = 0x7f0400c9; | |||||
| public static int roundingBorderWidth = 0x7f0400ca; | |||||
| public static int viewAspectRatio = 0x7f0400fd; | |||||
| } | |||||
| public static final class id { | |||||
| public static int center = 0x7f0c0017; | |||||
| public static int centerCrop = 0x7f0c0018; | |||||
| public static int centerInside = 0x7f0c0019; | |||||
| public static int fitCenter = 0x7f0c002a; | |||||
| public static int fitEnd = 0x7f0c002b; | |||||
| public static int fitStart = 0x7f0c002c; | |||||
| public static int fitXY = 0x7f0c002d; | |||||
| public static int focusCrop = 0x7f0c002e; | |||||
| public static int none = 0x7f0c0040; | |||||
| } | |||||
| public static final class styleable { | |||||
| public static int[] GenericDraweeHierarchy = { 0x7f040024, 0x7f04002f, 0x7f040067, 0x7f040068, 0x7f040069, 0x7f0400a7, 0x7f0400ad, 0x7f0400ae, 0x7f0400b3, 0x7f0400b4, 0x7f0400b5, 0x7f0400b6, 0x7f0400bf, 0x7f0400c0, 0x7f0400c1, 0x7f0400c2, 0x7f0400c3, 0x7f0400c4, 0x7f0400c5, 0x7f0400c6, 0x7f0400c7, 0x7f0400c8, 0x7f0400c9, 0x7f0400ca, 0x7f0400fd }; | |||||
| public static int GenericDraweeHierarchy_actualImageScaleType = 0; | |||||
| public static int GenericDraweeHierarchy_backgroundImage = 1; | |||||
| public static int GenericDraweeHierarchy_fadeDuration = 2; | |||||
| public static int GenericDraweeHierarchy_failureImage = 3; | |||||
| public static int GenericDraweeHierarchy_failureImageScaleType = 4; | |||||
| public static int GenericDraweeHierarchy_overlayImage = 5; | |||||
| public static int GenericDraweeHierarchy_placeholderImage = 6; | |||||
| public static int GenericDraweeHierarchy_placeholderImageScaleType = 7; | |||||
| public static int GenericDraweeHierarchy_pressedStateOverlayImage = 8; | |||||
| public static int GenericDraweeHierarchy_progressBarAutoRotateInterval = 9; | |||||
| public static int GenericDraweeHierarchy_progressBarImage = 10; | |||||
| public static int GenericDraweeHierarchy_progressBarImageScaleType = 11; | |||||
| public static int GenericDraweeHierarchy_retryImage = 12; | |||||
| public static int GenericDraweeHierarchy_retryImageScaleType = 13; | |||||
| public static int GenericDraweeHierarchy_roundAsCircle = 14; | |||||
| public static int GenericDraweeHierarchy_roundBottomLeft = 15; | |||||
| public static int GenericDraweeHierarchy_roundBottomRight = 16; | |||||
| public static int GenericDraweeHierarchy_roundTopLeft = 17; | |||||
| public static int GenericDraweeHierarchy_roundTopRight = 18; | |||||
| public static int GenericDraweeHierarchy_roundWithOverlayColor = 19; | |||||
| public static int GenericDraweeHierarchy_roundedCornerRadius = 20; | |||||
| public static int GenericDraweeHierarchy_roundingBorderColor = 21; | |||||
| public static int GenericDraweeHierarchy_roundingBorderPadding = 22; | |||||
| public static int GenericDraweeHierarchy_roundingBorderWidth = 23; | |||||
| public static int GenericDraweeHierarchy_viewAspectRatio = 24; | |||||
| public static int[] SimpleDraweeView = { 0x7f040023, 0x7f040025 }; | |||||
| public static int SimpleDraweeView_actualImageResource = 0; | |||||
| public static int SimpleDraweeView_actualImageUri = 1; | |||||
| } | |||||
| } | |||||
| @ -1,81 +0,0 @@ | |||||
| /* AUTO-GENERATED FILE. DO NOT MODIFY. | |||||
| * | |||||
| * This class was automatically generated by the | |||||
| * gradle plugin from the resource data it found. It | |||||
| * should not be modified by hand. | |||||
| */ | |||||
| package com.facebook.drawee.backends.pipeline; | |||||
| public final class R { | |||||
| public static final class attr { | |||||
| public static int actualImageResource = 0x7f040023; | |||||
| public static int actualImageScaleType = 0x7f040024; | |||||
| public static int actualImageUri = 0x7f040025; | |||||
| public static int backgroundImage = 0x7f04002f; | |||||
| public static int fadeDuration = 0x7f040067; | |||||
| public static int failureImage = 0x7f040068; | |||||
| public static int failureImageScaleType = 0x7f040069; | |||||
| public static int overlayImage = 0x7f0400a7; | |||||
| public static int placeholderImage = 0x7f0400ad; | |||||
| public static int placeholderImageScaleType = 0x7f0400ae; | |||||
| public static int pressedStateOverlayImage = 0x7f0400b3; | |||||
| public static int progressBarAutoRotateInterval = 0x7f0400b4; | |||||
| public static int progressBarImage = 0x7f0400b5; | |||||
| public static int progressBarImageScaleType = 0x7f0400b6; | |||||
| public static int retryImage = 0x7f0400bf; | |||||
| public static int retryImageScaleType = 0x7f0400c0; | |||||
| public static int roundAsCircle = 0x7f0400c1; | |||||
| public static int roundBottomLeft = 0x7f0400c2; | |||||
| public static int roundBottomRight = 0x7f0400c3; | |||||
| public static int roundTopLeft = 0x7f0400c4; | |||||
| public static int roundTopRight = 0x7f0400c5; | |||||
| public static int roundWithOverlayColor = 0x7f0400c6; | |||||
| public static int roundedCornerRadius = 0x7f0400c7; | |||||
| public static int roundingBorderColor = 0x7f0400c8; | |||||
| public static int roundingBorderPadding = 0x7f0400c9; | |||||
| public static int roundingBorderWidth = 0x7f0400ca; | |||||
| public static int viewAspectRatio = 0x7f0400fd; | |||||
| } | |||||
| public static final class id { | |||||
| public static int center = 0x7f0c0017; | |||||
| public static int centerCrop = 0x7f0c0018; | |||||
| public static int centerInside = 0x7f0c0019; | |||||
| public static int fitCenter = 0x7f0c002a; | |||||
| public static int fitEnd = 0x7f0c002b; | |||||
| public static int fitStart = 0x7f0c002c; | |||||
| public static int fitXY = 0x7f0c002d; | |||||
| public static int focusCrop = 0x7f0c002e; | |||||
| public static int none = 0x7f0c0040; | |||||
| } | |||||
| public static final class styleable { | |||||
| public static int[] GenericDraweeHierarchy = { 0x7f040024, 0x7f04002f, 0x7f040067, 0x7f040068, 0x7f040069, 0x7f0400a7, 0x7f0400ad, 0x7f0400ae, 0x7f0400b3, 0x7f0400b4, 0x7f0400b5, 0x7f0400b6, 0x7f0400bf, 0x7f0400c0, 0x7f0400c1, 0x7f0400c2, 0x7f0400c3, 0x7f0400c4, 0x7f0400c5, 0x7f0400c6, 0x7f0400c7, 0x7f0400c8, 0x7f0400c9, 0x7f0400ca, 0x7f0400fd }; | |||||
| public static int GenericDraweeHierarchy_actualImageScaleType = 0; | |||||
| public static int GenericDraweeHierarchy_backgroundImage = 1; | |||||
| public static int GenericDraweeHierarchy_fadeDuration = 2; | |||||
| public static int GenericDraweeHierarchy_failureImage = 3; | |||||
| public static int GenericDraweeHierarchy_failureImageScaleType = 4; | |||||
| public static int GenericDraweeHierarchy_overlayImage = 5; | |||||
| public static int GenericDraweeHierarchy_placeholderImage = 6; | |||||
| public static int GenericDraweeHierarchy_placeholderImageScaleType = 7; | |||||
| public static int GenericDraweeHierarchy_pressedStateOverlayImage = 8; | |||||
| public static int GenericDraweeHierarchy_progressBarAutoRotateInterval = 9; | |||||
| public static int GenericDraweeHierarchy_progressBarImage = 10; | |||||
| public static int GenericDraweeHierarchy_progressBarImageScaleType = 11; | |||||
| public static int GenericDraweeHierarchy_retryImage = 12; | |||||
| public static int GenericDraweeHierarchy_retryImageScaleType = 13; | |||||
| public static int GenericDraweeHierarchy_roundAsCircle = 14; | |||||
| public static int GenericDraweeHierarchy_roundBottomLeft = 15; | |||||
| public static int GenericDraweeHierarchy_roundBottomRight = 16; | |||||
| public static int GenericDraweeHierarchy_roundTopLeft = 17; | |||||
| public static int GenericDraweeHierarchy_roundTopRight = 18; | |||||
| public static int GenericDraweeHierarchy_roundWithOverlayColor = 19; | |||||
| public static int GenericDraweeHierarchy_roundedCornerRadius = 20; | |||||
| public static int GenericDraweeHierarchy_roundingBorderColor = 21; | |||||
| public static int GenericDraweeHierarchy_roundingBorderPadding = 22; | |||||
| public static int GenericDraweeHierarchy_roundingBorderWidth = 23; | |||||
| public static int GenericDraweeHierarchy_viewAspectRatio = 24; | |||||
| public static int[] SimpleDraweeView = { 0x7f040023, 0x7f040025 }; | |||||
| public static int SimpleDraweeView_actualImageResource = 0; | |||||
| public static int SimpleDraweeView_actualImageUri = 1; | |||||
| } | |||||
| } | |||||
| @ -1,10 +0,0 @@ | |||||
| /* AUTO-GENERATED FILE. DO NOT MODIFY. | |||||
| * | |||||
| * This class was automatically generated by the | |||||
| * gradle plugin from the resource data it found. It | |||||
| * should not be modified by hand. | |||||
| */ | |||||
| package com.facebook.fbcore; | |||||
| public final class R { | |||||
| } | |||||
| @ -1,34 +0,0 @@ | |||||
| /* AUTO-GENERATED FILE. DO NOT MODIFY. | |||||
| * | |||||
| * This class was automatically generated by the | |||||
| * gradle plugin from the resource data it found. It | |||||
| * should not be modified by hand. | |||||
| */ | |||||
| package com.facebook.fbui.textlayoutbuilder; | |||||
| public final class R { | |||||
| public static final class styleable { | |||||
| public static int[] TextAppearance = { 0x01010161, 0x01010162, 0x01010163, 0x01010164, 0x01010098, 0x01010095, 0x01010097, 0x01010096, 0x7f0400e5 }; | |||||
| public static int TextAppearance_android_shadowColor = 0; | |||||
| public static int TextAppearance_android_shadowDx = 1; | |||||
| public static int TextAppearance_android_shadowDy = 2; | |||||
| public static int TextAppearance_android_shadowRadius = 3; | |||||
| public static int TextAppearance_android_textColor = 4; | |||||
| public static int TextAppearance_android_textSize = 5; | |||||
| public static int TextAppearance_android_textStyle = 6; | |||||
| public static int TextAppearance_android_typeface = 7; | |||||
| public static int TextAppearance_textAllCaps = 8; | |||||
| public static int[] TextStyle = { 0x010100ab, 0x01010153, 0x01010161, 0x01010162, 0x01010163, 0x01010164, 0x0101015d, 0x01010034, 0x01010098, 0x01010095, 0x01010097 }; | |||||
| public static int TextStyle_android_ellipsize = 0; | |||||
| public static int TextStyle_android_maxLines = 1; | |||||
| public static int TextStyle_android_shadowColor = 2; | |||||
| public static int TextStyle_android_shadowDx = 3; | |||||
| public static int TextStyle_android_shadowDy = 4; | |||||
| public static int TextStyle_android_shadowRadius = 5; | |||||
| public static int TextStyle_android_singleLine = 6; | |||||
| public static int TextStyle_android_textAppearance = 7; | |||||
| public static int TextStyle_android_textColor = 8; | |||||
| public static int TextStyle_android_textSize = 9; | |||||
| public static int TextStyle_android_textStyle = 10; | |||||
| } | |||||
| } | |||||
| @ -1,10 +0,0 @@ | |||||
| /* AUTO-GENERATED FILE. DO NOT MODIFY. | |||||
| * | |||||
| * This class was automatically generated by the | |||||
| * gradle plugin from the resource data it found. It | |||||
| * should not be modified by hand. | |||||
| */ | |||||
| package com.facebook.imagepipeline; | |||||
| public final class R { | |||||
| } | |||||
| @ -1,10 +0,0 @@ | |||||
| /* AUTO-GENERATED FILE. DO NOT MODIFY. | |||||
| * | |||||
| * This class was automatically generated by the | |||||
| * gradle plugin from the resource data it found. It | |||||
| * should not be modified by hand. | |||||
| */ | |||||
| package com.facebook.imagepipeline.backends.okhttp3; | |||||
| public final class R { | |||||
| } | |||||
| @ -1,10 +0,0 @@ | |||||
| /* AUTO-GENERATED FILE. DO NOT MODIFY. | |||||
| * | |||||
| * This class was automatically generated by the | |||||
| * gradle plugin from the resource data it found. It | |||||
| * should not be modified by hand. | |||||
| */ | |||||
| package com.facebook.imagepipelinebase; | |||||
| public final class R { | |||||
| } | |||||
| @ -1,10 +0,0 @@ | |||||
| /* AUTO-GENERATED FILE. DO NOT MODIFY. | |||||
| * | |||||
| * This class was automatically generated by the | |||||
| * gradle plugin from the resource data it found. It | |||||
| * should not be modified by hand. | |||||
| */ | |||||
| package com.facebook.soloader; | |||||
| public final class R { | |||||
| } | |||||
| @ -1,10 +0,0 @@ | |||||
| /* AUTO-GENERATED FILE. DO NOT MODIFY. | |||||
| * | |||||
| * This class was automatically generated by the | |||||
| * gradle plugin from the resource data it found. It | |||||
| * should not be modified by hand. | |||||
| */ | |||||
| package org.webkit.android_jsc; | |||||
| public final class R { | |||||
| } | |||||
| @ -1,10 +0,0 @@ | |||||
| /* AUTO-GENERATED FILE. DO NOT MODIFY. | |||||
| * | |||||
| * This class was automatically generated by the | |||||
| * gradle plugin from the resource data it found. It | |||||
| * should not be modified by hand. | |||||
| */ | |||||
| package android.support.graphics.drawable; | |||||
| public final class R { | |||||
| } | |||||
| @ -1,10 +0,0 @@ | |||||
| /* AUTO-GENERATED FILE. DO NOT MODIFY. | |||||
| * | |||||
| * This class was automatically generated by the | |||||
| * gradle plugin from the resource data it found. It | |||||
| * should not be modified by hand. | |||||
| */ | |||||
| package android.support.graphics.drawable.animated; | |||||
| public final class R { | |||||
| } | |||||
| @ -1,10 +0,0 @@ | |||||
| /* AUTO-GENERATED FILE. DO NOT MODIFY. | |||||
| * | |||||
| * This class was automatically generated by the | |||||
| * gradle plugin from the resource data it found. It | |||||
| * should not be modified by hand. | |||||
| */ | |||||
| package android.support.v4; | |||||
| public final class R { | |||||
| } | |||||
| @ -1,81 +0,0 @@ | |||||
| /* AUTO-GENERATED FILE. DO NOT MODIFY. | |||||
| * | |||||
| * This class was automatically generated by the | |||||
| * gradle plugin from the resource data it found. It | |||||
| * should not be modified by hand. | |||||
| */ | |||||
| package com.facebook.drawee; | |||||
| public final class R { | |||||
| public static final class attr { | |||||
| public static int actualImageResource = 0x7f040023; | |||||
| public static int actualImageScaleType = 0x7f040024; | |||||
| public static int actualImageUri = 0x7f040025; | |||||
| public static int backgroundImage = 0x7f04002f; | |||||
| public static int fadeDuration = 0x7f040067; | |||||
| public static int failureImage = 0x7f040068; | |||||
| public static int failureImageScaleType = 0x7f040069; | |||||
| public static int overlayImage = 0x7f0400a7; | |||||
| public static int placeholderImage = 0x7f0400ad; | |||||
| public static int placeholderImageScaleType = 0x7f0400ae; | |||||
| public static int pressedStateOverlayImage = 0x7f0400b3; | |||||
| public static int progressBarAutoRotateInterval = 0x7f0400b4; | |||||
| public static int progressBarImage = 0x7f0400b5; | |||||
| public static int progressBarImageScaleType = 0x7f0400b6; | |||||
| public static int retryImage = 0x7f0400bf; | |||||
| public static int retryImageScaleType = 0x7f0400c0; | |||||
| public static int roundAsCircle = 0x7f0400c1; | |||||
| public static int roundBottomLeft = 0x7f0400c2; | |||||
| public static int roundBottomRight = 0x7f0400c3; | |||||
| public static int roundTopLeft = 0x7f0400c4; | |||||
| public static int roundTopRight = 0x7f0400c5; | |||||
| public static int roundWithOverlayColor = 0x7f0400c6; | |||||
| public static int roundedCornerRadius = 0x7f0400c7; | |||||
| public static int roundingBorderColor = 0x7f0400c8; | |||||
| public static int roundingBorderPadding = 0x7f0400c9; | |||||
| public static int roundingBorderWidth = 0x7f0400ca; | |||||
| public static int viewAspectRatio = 0x7f0400fd; | |||||
| } | |||||
| public static final class id { | |||||
| public static int center = 0x7f0c0017; | |||||
| public static int centerCrop = 0x7f0c0018; | |||||
| public static int centerInside = 0x7f0c0019; | |||||
| public static int fitCenter = 0x7f0c002a; | |||||
| public static int fitEnd = 0x7f0c002b; | |||||
| public static int fitStart = 0x7f0c002c; | |||||
| public static int fitXY = 0x7f0c002d; | |||||
| public static int focusCrop = 0x7f0c002e; | |||||
| public static int none = 0x7f0c0040; | |||||
| } | |||||
| public static final class styleable { | |||||
| public static int[] GenericDraweeHierarchy = { 0x7f040024, 0x7f04002f, 0x7f040067, 0x7f040068, 0x7f040069, 0x7f0400a7, 0x7f0400ad, 0x7f0400ae, 0x7f0400b3, 0x7f0400b4, 0x7f0400b5, 0x7f0400b6, 0x7f0400bf, 0x7f0400c0, 0x7f0400c1, 0x7f0400c2, 0x7f0400c3, 0x7f0400c4, 0x7f0400c5, 0x7f0400c6, 0x7f0400c7, 0x7f0400c8, 0x7f0400c9, 0x7f0400ca, 0x7f0400fd }; | |||||
| public static int GenericDraweeHierarchy_actualImageScaleType = 0; | |||||
| public static int GenericDraweeHierarchy_backgroundImage = 1; | |||||
| public static int GenericDraweeHierarchy_fadeDuration = 2; | |||||
| public static int GenericDraweeHierarchy_failureImage = 3; | |||||
| public static int GenericDraweeHierarchy_failureImageScaleType = 4; | |||||
| public static int GenericDraweeHierarchy_overlayImage = 5; | |||||
| public static int GenericDraweeHierarchy_placeholderImage = 6; | |||||
| public static int GenericDraweeHierarchy_placeholderImageScaleType = 7; | |||||
| public static int GenericDraweeHierarchy_pressedStateOverlayImage = 8; | |||||
| public static int GenericDraweeHierarchy_progressBarAutoRotateInterval = 9; | |||||
| public static int GenericDraweeHierarchy_progressBarImage = 10; | |||||
| public static int GenericDraweeHierarchy_progressBarImageScaleType = 11; | |||||
| public static int GenericDraweeHierarchy_retryImage = 12; | |||||
| public static int GenericDraweeHierarchy_retryImageScaleType = 13; | |||||
| public static int GenericDraweeHierarchy_roundAsCircle = 14; | |||||
| public static int GenericDraweeHierarchy_roundBottomLeft = 15; | |||||
| public static int GenericDraweeHierarchy_roundBottomRight = 16; | |||||
| public static int GenericDraweeHierarchy_roundTopLeft = 17; | |||||
| public static int GenericDraweeHierarchy_roundTopRight = 18; | |||||
| public static int GenericDraweeHierarchy_roundWithOverlayColor = 19; | |||||
| public static int GenericDraweeHierarchy_roundedCornerRadius = 20; | |||||
| public static int GenericDraweeHierarchy_roundingBorderColor = 21; | |||||
| public static int GenericDraweeHierarchy_roundingBorderPadding = 22; | |||||
| public static int GenericDraweeHierarchy_roundingBorderWidth = 23; | |||||
| public static int GenericDraweeHierarchy_viewAspectRatio = 24; | |||||
| public static int[] SimpleDraweeView = { 0x7f040023, 0x7f040025 }; | |||||
| public static int SimpleDraweeView_actualImageResource = 0; | |||||
| public static int SimpleDraweeView_actualImageUri = 1; | |||||
| } | |||||
| } | |||||
| @ -1,81 +0,0 @@ | |||||
| /* AUTO-GENERATED FILE. DO NOT MODIFY. | |||||
| * | |||||
| * This class was automatically generated by the | |||||
| * gradle plugin from the resource data it found. It | |||||
| * should not be modified by hand. | |||||
| */ | |||||
| package com.facebook.drawee.backends.pipeline; | |||||
| public final class R { | |||||
| public static final class attr { | |||||
| public static int actualImageResource = 0x7f040023; | |||||
| public static int actualImageScaleType = 0x7f040024; | |||||
| public static int actualImageUri = 0x7f040025; | |||||
| public static int backgroundImage = 0x7f04002f; | |||||
| public static int fadeDuration = 0x7f040067; | |||||
| public static int failureImage = 0x7f040068; | |||||
| public static int failureImageScaleType = 0x7f040069; | |||||
| public static int overlayImage = 0x7f0400a7; | |||||
| public static int placeholderImage = 0x7f0400ad; | |||||
| public static int placeholderImageScaleType = 0x7f0400ae; | |||||
| public static int pressedStateOverlayImage = 0x7f0400b3; | |||||
| public static int progressBarAutoRotateInterval = 0x7f0400b4; | |||||
| public static int progressBarImage = 0x7f0400b5; | |||||
| public static int progressBarImageScaleType = 0x7f0400b6; | |||||
| public static int retryImage = 0x7f0400bf; | |||||
| public static int retryImageScaleType = 0x7f0400c0; | |||||
| public static int roundAsCircle = 0x7f0400c1; | |||||
| public static int roundBottomLeft = 0x7f0400c2; | |||||
| public static int roundBottomRight = 0x7f0400c3; | |||||
| public static int roundTopLeft = 0x7f0400c4; | |||||
| public static int roundTopRight = 0x7f0400c5; | |||||
| public static int roundWithOverlayColor = 0x7f0400c6; | |||||
| public static int roundedCornerRadius = 0x7f0400c7; | |||||
| public static int roundingBorderColor = 0x7f0400c8; | |||||
| public static int roundingBorderPadding = 0x7f0400c9; | |||||
| public static int roundingBorderWidth = 0x7f0400ca; | |||||
| public static int viewAspectRatio = 0x7f0400fd; | |||||
| } | |||||
| public static final class id { | |||||
| public static int center = 0x7f0c0017; | |||||
| public static int centerCrop = 0x7f0c0018; | |||||
| public static int centerInside = 0x7f0c0019; | |||||
| public static int fitCenter = 0x7f0c002a; | |||||
| public static int fitEnd = 0x7f0c002b; | |||||
| public static int fitStart = 0x7f0c002c; | |||||
| public static int fitXY = 0x7f0c002d; | |||||
| public static int focusCrop = 0x7f0c002e; | |||||
| public static int none = 0x7f0c0040; | |||||
| } | |||||
| public static final class styleable { | |||||
| public static int[] GenericDraweeHierarchy = { 0x7f040024, 0x7f04002f, 0x7f040067, 0x7f040068, 0x7f040069, 0x7f0400a7, 0x7f0400ad, 0x7f0400ae, 0x7f0400b3, 0x7f0400b4, 0x7f0400b5, 0x7f0400b6, 0x7f0400bf, 0x7f0400c0, 0x7f0400c1, 0x7f0400c2, 0x7f0400c3, 0x7f0400c4, 0x7f0400c5, 0x7f0400c6, 0x7f0400c7, 0x7f0400c8, 0x7f0400c9, 0x7f0400ca, 0x7f0400fd }; | |||||
| public static int GenericDraweeHierarchy_actualImageScaleType = 0; | |||||
| public static int GenericDraweeHierarchy_backgroundImage = 1; | |||||
| public static int GenericDraweeHierarchy_fadeDuration = 2; | |||||
| public static int GenericDraweeHierarchy_failureImage = 3; | |||||
| public static int GenericDraweeHierarchy_failureImageScaleType = 4; | |||||
| public static int GenericDraweeHierarchy_overlayImage = 5; | |||||
| public static int GenericDraweeHierarchy_placeholderImage = 6; | |||||
| public static int GenericDraweeHierarchy_placeholderImageScaleType = 7; | |||||
| public static int GenericDraweeHierarchy_pressedStateOverlayImage = 8; | |||||
| public static int GenericDraweeHierarchy_progressBarAutoRotateInterval = 9; | |||||
| public static int GenericDraweeHierarchy_progressBarImage = 10; | |||||
| public static int GenericDraweeHierarchy_progressBarImageScaleType = 11; | |||||
| public static int GenericDraweeHierarchy_retryImage = 12; | |||||
| public static int GenericDraweeHierarchy_retryImageScaleType = 13; | |||||
| public static int GenericDraweeHierarchy_roundAsCircle = 14; | |||||
| public static int GenericDraweeHierarchy_roundBottomLeft = 15; | |||||
| public static int GenericDraweeHierarchy_roundBottomRight = 16; | |||||
| public static int GenericDraweeHierarchy_roundTopLeft = 17; | |||||
| public static int GenericDraweeHierarchy_roundTopRight = 18; | |||||
| public static int GenericDraweeHierarchy_roundWithOverlayColor = 19; | |||||
| public static int GenericDraweeHierarchy_roundedCornerRadius = 20; | |||||
| public static int GenericDraweeHierarchy_roundingBorderColor = 21; | |||||
| public static int GenericDraweeHierarchy_roundingBorderPadding = 22; | |||||
| public static int GenericDraweeHierarchy_roundingBorderWidth = 23; | |||||
| public static int GenericDraweeHierarchy_viewAspectRatio = 24; | |||||
| public static int[] SimpleDraweeView = { 0x7f040023, 0x7f040025 }; | |||||
| public static int SimpleDraweeView_actualImageResource = 0; | |||||
| public static int SimpleDraweeView_actualImageUri = 1; | |||||
| } | |||||
| } | |||||
| @ -1,10 +0,0 @@ | |||||
| /* AUTO-GENERATED FILE. DO NOT MODIFY. | |||||
| * | |||||
| * This class was automatically generated by the | |||||
| * gradle plugin from the resource data it found. It | |||||
| * should not be modified by hand. | |||||
| */ | |||||
| package com.facebook.fbcore; | |||||
| public final class R { | |||||
| } | |||||
| @ -1,34 +0,0 @@ | |||||
| /* AUTO-GENERATED FILE. DO NOT MODIFY. | |||||
| * | |||||
| * This class was automatically generated by the | |||||
| * gradle plugin from the resource data it found. It | |||||
| * should not be modified by hand. | |||||
| */ | |||||
| package com.facebook.fbui.textlayoutbuilder; | |||||
| public final class R { | |||||
| public static final class styleable { | |||||
| public static int[] TextAppearance = { 0x01010161, 0x01010162, 0x01010163, 0x01010164, 0x01010098, 0x01010095, 0x01010097, 0x01010096, 0x7f0400e5 }; | |||||
| public static int TextAppearance_android_shadowColor = 0; | |||||
| public static int TextAppearance_android_shadowDx = 1; | |||||
| public static int TextAppearance_android_shadowDy = 2; | |||||
| public static int TextAppearance_android_shadowRadius = 3; | |||||
| public static int TextAppearance_android_textColor = 4; | |||||
| public static int TextAppearance_android_textSize = 5; | |||||
| public static int TextAppearance_android_textStyle = 6; | |||||
| public static int TextAppearance_android_typeface = 7; | |||||
| public static int TextAppearance_textAllCaps = 8; | |||||
| public static int[] TextStyle = { 0x010100ab, 0x01010153, 0x01010161, 0x01010162, 0x01010163, 0x01010164, 0x0101015d, 0x01010034, 0x01010098, 0x01010095, 0x01010097 }; | |||||
| public static int TextStyle_android_ellipsize = 0; | |||||
| public static int TextStyle_android_maxLines = 1; | |||||
| public static int TextStyle_android_shadowColor = 2; | |||||
| public static int TextStyle_android_shadowDx = 3; | |||||
| public static int TextStyle_android_shadowDy = 4; | |||||
| public static int TextStyle_android_shadowRadius = 5; | |||||
| public static int TextStyle_android_singleLine = 6; | |||||
| public static int TextStyle_android_textAppearance = 7; | |||||
| public static int TextStyle_android_textColor = 8; | |||||
| public static int TextStyle_android_textSize = 9; | |||||
| public static int TextStyle_android_textStyle = 10; | |||||
| } | |||||
| } | |||||
| @ -1,10 +0,0 @@ | |||||
| /* AUTO-GENERATED FILE. DO NOT MODIFY. | |||||
| * | |||||
| * This class was automatically generated by the | |||||
| * gradle plugin from the resource data it found. It | |||||
| * should not be modified by hand. | |||||
| */ | |||||
| package com.facebook.imagepipeline; | |||||
| public final class R { | |||||
| } | |||||
| @ -1,10 +0,0 @@ | |||||
| /* AUTO-GENERATED FILE. DO NOT MODIFY. | |||||
| * | |||||
| * This class was automatically generated by the | |||||
| * gradle plugin from the resource data it found. It | |||||
| * should not be modified by hand. | |||||
| */ | |||||
| package com.facebook.imagepipeline.backends.okhttp3; | |||||
| public final class R { | |||||
| } | |||||
| @ -1,10 +0,0 @@ | |||||
| /* AUTO-GENERATED FILE. DO NOT MODIFY. | |||||
| * | |||||
| * This class was automatically generated by the | |||||
| * gradle plugin from the resource data it found. It | |||||
| * should not be modified by hand. | |||||
| */ | |||||
| package com.facebook.imagepipelinebase; | |||||
| public final class R { | |||||
| } | |||||
| @ -1,10 +0,0 @@ | |||||
| /* AUTO-GENERATED FILE. DO NOT MODIFY. | |||||
| * | |||||
| * This class was automatically generated by the | |||||
| * gradle plugin from the resource data it found. It | |||||
| * should not be modified by hand. | |||||
| */ | |||||
| package com.facebook.soloader; | |||||
| public final class R { | |||||
| } | |||||
| @ -1,10 +0,0 @@ | |||||
| /* AUTO-GENERATED FILE. DO NOT MODIFY. | |||||
| * | |||||
| * This class was automatically generated by the | |||||
| * gradle plugin from the resource data it found. It | |||||
| * should not be modified by hand. | |||||
| */ | |||||
| package org.webkit.android_jsc; | |||||
| public final class R { | |||||
| } | |||||